:root {
  color-scheme: light;
  --ink: #071122;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #d7e2ee;
  --paper: #f7fbff;
  --white: #ffffff;
  --navy: #091426;
  --navy-2: #10213a;
  --blue: #3b82f6;
  --blue-2: #60a5fa;
  --teal: #0f766e;
  --mint: #dff7ef;
  --rose: #f43f5e;
  --amber: #b45309;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #071122 0, #0d1a31 620px, #f7fbff 621px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  min-height: 70px;
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  background: rgba(9, 20, 38, 0.78);
  color: #eff6ff;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.brand,
.nav-links,
.hero-actions,
.price-note,
.browser-top,
.signal-strip,
.support-item,
.privacy-band,
.footer,
.hero-copy .promise {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1rem;
  font-weight: 900;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-links {
  gap: 20px;
  color: #cbd5e1;
  font-size: 0.93rem;
  font-weight: 760;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--navy);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 126px 24px 80px;
  overflow: hidden;
  color: #f8fafc;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 34, 0.99) 0%, rgba(7, 17, 34, 0.96) 39%, rgba(7, 17, 34, 0.52) 65%, rgba(7, 17, 34, 0.74) 100%),
    radial-gradient(circle at 78% 18%, rgba(96, 165, 250, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(9, 20, 38, 0) 0%, rgba(9, 20, 38, 0.76) 82%, #f7fbff 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(620px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  padding-top: 42px;
}

.hero-copy .promise {
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  margin: 0 0 22px;
  color: #bae6fd;
  font-size: 0.94rem;
  font-weight: 850;
}

.hero-copy .promise::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: 5.2rem;
  line-height: 0.94;
  font-weight: 950;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 28px;
  color: #dbeafe;
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #60a5fa, #2dd4bf);
  color: #051225;
  box-shadow: 0 16px 32px rgba(45, 212, 191, 0.22);
}

.button.secondary {
  border-color: rgba(148, 163, 184, 0.38);
  background: rgba(15, 23, 42, 0.35);
  color: #e2e8f0;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.price-note {
  flex-wrap: wrap;
  gap: 8px 10px;
  color: #cbd5e1;
}

.price-note strong {
  color: #ffffff;
}

.hero-visual {
  position: absolute;
  inset: 142px 0 auto auto;
  z-index: 2;
  width: min(900px, 51vw);
  transform: translateX(14%);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.22);
  border-radius: 26px;
  background: #f8fbff;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
}

.browser-top {
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid #d8e4f1;
  background: #edf6ff;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
}

.browser-top span:first-child {
  background: #fb7185;
}

.browser-top span:nth-child(2) {
  background: #fbbf24;
}

.browser-top span:nth-child(3) {
  background: #34d399;
}

.browser-top strong {
  margin-left: 10px;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 760;
}

.browser-demo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid #cfe0f3;
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 950;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.browser-demo-toggle:hover,
.browser-demo-toggle:focus-visible {
  border-color: rgba(96, 165, 250, 0.74);
  color: #0f172a;
  transform: translateY(-1px);
}

.browser-demo-toggle span {
  position: relative;
  width: 26px;
  height: 15px;
  border-radius: 999px;
  background: #94a3b8;
  transition: background 160ms ease;
}

.browser-demo-toggle span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 160ms ease;
}

.browser-demo-toggle.is-on span {
  background: #60a5fa;
}

.browser-demo-toggle.is-on span::after {
  transform: translateX(11px);
}

.reading-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-height: 560px;
  background:
    linear-gradient(90deg, #f8fbff 0%, #f8fbff 58%, #1a2748 58%, #1a2748 100%);
}

.reading-copy {
  position: relative;
  padding: 72px 58px;
  overflow: hidden;
  color: #111827;
}

.reading-copy h2 {
  max-width: 520px;
  margin-bottom: 38px;
  font-size: 3.2rem;
  line-height: 1.04;
  font-weight: 950;
}

.reading-copy p {
  position: relative;
  z-index: 2;
  max-width: 590px;
  color: #1f2937;
  font-size: 1.78rem;
  font-weight: 780;
  line-height: 1.85;
  word-spacing: 0.12em;
}

.reading-copy p span {
  color: var(--teal);
  font-weight: 950;
}

.focus-band {
  position: absolute;
  left: 0;
  right: 0;
  top: 268px;
  height: 104px;
  background: rgba(96, 165, 250, 0.18);
  border-top: 1px solid rgba(37, 99, 235, 0.18);
  border-bottom: 1px solid rgba(37, 99, 235, 0.18);
}

.pacer-dot {
  position: absolute;
  top: 247px;
  left: 42%;
  width: 24px;
  height: 24px;
  border: 5px solid rgba(244, 63, 94, 0.28);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 16px 28px rgba(244, 63, 94, 0.25);
}

.panel-shot {
  align-self: stretch;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-strip {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 32px), var(--max));
  margin: -38px auto 72px;
  padding: 18px;
  border: 1px solid #dbe7f5;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.signal-strip div {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border-right: 1px solid #e2e8f0;
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
  font-weight: 950;
}

.signal-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-label {
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 16px;
  font-size: 3.05rem;
  line-height: 1.04;
  font-weight: 950;
}

.section-heading p:not(.section-label) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.feature-river {
  display: grid;
  gap: 56px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 46px;
  padding: 42px;
  border: 1px solid #dbe7f5;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.feature-row.reverse .feature-text {
  order: 2;
}

.feature-row.reverse .feature-media {
  order: 1;
}

.feature-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(20, 184, 166, 0.24);
  border-radius: 50%;
  background: linear-gradient(135deg, #ecfeff, #e8fff7);
  color: var(--teal);
  font-size: 1.02rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.08);
}

.feature-text h3 {
  margin-bottom: 14px;
  font-size: 2.05rem;
  line-height: 1.12;
}

.feature-text p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.feature-text ul,
.price-panel ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-text li,
.price-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.feature-text li::before,
.price-panel li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
}

.feature-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d4e2f0;
  border-radius: 18px;
  background: #0e1b31;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.17);
}

.feature-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
}

.feature-media.wide img {
  height: 390px;
}

.feature-media.cloud-shot {
  background: #eef6ff;
}

.feature-media.cloud-shot img {
  height: 430px;
  object-fit: cover;
  object-position: center top;
}

.support {
  width: 100%;
  max-width: none;
  margin-top: 28px;
  padding: 88px 0;
  background: #e9f7f4;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.section-heading.compact {
  margin-bottom: 0;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-item {
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.support-item strong {
  min-width: 165px;
  font-weight: 950;
}

.support-item span {
  color: #36565f;
}

.product-proof .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 22px;
}

.proof-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dbe7f5;
  border-radius: 20px;
  background: #0d1728;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.proof-large img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: left top;
}

.proof-stack {
  display: grid;
  gap: 22px;
}

.proof-stack img {
  width: 100%;
  height: 309px;
  object-fit: cover;
  object-position: top;
}

.privacy-band {
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 36px), var(--max));
  margin: 22px auto 0;
  padding: 38px 42px;
  border-radius: 22px;
  background: var(--navy);
  color: #f8fafc;
}

.privacy-band h2 {
  max-width: 670px;
  margin-bottom: 8px;
  font-size: 2.2rem;
  line-height: 1.08;
}

.privacy-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: #cbd5e1;
}

.pricing {
  padding-top: 100px;
}

.pricing .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.price-panel {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 30px;
  border: 1px solid #dbe7f5;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.price-panel h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.price-panel .price {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 950;
}

.price-panel .compare-price {
  margin: 0 0 4px;
  color: #64748b;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: line-through;
}

.price-panel p:not(.price) {
  color: var(--ink-soft);
}

.price-panel .button {
  margin-top: auto;
}

.price-panel .button.secondary,
.pricing-team-callout .button.secondary {
  border-color: rgba(96, 165, 250, 0.36);
  background: #eff6ff;
  color: var(--navy);
}

.pricing-team-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 960px);
  margin: 24px auto 0;
  padding: 24px 26px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(96, 165, 250, 0.08), rgba(45, 212, 191, 0.06)),
    var(--white);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.pricing-team-callout span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-team-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.15;
}

.pricing-team-callout p {
  margin: 0;
  color: var(--ink-soft);
}

.price-panel.lifetime {
  position: relative;
  border-color: rgba(96, 165, 250, 0.6);
  background:
    linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
  box-shadow: 0 30px 76px rgba(37, 99, 235, 0.18);
}

.super-line {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.final-cta {
  width: min(calc(100% - 36px), 980px);
  margin: 0 auto 72px;
  padding: 70px 44px;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(9, 20, 38, 0.96), rgba(16, 33, 58, 0.96)),
    var(--navy);
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 16px;
  font-size: 3.15rem;
  line-height: 1.04;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: #dbeafe;
  font-size: 1.12rem;
}

.footer {
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 28px 0 46px;
  border-top: 1px solid #dbe7f5;
  color: var(--muted);
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer strong {
  color: var(--ink);
}

.footer p {
  max-width: 560px;
  margin: 0;
  font-size: 0.9rem;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  body {
    background:
      linear-gradient(180deg, #071122 0, #0d1a31 780px, #f7fbff 781px),
      var(--paper);
  }

  .site-header {
    width: min(calc(100% - 20px), var(--max));
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 17, 34, 0.96) 0%, rgba(7, 17, 34, 0.78) 62%, #f7fbff 100%);
  }

  .hero-copy {
    margin: 0 auto 32px;
    padding-top: 0;
  }

  h1 {
    font-size: 3.7rem;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: min(100%, 760px);
    margin: 0 auto;
    transform: none;
  }

  .reading-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    background: #f8fbff;
  }

  .panel-shot {
    display: none;
  }

  .signal-strip,
  .support-layout,
  .feature-row,
  .feature-row.reverse,
  .proof-grid,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    display: grid;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .feature-row.reverse .feature-text,
  .feature-row.reverse .feature-media {
    order: initial;
  }

  .support-item,
  .privacy-band,
  .pricing-team-callout,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 62px;
    margin-top: 8px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 14px;
  }

  .hero {
    padding: 94px 16px 54px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .browser-frame {
    border-radius: 18px;
  }

  .reading-copy {
    padding: 40px 24px;
  }

  .reading-copy h2 {
    font-size: 2.2rem;
  }

  .reading-copy p {
    font-size: 1.25rem;
  }

  .focus-band {
    top: 238px;
    height: 84px;
  }

  .pacer-dot {
    top: 222px;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
    padding: 58px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 2.25rem;
  }

  .feature-row,
  .privacy-band,
  .final-cta {
    padding: 26px;
    border-radius: 18px;
  }

  .feature-media img,
  .feature-media.wide img,
  .feature-media.cloud-shot img,
  .proof-large img,
  .proof-stack img {
    height: 260px;
  }

  .support {
    padding: 62px 0;
  }

  .support-item {
    gap: 8px;
  }

  .support-item strong {
    min-width: 0;
  }

  .price-panel {
    min-height: 0;
  }

  .footer {
    width: min(calc(100% - 28px), var(--max));
  }
}

/* Polished interactive main-page demos */
.site-header {
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 14px max(24px, calc((100vw - 1500px) / 2 + 24px));
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(7, 17, 34, 0.82);
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.76fr) minmax(660px, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: min(calc(100% - 36px), 1500px);
  min-height: 780px;
  margin: 0 auto;
  padding: 110px 0 96px;
}

.hero::before {
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.hero-copy {
  width: 100%;
  max-width: 610px;
  margin-left: 0;
  padding-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 5.4vw, 5.05rem);
}

.button {
  position: relative;
  overflow: hidden;
}

.button.primary {
  box-shadow:
    0 18px 38px rgba(45, 212, 191, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -75%;
  width: 58%;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  animation: buttonShine 3.8s ease-in-out infinite;
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow:
    0 24px 54px rgba(45, 212, 191, 0.38),
    0 0 34px rgba(96, 165, 250, 0.24);
}

.button.primary > *,
.button.primary {
  isolation: isolate;
}

.hero-copy .promise {
  max-width: 560px;
  padding: 0;
}

.hero-copy .promise::before {
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
  inset: auto;
  justify-self: end;
  width: min(100%, 820px);
  transform: none;
}

.interactive-browser {
  contain: layout paint;
}

.demo-stage {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
  min-height: 500px;
  background:
    linear-gradient(90deg, #f8fbff 0%, #f8fbff calc(100% - 260px), #0b1428 calc(100% - 260px), #0b1428 100%);
}

.demo-reader {
  --focus-y: 50%;
  --focus-x: 50%;
  min-width: 0;
  padding: clamp(32px, 3vw, 46px);
}

.demo-reader h2 {
  max-width: 480px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 2.9vw, 3.05rem);
}

.demo-reader .demo-line {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-bottom: 14px;
  color: #1f2937;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-weight: 780;
  line-height: 1.66;
  word-spacing: 0.06em;
}

.demo-reader .demo-line strong {
  color: var(--teal);
  font-weight: 950;
}

.demo-focus-band {
  top: calc(var(--focus-y, 50%) - 44px);
  height: 88px;
  transition: top 120ms ease-out;
}

.demo-pacer-dot {
  top: calc(var(--focus-y, 50%) - 16px);
  left: clamp(28px, var(--focus-x, 50%), calc(100% - 42px));
  width: 22px;
  height: 22px;
  animation: pacerHop 920ms cubic-bezier(.2, .8, .25, 1) infinite;
  transition:
    top 120ms ease-out,
    left 120ms ease-out;
}

.interactive-browser.is-pacer-off .demo-pacer-dot {
  opacity: 0;
  transform: scale(0.72);
  animation-play-state: paused;
  pointer-events: none;
}

.panel-preview {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 22px 18px;
  background: linear-gradient(180deg, #101d36, #091225);
  color: #eaf2ff;
}

.panel-preview-header {
  display: grid;
  gap: 2px;
  padding-right: 76px;
}

.panel-preview-header span {
  color: #60a5fa;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.panel-preview-header strong {
  font-size: 1.26rem;
  line-height: 1.05;
}

.panel-toggle {
  position: absolute;
  top: 22px;
  right: 18px;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: #60a5fa;
}

.panel-toggle span {
  position: absolute;
  top: 4px;
  right: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}

.panel-card {
  padding: 16px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 17px;
  background: rgba(15, 23, 42, 0.7);
}

.panel-card-blue {
  background: rgba(30, 54, 93, 0.7);
}

.panel-card-green {
  background: rgba(18, 62, 54, 0.62);
}

.panel-card-title,
.tag-mini-row,
.preset-mini-grid {
  display: flex;
}

.panel-card-title {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.84rem;
}

.panel-card-title span {
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.preset-mini-grid {
  flex-wrap: wrap;
  gap: 8px;
}

.preset-mini-grid span,
.tag-mini-row span {
  flex: 1 1 calc(50% - 8px);
  min-width: 82px;
  padding: 9px 8px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 12px;
  color: #eaf2ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.slider-mini {
  height: 18px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.25);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.26);
}

.slider-mini span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #60a5fa, #2dd4bf);
}

.tag-mini-row {
  gap: 8px;
}

.outcome-strip {
  overflow: hidden;
}

.outcome-strip div {
  position: relative;
  border-radius: 14px;
  cursor: default;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.outcome-strip div:hover,
.outcome-strip div:focus-within,
.outcome-strip div.is-active {
  background: linear-gradient(135deg, #dff7ff, #e8fff7);
  color: #062234;
  transform: translateY(-2px);
}

.live-demo {
  position: relative;
  min-height: 390px;
  padding: 0;
  background: #f8fbff;
}

.demo-article {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 52px 48px;
  color: #182235;
  background:
    radial-gradient(circle at 84% 22%, rgba(45, 212, 191, 0.11), transparent 24%),
    #f8fbff;
}

.demo-article p {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  font-weight: 820;
  line-height: 1.6;
}

.demo-article p span {
  color: var(--teal);
}

.demo-track-lines {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  padding-top: 2px;
}

.demo-soft-band {
  position: absolute;
  z-index: 1;
  top: 41px;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(96, 165, 250, 0.15);
  border-top: 1px solid rgba(37, 99, 235, 0.12);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  animation: softBandRead 5.6s cubic-bezier(.42, 0, .22, 1) infinite;
}

.demo-bounce-dot {
  position: absolute;
  z-index: 3;
  top: 68px;
  left: 18%;
  width: 20px;
  height: 20px;
  border: 4px solid rgba(244, 63, 94, 0.24);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 12px 32px rgba(244, 63, 94, 0.22);
  animation: demoDotRead 5.6s cubic-bezier(.42, 0, .22, 1) infinite;
}

.wires-demo {
  --wm-band-top: 138px;
  min-height: 380px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(45, 212, 191, 0.12), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(96, 165, 250, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(96, 165, 250, 0.12) 0 32%, rgba(255, 255, 255, 0.96) 32% 60%, rgba(15, 118, 110, 0.1) 60% 100%),
    #eef6ff;
  cursor: crosshair;
}

.wm-wire-svg {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.wm-wire {
  fill: none;
  stroke: rgba(96, 165, 250, 0.72);
  stroke-width: 3.5;
  stroke-dasharray: 12 12;
  stroke-linecap: round;
  opacity: 0;
  filter: drop-shadow(0 8px 12px rgba(37, 99, 235, 0.18));
  transition:
    opacity 180ms ease,
    x1 180ms ease,
    x2 180ms ease,
    y1 180ms ease,
    y2 180ms ease;
  animation: wirePulse 1.9s ease-in-out infinite;
}

.wm-wire.is-visible {
  opacity: 0.86;
}

.wire-b {
  stroke: rgba(20, 184, 166, 0.7);
  animation-delay: 0.5s;
}

.wire-c {
  stroke: rgba(244, 63, 94, 0.52);
  animation-delay: 1s;
}

.wm-article {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  padding: 50px 48px 38px;
  color: #172033;
}

.wm-line {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0;
  color: #1f2937;
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  font-weight: 760;
  line-height: 1.72;
  transition:
    color 170ms ease,
    transform 170ms ease;
}

.wm-line.is-active {
  color: #071122;
  transform: translateX(4px);
}

.wm-word {
  display: inline-block;
  padding: 0.05em 0.28em 0.08em;
  border: 2px solid transparent;
  border-radius: 9px;
  background: transparent;
  font-weight: 950;
  transition:
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.wm-word.is-active,
.wm-word.is-linked {
  border-color: rgba(180, 83, 9, 0.72);
  background: rgba(255, 247, 237, 0.82);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.wm-word.is-active {
  color: #0f766e;
  transform: translateY(-1px);
}

.wm-word[data-topic="context"].is-active,
.wm-word[data-topic="context"].is-linked {
  border-color: rgba(37, 99, 235, 0.64);
  background: rgba(219, 234, 254, 0.8);
}

.wm-word[data-topic="memory"].is-active,
.wm-word[data-topic="memory"].is-linked {
  border-color: rgba(20, 184, 166, 0.66);
  background: rgba(204, 251, 241, 0.72);
}

.wm-word[data-topic="ideas"].is-active,
.wm-word[data-topic="ideas"].is-linked {
  border-color: rgba(124, 58, 237, 0.64);
  background: rgba(237, 233, 254, 0.78);
}

.wm-focus-band {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: var(--wm-band-top);
  height: 78px;
  background: rgba(96, 165, 250, 0.14);
  border-top: 1px solid rgba(37, 99, 235, 0.12);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  transition: top 190ms ease;
}

.wm-hint {
  max-width: 520px;
  margin: 2px 0 0;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 800;
}

.wordflow-demo {
  display: grid;
  place-items: center;
  min-height: 410px;
  background:
    radial-gradient(circle at 50% 38%, rgba(96, 165, 250, 0.16), transparent 34%),
    #eef6ff;
}

.wordflow-shell {
  width: min(430px, calc(100% - 36px));
  overflow: hidden;
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 62px rgba(15, 23, 42, 0.18);
}

.wordflow-top,
.wordflow-theme,
.wordflow-cloud {
  padding: 16px 20px;
}

.wordflow-top {
  display: flex;
  justify-content: space-between;
  background: #e8f6ff;
  color: #0f172a;
}

.wordflow-top span,
.wordflow-theme {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.wordflow-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 132px;
  margin: 0 20px 12px;
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-radius: 18px;
  background: radial-gradient(circle, #fff, #f8fbff);
}

.wordflow-box strong {
  color: #111827;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  opacity: 1;
  transition: opacity 130ms ease, transform 130ms ease;
}

.wordflow-box.is-changing strong {
  opacity: 0.38;
  transform: translateY(2px);
}

.wordflow-box i {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 32px;
  border-radius: 99px;
  background: #be123c;
  opacity: 0.78;
}

.wordflow-box i:first-child {
  top: 0;
}

.wordflow-box i:last-child {
  bottom: 0;
}

.wordflow-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #dbeafe;
}

.wordflow-cloud span {
  color: var(--teal);
  font-weight: 950;
}

.refined-support {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
}

.support-copy h2 {
  max-width: 650px;
}

.support-preview {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.06);
}

.support-preview strong {
  font-size: 1.35rem;
}

.support-preview span {
  color: #36565f;
}

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

.support-item {
  appearance: none;
  border: 1px solid rgba(15, 118, 110, 0.16);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.support-item span {
  font-size: 0.94rem;
}

.support-item:hover,
.support-item:focus-visible,
.support-item.is-active {
  border-color: rgba(96, 165, 250, 0.58);
  background: linear-gradient(135deg, #ffffff, #e8f7ff);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.13);
  transform: translateY(-2px);
}

.proof-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-cards article {
  min-height: 310px;
  padding: 30px;
  border: 1px solid #dbe7f5;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 18%, rgba(45, 212, 191, 0.14), transparent 32%),
    #ffffff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.proof-cards span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0f766e;
  font-weight: 950;
}

.proof-cards strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.08;
}

.proof-cards p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.pricing-layout {
  align-items: stretch;
}

.price-panel {
  position: relative;
}

.price-panel.lifetime {
  overflow: hidden;
  box-shadow:
    0 32px 90px rgba(37, 99, 235, 0.2),
    0 0 70px rgba(45, 212, 191, 0.16);
}

.price-panel.lifetime::before {
  content: "";
  position: absolute;
  inset: -35% -25% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.32), transparent 68%);
}

.price-panel.lifetime .super-line {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  margin: 0;
}

.price-panel.lifetime h3 {
  padding-right: 168px;
}

.price-panel.lifetime .compare-price {
  position: absolute;
  top: 76px;
  right: 30px;
  z-index: 2;
  margin: 0;
}

.price-panel .price {
  letter-spacing: -0.02em;
}

.final-cta .button.primary {
  min-width: min(100%, 330px);
}

@keyframes buttonShine {
  0%, 42% {
    transform: translateX(0) rotate(16deg);
  }
  58%, 100% {
    transform: translateX(360%) rotate(16deg);
  }
}

@keyframes pacerHop {
  0%, 100% { transform: translateY(0) scale(1); }
  42% { transform: translateY(-12px) scale(1.04); }
  70% { transform: translateY(2px) scale(0.98); }
}

@keyframes softBandRead {
  0%, 21% { top: 41px; }
  25%, 46% { top: 96px; }
  50%, 71% { top: 151px; }
  75%, 96% { top: 206px; }
  100% { top: 41px; }
}

@keyframes demoDotRead {
  0% { top: 69px; left: 18%; transform: translateY(0); }
  10% { top: 57px; left: 48%; transform: translateY(-5px); }
  21% { top: 69px; left: 80%; transform: translateY(0); }
  25% { top: 124px; left: 18%; transform: translateY(0); }
  36% { top: 112px; left: 52%; transform: translateY(-5px); }
  46% { top: 124px; left: 82%; transform: translateY(0); }
  50% { top: 179px; left: 18%; transform: translateY(0); }
  61% { top: 167px; left: 54%; transform: translateY(-5px); }
  71% { top: 179px; left: 82%; transform: translateY(0); }
  75% { top: 234px; left: 18%; transform: translateY(0); }
  86% { top: 222px; left: 54%; transform: translateY(-5px); }
  96% { top: 234px; left: 76%; transform: translateY(0); }
  100% { top: 69px; left: 18%; transform: translateY(0); }
}

@keyframes wirePulse {
  0%, 100% {
    stroke-dashoffset: 0;
    opacity: 0.38;
  }
  50% {
    stroke-dashoffset: -42;
    opacity: 0.95;
  }
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: 1fr;
    width: min(calc(100% - 36px), 860px);
    padding-top: 110px;
  }

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

  .hero-visual {
    justify-self: center;
  }
}

@media (max-width: 1120px) {
  .hero-visual {
    width: 100%;
  }

  .demo-stage {
    grid-template-columns: minmax(0, 1fr) 250px;
    background:
      linear-gradient(90deg, #f8fbff 0%, #f8fbff calc(100% - 250px), #0b1428 calc(100% - 250px), #0b1428 100%);
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 0;
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-cta {
    flex: 0 0 auto;
  }

  .hero {
    display: block;
    width: auto;
    min-height: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .demo-stage {
    grid-template-columns: 1fr;
    background: #f8fbff;
  }

  .panel-preview {
    display: none;
  }

  .proof-cards,
  .support-list {
    grid-template-columns: 1fr;
  }

  .price-panel.lifetime .super-line {
    position: static;
    margin-bottom: 16px;
  }

  .price-panel.lifetime .compare-price {
    position: static;
    margin: 0 0 4px;
  }

  .price-panel.lifetime h3 {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    border-radius: 0;
    min-width: 0;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .nav-cta {
    min-height: 38px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.86rem;
  }

  .hero-copy,
  .hero-visual,
  .interactive-browser,
  .reading-stage,
  .reading-copy {
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 13.5vw, 3rem);
    line-height: 0.98;
  }

  .hero-lede {
    font-size: 1.02rem;
    line-height: 1.56;
  }

  .hero-copy .promise {
    font-size: 0.86rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 148px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .price-note {
    display: grid;
    gap: 4px;
  }

  .browser-top strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .browser-demo-toggle {
    gap: 5px;
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .browser-demo-toggle span {
    width: 24px;
  }

  .reading-copy h2 {
    font-size: clamp(1.82rem, 9.2vw, 2.2rem);
  }

  .reading-copy p {
    font-size: 1.05rem;
    line-height: 1.58;
    word-spacing: 0.02em;
  }

  .demo-reader .demo-line {
    font-size: 1rem;
  }

  .live-demo,
  .demo-article,
  .wordflow-demo {
    min-height: 300px;
  }

  .demo-article {
    padding: 34px 24px;
  }

  .demo-article p {
    font-size: 1.12rem;
  }

  .demo-track-lines {
    gap: 12px;
  }

  .wires-demo {
    min-height: 360px;
  }

  .wm-article {
    gap: 16px;
    padding: 36px 22px 28px;
  }

  .wm-line {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .wm-hint {
    font-size: 0.76rem;
  }

  .proof-cards article {
    min-height: 0;
  }
}

/* Designer correction pass: cohesive, calmer, and responsive demos */
body {
  background: var(--paper);
}

.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: max(24px, calc((100vw - 1500px) / 2 + 24px));
  padding-left: max(24px, calc((100vw - 1500px) / 2 + 24px));
  background:
    radial-gradient(circle at 78% 20%, rgba(96, 165, 250, 0.16), transparent 34%),
    linear-gradient(180deg, #071122 0%, #0a1629 72%, #eef6ff 100%);
}

.hero::before {
  left: 0;
  width: 100%;
  transform: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 34, 0.98) 0%, rgba(7, 17, 34, 0.9) 40%, rgba(7, 17, 34, 0.5) 68%, rgba(7, 17, 34, 0.72) 100%);
}

.interactive-browser {
  max-width: 880px;
  margin-left: auto;
}

.demo-reader {
  --focus-h: 118px;
}

.demo-focus-band {
  top: calc(var(--focus-y, 50%) - (var(--focus-h, 118px) / 2));
  height: var(--focus-h, 118px);
  background:
    linear-gradient(90deg, rgba(219, 234, 254, 0.86), rgba(191, 219, 254, 0.72));
  transition:
    top 170ms cubic-bezier(.2, .8, .2, 1),
    height 170ms cubic-bezier(.2, .8, .2, 1);
}

.demo-pacer-dot {
  top: calc(var(--focus-y, 50%) - 14px);
  transition:
    top 170ms cubic-bezier(.2, .8, .2, 1),
    left 170ms cubic-bezier(.2, .8, .2, 1),
    opacity 150ms ease;
}

.feature-text li::before,
.price-panel li::before {
  top: 0.56em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.feature-media.eye-demo {
  background: #f7fbff;
}

.demo-article {
  min-height: 430px;
  padding: 42px 44px;
}

.demo-track-lines {
  gap: 22px;
}

.demo-read-step {
  display: grid;
  align-content: center;
  min-height: 104px;
  gap: 4px;
}

.demo-article p {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.52vw, 1.38rem);
  line-height: 1.36;
}

.demo-soft-band {
  height: 116px;
  background:
    linear-gradient(90deg, rgba(219, 234, 254, 0.84), rgba(219, 234, 254, 0.6));
  animation: softBandRead 6.6s cubic-bezier(.42, 0, .18, 1) infinite;
}

.demo-bounce-dot {
  width: 18px;
  height: 18px;
  border-width: 4px;
  animation: demoDotRead 6.6s linear infinite;
}

.wires-demo {
  min-height: 420px;
  background:
    radial-gradient(circle at 20% 16%, rgba(96, 165, 250, 0.16), transparent 24%),
    linear-gradient(180deg, #dbeafe, #dff7ef);
}

.wm-focus-band {
  height: 108px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  transition: top 220ms cubic-bezier(.2, .8, .2, 1);
}

.wm-article {
  gap: 20px;
  padding: 48px 42px 34px;
}

.wm-line {
  max-width: 700px;
  font-size: clamp(0.98rem, 1.26vw, 1.22rem);
  line-height: 1.82;
}

.wm-line.is-active {
  transform: none;
}

.wm-word {
  border-width: 2px;
  border-radius: 10px;
}

.wm-wire {
  stroke-width: 3;
  stroke-dasharray: 14 13;
}

.support {
  background:
    radial-gradient(circle at 78% 20%, rgba(96, 165, 250, 0.13), transparent 28%),
    #e9f7f4;
}

.support-list {
  grid-auto-rows: 1fr;
}

.support-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  min-height: 104px;
  gap: 16px;
  padding: 18px;
}

.support-item strong {
  min-width: 0;
  font-size: 1.02rem;
  line-height: 1.12;
}

.support-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #e8fff7);
  color: #0f766e;
}

.support-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-item.is-active .support-icon,
.support-item:hover .support-icon,
.support-item:focus-visible .support-icon {
  background: linear-gradient(135deg, #60a5fa, #2dd4bf);
  color: #ffffff;
}

.proof-cards article {
  min-height: 250px;
}

.proof-cards span {
  margin-bottom: 24px;
}

.privacy-band {
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 42px;
  padding: 52px max(24px, calc((100vw - 1180px) / 2 + 24px));
  border-radius: 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(45, 212, 191, 0.16), transparent 32%),
    var(--navy);
}

.privacy-band h2 {
  max-width: 760px;
}

.pricing-layout {
  gap: 22px;
}

.price-panel {
  overflow: hidden;
  border-color: #d8e6f5;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.price-panel::after {
  content: "";
  position: absolute;
  inset: auto 28px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
}

.price-panel.lifetime .super-line,
.price-panel.lifetime .compare-price {
  position: static;
}

.price-panel.lifetime .super-line {
  margin-bottom: 18px;
}

.price-panel.lifetime h3 {
  padding-right: 0;
}

.price-panel.lifetime .compare-price {
  display: inline-block;
  width: fit-content;
  margin-bottom: 2px;
}

.price-panel .button {
  min-height: 54px;
}

.footer {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1fr) minmax(280px, 0.95fr);
  align-items: start;
  gap: 32px;
  padding: 44px max(24px, calc((100vw - 1180px) / 2 + 24px)) 58px;
  background: #ffffff;
}

.footer .brand {
  width: fit-content;
  margin-bottom: 12px;
  color: var(--ink);
}

.footer-brand p,
.footer-note {
  margin: 0;
  color: var(--muted);
}

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

.footer-links a {
  padding: 8px 12px;
  border: 1px solid #dbe7f5;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: rgba(96, 165, 250, 0.62);
  color: var(--ink);
}

@keyframes softBandRead {
  0%, 28% { top: 36px; }
  34%, 62% { top: 162px; }
  68%, 96% { top: 288px; }
  100% { top: 36px; }
}

@keyframes demoDotRead {
  0% { top: 84px; left: 16%; }
  28% { top: 84px; left: 78%; }
  34% { top: 210px; left: 16%; }
  62% { top: 210px; left: 78%; }
  68% { top: 336px; left: 16%; }
  96% { top: 336px; left: 76%; }
  100% { top: 84px; left: 16%; }
}

@media (max-width: 1280px) {
  .hero {
    width: 100%;
    max-width: none;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 980px) {
  .privacy-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .refined-support {
    grid-template-columns: 1fr;
  }

  .support-layout {
    gap: 30px;
  }

  .pricing-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 640px) {
  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .signal-strip {
    margin-top: -24px;
  }

  .demo-stage {
    min-height: auto;
  }

  .demo-reader {
    --focus-h: 108px;
  }

  .demo-article {
    min-height: 390px;
    padding: 30px 20px;
  }

  .demo-read-step {
    min-height: 96px;
  }

  .support-list {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .support-item {
    min-height: 82px;
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .support-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .price-panel {
    padding: 24px;
  }

  .privacy-band {
    padding: 38px 20px;
  }

  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* Final composition pass: stable demos, cleaner hierarchy, responsive polish */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: #f5fbff;
}

.site-header {
  box-shadow: 0 1px 0 rgba(148, 163, 184, 0.14), 0 18px 46px rgba(2, 6, 23, 0.16);
}

.hero {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  width: 100%;
  min-height: clamp(760px, 88vh, 940px);
  padding:
    clamp(108px, 12vh, 148px)
    max(24px, calc((100vw - 1500px) / 2 + 24px))
    92px;
  background:
    radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.18), transparent 30%),
    linear-gradient(180deg, #071122 0%, #0a1629 73%, #eef6ff 100%);
}

.hero::before {
  inset: 0;
  width: 100%;
  transform: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 34, 0.98) 0%, rgba(7, 17, 34, 0.92) 45%, rgba(7, 17, 34, 0.58) 67%, rgba(7, 17, 34, 0.9) 100%),
    linear-gradient(180deg, transparent 0%, transparent 68%, rgba(238, 246, 255, 0.96) 100%);
}

.hero-copy {
  width: 100%;
  max-width: 650px;
  margin: 0;
  padding: 0;
}

.hero h1 {
  font-size: clamp(3.4rem, 6.2vw, 5.6rem);
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-visual {
  position: relative;
  inset: auto;
  justify-self: end;
  width: 100%;
  max-width: 880px;
  transform: none;
}

.browser-frame.interactive-browser {
  width: 100%;
  max-width: none;
  border-color: rgba(226, 232, 240, 0.7);
  border-radius: 28px;
  box-shadow:
    0 42px 92px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.browser-top {
  min-height: 46px;
  padding: 0 16px;
}

.browser-top strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-stage {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 292px);
  min-height: 526px;
  background:
    linear-gradient(90deg, #f8fbff 0%, #f8fbff calc(100% - 292px), #0b1428 calc(100% - 292px), #0b1428 100%);
}

.demo-reader {
  --focus-y: 27%;
  --focus-x: 50%;
  --focus-h: 128px;
  min-height: 526px;
  padding: clamp(34px, 4vw, 58px);
}

.demo-reader h2,
.demo-reader .demo-line {
  position: relative;
  z-index: 2;
}

.demo-reader h2 {
  max-width: 540px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 3.8vw, 3.55rem);
}

.demo-reader .demo-line {
  max-width: 610px;
  margin-bottom: 16px;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.72;
  word-spacing: 0.04em;
}

.demo-focus-band {
  top: calc(var(--focus-y, 27%) - (var(--focus-h, 128px) / 2));
  height: var(--focus-h, 128px);
  background:
    linear-gradient(90deg, rgba(219, 234, 254, 0.92), rgba(191, 219, 254, 0.7));
  transition:
    top 190ms cubic-bezier(.2, .8, .2, 1),
    height 190ms cubic-bezier(.2, .8, .2, 1);
}

.demo-pacer-dot {
  top: calc(var(--focus-y, 27%) - 14px);
  left: clamp(30px, var(--focus-x, 50%), calc(100% - 44px));
  transition:
    top 190ms cubic-bezier(.2, .8, .2, 1),
    left 190ms cubic-bezier(.2, .8, .2, 1),
    opacity 150ms ease,
    transform 150ms ease;
}

.panel-preview {
  padding: 24px 18px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -44px;
}

.signal-strip div {
  border-radius: 14px;
}

.feature-row {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 60px);
  padding: clamp(28px, 4vw, 54px);
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.94fr);
}

.feature-media {
  width: 100%;
  margin: 0;
}

.feature-text li,
.price-panel li {
  padding-left: 20px;
}

.feature-text li::before,
.price-panel li::before {
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #071122;
}

.feature-media.eye-demo {
  background: #f8fbff;
}

.demo-article {
  min-height: 462px;
  padding: 42px 44px;
}

.demo-track-lines {
  gap: 18px;
}

.demo-read-step {
  display: grid;
  align-content: center;
  min-height: 124px;
  gap: 4px;
}

.demo-article p {
  max-width: 720px;
  font-size: clamp(1rem, 1.55vw, 1.36rem);
  line-height: 1.32;
}

.demo-soft-band {
  height: 132px;
  background:
    linear-gradient(90deg, rgba(219, 234, 254, 0.92), rgba(219, 234, 254, 0.68));
  animation: softBandRead 7.4s cubic-bezier(.42, 0, .18, 1) infinite;
}

.demo-bounce-dot {
  animation: demoDotRead 7.4s cubic-bezier(.35, 0, .2, 1) infinite;
}

.wires-demo {
  min-height: 468px;
  background:
    radial-gradient(circle at 16% 12%, rgba(96, 165, 250, 0.14), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(45, 212, 191, 0.16), transparent 30%),
    linear-gradient(180deg, #dbeafe, #ddf7f0);
  cursor: crosshair;
}

.wm-focus-band {
  height: 108px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.64) inset;
}

.wm-article {
  gap: 22px;
  padding: 48px 42px 32px;
}

.wm-line {
  font-size: clamp(0.96rem, 1.23vw, 1.2rem);
  line-height: 1.85;
}

.wm-hint {
  max-width: 540px;
  margin-top: 8px;
}

.wm-wire {
  stroke-width: 3;
  stroke-dasharray: 14 12;
}

.support {
  width: 100%;
  max-width: none;
  padding: clamp(70px, 9vw, 112px) 0;
}

.support-layout.refined-support {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  align-items: center;
}

.support-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.support-preview {
  max-width: 560px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.82);
}

.support-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.support-item {
  min-height: 104px;
  padding: 18px;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.support-item strong {
  min-width: 0;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
}

.support-icon {
  flex: 0 0 auto;
}

.proof-cards {
  gap: 18px;
}

.proof-cards article {
  min-height: 0;
  padding: 28px;
}

.proof-cards span {
  margin-bottom: 18px;
}

.privacy-band {
  width: 100%;
  max-width: none;
  margin-top: 34px;
  padding: clamp(44px, 6vw, 72px) max(24px, calc((100vw - 1180px) / 2 + 24px));
  border-radius: 0;
}

.privacy-band h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.privacy-band p {
  max-width: 680px;
  font-size: 1.05rem;
}

.pricing-layout {
  gap: clamp(18px, 2.4vw, 28px);
}

.price-panel {
  position: relative;
  min-height: 470px;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 26px;
}

.price-panel.lifetime {
  background:
    radial-gradient(circle at 84% 12%, rgba(45, 212, 191, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
}

.price-card-head,
.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.price-card-head {
  margin-bottom: 16px;
}

.price-card-head h3 {
  margin: 0;
}

.price-panel.lifetime .super-line {
  flex: 0 1 auto;
  max-width: 260px;
  margin: 0;
  text-align: center;
}

.price-row {
  align-items: baseline;
  margin-bottom: 16px;
}

.price-row .price,
.price-row .compare-price {
  margin: 0;
}

.price-row .compare-price {
  color: #334155;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.price-panel .price {
  font-size: clamp(3.5rem, 6vw, 4.9rem);
}

.price-panel .button.secondary {
  border-color: #cfe0f3;
  background: #eef6ff;
  color: #0f172a;
}

/* Keep the sale price and comparison price inside the card at every width. */
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  min-width: 0;
  gap: 0 18px;
}

.price-row .price {
  min-width: 0;
  max-width: 100%;
}

.price-row .compare-price {
  flex: 0 0 auto;
  margin-left: auto;
}

.price-panel.lifetime .compare-price {
  position: static;
}

@media (max-width: 560px) {
  .price-row .compare-price {
    margin-left: 0;
  }
}

.footer {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(220px, 1.1fr) minmax(150px, 0.5fr) minmax(150px, 0.5fr) minmax(260px, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: 48px max(24px, calc((100vw - 1180px) / 2 + 24px)) 56px;
  border-top: 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(45, 212, 191, 0.12), transparent 30%),
    #071122;
  color: #cbd5e1;
}

.footer .brand {
  color: #ffffff;
}

.footer-brand p,
.footer-note {
  color: #b7c4d5;
}

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

.footer-links strong {
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-note {
  max-width: 420px;
}

@keyframes softBandRead {
  0%, 25% { top: 36px; }
  31%, 58% { top: 178px; }
  64%, 92% { top: 320px; }
  100% { top: 36px; }
}

@keyframes demoDotRead {
  0% { top: 94px; left: 16%; }
  25% { top: 94px; left: 80%; }
  31% { top: 236px; left: 16%; }
  58% { top: 236px; left: 80%; }
  64% { top: 378px; left: 16%; }
  92% { top: 378px; left: 78%; }
  100% { top: 94px; left: 16%; }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  }

  .hero h1 {
    font-size: clamp(3rem, 5.4vw, 4.7rem);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 104px 18px 68px;
  }

  .hero-copy,
  .hero-visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-visual {
    justify-self: center;
  }

  .demo-stage {
    grid-template-columns: 1fr;
    background: #f8fbff;
  }

  .panel-preview {
    display: none;
  }

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

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-text,
  .feature-row.reverse .feature-media {
    order: initial;
  }

  .support-layout.refined-support {
    grid-template-columns: 1fr;
  }

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

  .price-panel {
    min-height: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 88px 14px 58px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 3.7rem);
  }

  .hero-copy .promise {
    font-size: 0.78rem;
  }

  .browser-demo-toggle {
    font-size: 0;
    gap: 0;
  }

  .demo-reader {
    --focus-h: 112px;
    min-height: 494px;
    padding: 34px 22px;
  }

  .demo-reader h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .demo-reader .demo-line {
    font-size: 0.98rem;
    line-height: 1.66;
    word-spacing: 0.02em;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    border-right: 0;
  }

  .demo-article {
    min-height: 424px;
    padding: 30px 22px;
  }

  .demo-read-step {
    min-height: 112px;
  }

  .demo-soft-band {
    height: 118px;
  }

  .wires-demo {
    min-height: 440px;
  }

  .wm-article {
    gap: 16px;
    padding: 34px 22px 26px;
  }

  .wm-line {
    font-size: 0.94rem;
  }

  .support-list {
    grid-template-columns: 1fr;
  }

  .support-item {
    min-height: 78px;
  }

  .price-card-head,
  .price-row {
    display: grid;
    justify-content: start;
  }

  .price-panel.lifetime .super-line {
    text-align: left;
  }

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

/* Memory/pricing polish: cleaner grouping, edge-anchored wires, and stable header paint */
.site-header {
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, #344058 0%, #35425b 48%, #3a4662 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateZ(0);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 0% 50%, rgba(96, 165, 250, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.08), transparent 44%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.wires-demo {
  min-height: 520px;
}

.wm-focus-band {
  height: 128px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.wm-article {
  gap: 14px;
  padding: 42px clamp(24px, 4.4vw, 54px) 30px;
}

.wm-band-row {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 96px;
  gap: 2px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.wm-band-row.is-active {
  transform: translateX(4px);
}

.wm-band-row.is-active .wm-line {
  color: #071122;
}

.wm-line {
  max-width: 760px;
  line-height: 1.42;
}

.wm-hint {
  align-self: start;
  margin-top: 4px;
}

.wm-word {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.wm-wire {
  stroke: rgba(37, 99, 235, 0.68);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
}

.wm-wire[data-topic="ai"],
.wm-wire[data-topic="focus"] {
  stroke: rgba(180, 83, 9, 0.72);
}

.wm-wire[data-topic="context"] {
  stroke: rgba(37, 99, 235, 0.68);
}

.wm-wire[data-topic="memory"] {
  stroke: rgba(20, 184, 166, 0.72);
}

.wm-wire[data-topic="ideas"] {
  stroke: rgba(124, 58, 237, 0.7);
}

.price-panel {
  min-height: 570px;
}

.price-panel ul {
  gap: 12px;
  padding-bottom: clamp(24px, 4vw, 40px);
}

.price-panel .button {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.price-panel.lifetime {
  isolation: isolate;
  border-color: rgba(96, 165, 250, 0.78);
  background:
    radial-gradient(circle at 84% 8%, rgba(45, 212, 191, 0.34), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(96, 165, 250, 0.26), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f4fbff 52%, #eaf7ff 100%);
  box-shadow:
    0 34px 90px rgba(37, 99, 235, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.price-panel.lifetime::before {
  inset: -42% auto auto -70%;
  width: 180%;
  height: 92%;
  border-radius: 0;
  background:
    linear-gradient(112deg, transparent 38%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.18) 53%, transparent 64%);
  transform: translateX(-22%) rotate(4deg);
  animation: lifetimeCardGlimmer 7.4s ease-in-out infinite;
  pointer-events: none;
}

.price-panel.lifetime::after {
  inset: 1px;
  height: auto;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), transparent 46%, rgba(45, 212, 191, 0.1));
  pointer-events: none;
}

.price-panel.lifetime > * {
  position: relative;
  z-index: 1;
}

@keyframes lifetimeCardGlimmer {
  0%, 44% {
    transform: translateX(-34%) rotate(4deg);
    opacity: 0;
  }
  55% {
    opacity: 0.9;
  }
  72%, 100% {
    transform: translateX(78%) rotate(4deg);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .wires-demo {
    min-height: 520px;
  }

  .wm-focus-band {
    height: 116px;
  }

  .wm-article {
    gap: 12px;
    padding: 34px 18px 26px;
  }

  .wm-band-row {
    min-height: 88px;
  }

  .wm-line {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .price-panel {
    min-height: 0;
    padding: 28px 28px 34px;
  }

  .price-panel ul {
    gap: 13px;
    padding-bottom: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
