: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;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-referrals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid rgba(45, 212, 191, 0.48);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.13);
  color: #ecfeff;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-referrals:hover,
.nav-referrals:focus-visible,
.nav-referrals[aria-current="page"] {
  border-color: rgba(94, 234, 212, 0.82);
  background: rgba(45, 212, 191, 0.25);
  color: #ffffff;
  transform: translateY(-1px);
}

.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-emoji {
  display: inline;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 0.9em;
  font-style: normal;
  font-weight: 400;
  line-height: inherit;
  vertical-align: baseline;
}

.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;
}

.price-note span {
  max-width: 34ch;
}

.price-note b {
  color: #d9fff8;
  font-weight: 900;
}

.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);
}

.pricing-compare-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 960px);
  margin: 34px auto 0;
  padding: 28px 6px 0;
  border-top: 1px solid #cbdbea;
}

.pricing-compare-callout > div > span {
  display: block;
  margin-bottom: 5px;
  color: #0f766e;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-compare-callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.22rem;
}

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

.pricing-compare-callout .button {
  flex: 0 0 auto;
}

.pricing-compare-callout .compare-button {
  min-width: 230px;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb, #0f9f94);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.2);
}

.pricing-compare-callout .compare-button span {
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.pricing-compare-callout .compare-button:hover span,
.pricing-compare-callout .compare-button:focus-visible span {
  transform: translateX(3px);
}

.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;
  --focus-top: calc(var(--focus-y, 27%) - (var(--focus-h, 128px) / 2));
  --focus-height: var(--focus-h, 128px);
  --focus-dot-y: var(--focus-y, 27%);
  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: var(--focus-top);
  height: var(--focus-height);
  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-dot-y) - 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 {
  grid-template-rows: auto auto auto auto 1fr auto;
  padding: 24px 18px;
}

.panel-preview-footer {
  display: grid;
  gap: 4px;
  align-self: end;
  padding: 14px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.13);
}

.panel-preview-footer span {
  color: #93c5fd;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.panel-preview-footer strong {
  color: #eff6ff;
  font-size: 0.78rem;
  line-height: 1.35;
}

.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 > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.privacy-band h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-wrap: balance;
}

.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, #071122 0%, #0c1b32 62%, #0d2934 100%);
  border-bottom-color: rgba(96, 165, 250, 0.2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms cubic-bezier(.22, .72, .24, 1), box-shadow 220ms ease;
  will-change: transform;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 50%, rgba(59, 130, 246, 0.16), transparent 30%),
    radial-gradient(circle at 92% 50%, rgba(45, 212, 191, 0.1), transparent 30%);
  pointer-events: none;
}

.site-header.is-header-hidden {
  transform: translate3d(0, -105%, 0);
  box-shadow: none;
  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;
  }
}

/* Interaction and pricing polish: make the demo destination meaningful and keep
   the lifetime offer readable at every card width. */
#features {
  scroll-margin-top: 96px;
}

#reading-tools {
  scroll-margin-top: 96px;
}

.price-panel.lifetime .price-card-head {
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.price-panel.lifetime .super-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
  max-width: none;
  margin: 0;
  padding: 10px 16px;
  overflow: visible;
  font-size: clamp(0.68rem, 1.1vw, 0.84rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  white-space: nowrap;
}

.price-panel.lifetime .super-line span:first-child {
  overflow: visible;
  text-overflow: clip;
}

.price-panel.lifetime .price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 18px;
}

.price-panel.lifetime .price-row .compare-price {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

@media (max-width: 560px) {
  .price-panel.lifetime .price-card-head {
    align-items: flex-start;
  }

  .price-panel.lifetime .super-line {
    padding-inline: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }
}

.button.is-disabled,
.button:disabled {
  border-color: rgba(148, 163, 184, 0.3);
  background: #e2e8f0;
  color: #64748b;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.82;
  pointer-events: none;
}

@media (max-width: 560px) {
  .price-panel .button,
  .plan-card .button {
    max-width: 100%;
    padding-inline: 16px;
    font-size: 0.92rem;
    white-space: nowrap;
  }
}

/* Keep the free-first message intentional rather than letting two unrelated
   fragments collide on a line at wider desktop widths. */
.hero-copy .price-note {
  display: grid;
  align-items: start;
  gap: 4px;
  max-width: 60ch;
}

.hero-copy .price-note span {
  max-width: 60ch;
  line-height: 1.45;
}

/* The reading-band demo is positioned from the rendered paragraph bounds in
   script, so its visual margin stays even when a sentence wraps differently. */
.demo-article[data-reading-focus-demo] {
  --demo-band-top: 0px;
  --demo-band-height: 0px;
  --demo-dot-x: 66%;
  --demo-dot-y: 0px;
}

.demo-article[data-reading-focus-demo] .demo-soft-band {
  top: var(--demo-band-top);
  height: var(--demo-band-height);
  animation: none;
  transition:
    top 420ms cubic-bezier(.2, .8, .2, 1),
    height 420ms cubic-bezier(.2, .8, .2, 1);
}

.demo-article[data-reading-focus-demo] .demo-bounce-dot {
  top: var(--demo-dot-y);
  left: var(--demo-dot-x);
  animation: none;
  transform: translate(-50%, -50%);
  transition:
    top 420ms cubic-bezier(.2, .8, .2, 1),
    left 420ms cubic-bezier(.2, .8, .2, 1);
}

@media (max-width: 640px) {
  .demo-article[data-reading-focus-demo] {
    min-height: 0;
    padding-block: 28px;
  }

  .demo-article[data-reading-focus-demo] .demo-track-lines {
    gap: 20px;
  }

  .demo-article[data-reading-focus-demo] .demo-read-step {
    min-height: 0;
    padding-block: 8px;
  }
}

/* Desktop-only support previews: each tile demonstrates its own reading aid
   while preserving the existing description selector and mobile layout. */
.support-layout.refined-support {
  position: relative;
}

.support-copy,
.support-list {
  position: relative;
  z-index: 2;
}

.support-preview {
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.support-preview::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 2px solid transparent;
  border-radius: 28px;
  pointer-events: none;
  opacity: 0;
  transition: border-color 220ms ease, opacity 220ms ease;
}

.support-effect-wire {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.support-effect-wire path {
  fill: none;
  stroke: #2563eb;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 9 9;
  filter: drop-shadow(0 5px 8px rgba(37, 99, 235, 0.24));
}

.support-item strong .support-word-emphasis {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.support-options {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.support-more {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: baseline;
  gap: 16px;
  margin: 24px 0 0;
  padding: 20px 4px 0;
  border-top: 1px solid rgba(15, 118, 110, 0.2);
}

.support-more span {
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-more p {
  margin: 0;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.55;
}

.adhd-title {
  position: relative;
  display: inline-flex;
  justify-self: start;
  gap: 0.28em;
  width: max-content;
  max-width: 100%;
  overflow: visible;
}

.adhd-pacer {
  position: absolute;
  top: -16px;
  left: 18%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fb3f5d;
  box-shadow: 0 6px 13px rgba(251, 63, 93, 0.3);
  opacity: 0;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .support-item {
    position: relative;
    overflow: hidden;
  }

  .support-item > * {
    position: relative;
    z-index: 1;
    transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
  }

  .support-effect-wire.is-visible {
    opacity: 1;
  }

  .support-effect-wire.is-visible path {
    animation: supportWireFlow 1.15s linear infinite;
  }

  .support-layout.is-working-memory-effect .support-preview {
    border-color: rgba(37, 99, 235, 0.62);
    box-shadow: 0 22px 54px rgba(37, 99, 235, 0.16);
  }

  .support-layout.is-working-memory-effect .support-preview::after {
    border-color: rgba(45, 212, 191, 0.74);
    opacity: 1;
  }

  .support-list[data-active-effect="visual-stress"] .support-item:not(.is-effect-active) > * {
    filter: blur(3px);
    opacity: 0.38;
  }

  .support-item[data-support-effect="low-vision"] strong {
    display: inline-block;
    transform-origin: left center;
  }

  .support-item[data-support-effect="low-vision"].is-effect-active strong {
    transform: scale(1.25);
  }

  .support-item[data-support-effect="adhd"].is-effect-active .adhd-pacer {
    opacity: 1;
    animation: supportAdhdPacerHop 1.25s linear infinite;
  }

  .support-item[data-support-effect="dyslexia"].is-effect-active strong {
    font-weight: 700;
    letter-spacing: 0.055em;
  }

  .support-item[data-support-effect="dyslexia"].is-effect-active .support-word-emphasis {
    color: #0f766e;
    font-weight: 1000;
    letter-spacing: 0.01em;
  }

  .support-item[data-support-effect="fast-reading"] strong {
    min-width: 8ch;
  }
}

@keyframes supportWireFlow {
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes supportAdhdPacerHop {
  0%, 100% {
    left: 18%;
    transform: translate(-50%, 0);
  }
  12.5%, 87.5% {
    transform: translate(-50%, -5px);
  }
  25% {
    left: 50%;
    transform: translate(-50%, -8px);
  }
  37.5%, 62.5% {
    transform: translate(-50%, -5px);
  }
  50% {
    left: 82%;
    transform: translate(-50%, 0);
  }
  75% {
    left: 50%;
    transform: translate(-50%, -8px);
  }
}

/* Pricing and privacy refinements. */
.privacy-action {
  display: grid;
  flex: 0 0 auto;
  justify-items: center;
  gap: 8px;
}

.privacy-action .button {
  min-width: 260px;
  justify-content: center;
}

.privacy-action small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1;
}

#pricing .section-heading .section-label {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  letter-spacing: 0;
  line-height: 1;
}

#pricing .section-heading > p:not(.section-label) strong {
  color: var(--ink);
  font-weight: 950;
}

.pricing-contact-link {
  color: #2563eb;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.36);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.pricing-contact-link:hover,
.pricing-contact-link:focus-visible {
  color: #0f766e;
  text-decoration-color: currentColor;
}

.price-panel.lifetime {
  overflow: hidden;
}

.price-panel li {
  padding-left: 30px;
}

.price-panel li::before {
  content: "✓";
  top: 0.12em;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #d1fae5;
  color: #047857;
  font-size: 0.72rem;
  font-weight: 1000;
  line-height: 1;
}

.price-panel.lifetime .limited-ribbon {
  position: absolute;
  top: 17px;
  right: -34px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 126px;
  height: 26px;
  padding: 0;
  background: rgba(3, 7, 18, 0.9);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 6px 14px rgba(3, 7, 18, 0.18);
}

.lifetime-confetti {
  position: absolute !important;
  inset: 0;
  z-index: 5 !important;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.lifetime-confetti i {
  position: absolute;
  top: var(--confetti-origin-y);
  left: var(--confetti-origin-x);
  width: 5px;
  height: 11px;
  border-radius: 2px;
  background: var(--confetti-color);
  opacity: 0;
  will-change: transform, opacity;
}

.lifetime-confetti i[data-shape="dot"] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.lifetime-confetti i[data-shape="chip"] {
  width: 10px;
  height: 4px;
}

.lifetime-confetti i[data-shape="diamond"] {
  width: 8px;
  height: 8px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

@media (max-width: 700px) {
  .pricing-compare-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-compare-callout .button {
    width: 100%;
  }
}

/* Final responsive type and pricing rhythm. Keep meaningful phrases together on
   wide screens, while allowing natural wrapping again on tablets and phones. */
#pricing .section-heading .section-label {
  margin-bottom: 16px;
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
}

.pricing .section-heading {
  max-width: 1040px;
}

#pricing .section-heading > p:not(.section-label) strong {
  display: inline-block;
  white-space: nowrap;
}

.pricing-desktop-break {
  display: none;
}

.monthly-cancel-note {
  display: block;
  margin-top: auto;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}

.price-panel.monthly .button {
  margin-top: 0;
}

.product-proof .section-heading {
  max-width: 1040px;
}

.product-proof .section-heading > p:not(.section-label) {
  max-width: 780px;
  margin-inline: auto;
}

.privacy-band {
  padding-inline: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.privacy-band h2 {
  max-width: none;
  text-wrap: pretty;
}

@media (min-width: 1100px) {
  .pricing-desktop-break {
    display: block;
  }

  .privacy-band h2 span {
    display: block;
  }

  .product-proof .section-heading h2 {
    white-space: nowrap;
  }

  .feature-text h3 {
    font-size: clamp(2.3rem, 2.6vw, 2.7rem);
    line-height: 1.08;
  }

  .feature-text p,
  .feature-text li {
    font-size: 1.08rem;
    line-height: 1.58;
  }
}

@media (max-width: 640px) {
  #pricing .section-heading .section-label {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  #pricing .section-heading > p:not(.section-label) strong {
    display: inline;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 7px;
  }

  .nav-referrals {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.86rem;
  }

  .header-actions .nav-cta {
    display: none;
  }

  .privacy-action {
    justify-self: start;
  }

  #pricing .section-heading .section-label {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .price-panel.lifetime .limited-ribbon {
    top: 14px;
    right: -36px;
    transform: rotate(45deg) scale(0.9);
  }
}

@media (max-width: 560px) {
  .support-more {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header.is-header-hidden {
    transform: none;
    transition: none;
  }
}

/* FocusFlow pricing experiment and consent surfaces. */
[data-pricing-experiment][hidden],
[data-pricing-variant-copy][hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.pricing-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 720px;
  margin: 24px auto 34px;
  color: #475569;
}

.pricing-social-proof img {
  width: clamp(150px, 16vw, 190px);
  height: auto;
  border-radius: 999px;
}

.pricing-social-proof p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.25;
}

.pricing-social-proof strong {
  color: #0f172a;
  font-size: 1.15em;
  font-weight: 950;
}

.pricing-selector-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px) minmax(0, 1fr);
  align-items: center;
  width: min(100%, 850px);
  margin: 0 auto 30px;
}

.pricing-period-toggle {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  padding: 5px;
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: 999px;
  background: #eef6ff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.pricing-period-toggle button {
  min-height: 42px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pricing-period-toggle button:hover {
  color: #0f172a;
}

.pricing-period-toggle button.is-active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 5px 16px rgba(37, 99, 235, 0.15);
}

.pricing-period-toggle button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.32);
  outline-offset: 2px;
}

.family-plan-selector {
  position: relative;
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 18px;
  min-width: 194px;
  margin-left: 24px;
}

.family-plan-callout {
  position: relative;
  display: inline-block;
  width: 112px;
  color: #2563eb;
  font-family: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-9px) rotate(-5deg);
}

.family-plan-callout::after {
  content: "";
  position: absolute;
  right: -29px;
  bottom: -17px;
  width: 39px;
  height: 25px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 22px;
  transform: rotate(8deg);
}

.family-plan-callout::before {
  content: "";
  position: absolute;
  right: -33px;
  bottom: -21px;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(10deg);
}

.family-plan-toggle {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(96, 165, 250, 0.62);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 9px 22px rgba(37, 99, 235, 0.12);
  color: #2563eb;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.family-plan-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 27px rgba(37, 99, 235, 0.2);
}

.family-plan-toggle.is-active {
  border-color: #2563eb;
  background: linear-gradient(135deg, #60a5fa, #2dd4bf);
  box-shadow: 0 11px 28px rgba(37, 99, 235, 0.27);
  color: #ffffff;
}

.family-plan-toggle:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.32);
  outline-offset: 3px;
}

.family-plan-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 23px;
}

.family-plan-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -8px 4px 0 -1px currentColor, 8px 4px 0 -1px currentColor;
}

.family-plan-icon::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 2px;
  width: 24px;
  height: 10px;
  border-radius: 14px 14px 5px 5px;
  background: currentColor;
}

.free-unlock-note {
  margin: -2px 0 18px !important;
  color: #111827 !important;
  font-size: 0.78rem !important;
  font-weight: 850;
  line-height: 1.35;
}

.price-panel.monthly-all-access {
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(96, 165, 250, 0.62);
  background:
    radial-gradient(circle at 90% 0%, rgba(96, 165, 250, 0.18), transparent 30%),
    #ffffff;
}

.price-panel.monthly-all-access .limited-ribbon {
  position: absolute;
  top: 17px;
  right: -34px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 126px;
  height: 26px;
  padding: 0;
  background: rgba(3, 7, 18, 0.92);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 6px 14px rgba(3, 7, 18, 0.18);
}

.price-panel.monthly-all-access .monthly-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 18px;
}

.price-panel.monthly-all-access .monthly-price-row .compare-price {
  margin: 0;
  color: #111827;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 900;
  text-decoration: line-through;
}

.price-panel.monthly-all-access li strong {
  color: #0f172a;
  font-weight: 950;
}

.price-panel .included-product-link {
  color: #2563eb;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.4);
  text-underline-offset: 2px;
}

.price-panel .included-product-link:hover {
  color: #1d4ed8;
  text-decoration-color: currentColor;
}

.price-panel.lifetime > .button {
  white-space: nowrap;
}

.price-panel [data-flex-family-feature][hidden],
.price-panel [data-flex-plan-alternative][hidden],
.price-panel [data-flex-plan-secondary][hidden] {
  display: none !important;
}

.family-price-alternative {
  margin: -10px 0 18px !important;
  color: #111827 !important;
  font-size: 0.9rem !important;
  font-weight: 800;
}

.family-price-alternative strong {
  font-weight: 950;
}

.pricing-card-actions {
  display: grid;
  gap: 9px;
}

.pricing-card-actions .button {
  width: 100%;
}

.analytics-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(720px, calc(100vw - 40px));
  padding: 20px;
  border: 1px solid rgba(96, 165, 250, 0.42);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
  color: #334155;
}

.analytics-consent strong {
  color: #0f172a;
  font-size: 1rem;
}

.analytics-consent p {
  margin: 5px 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.analytics-consent-actions,
.analytics-choice-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.analytics-consent-actions {
  justify-content: flex-end;
}

.analytics-consent .button,
.analytics-choice-actions .button {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.84rem;
}

.analytics-consent a {
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 800;
}

.analytics-choice-panel [data-focusflow-consent-status] {
  min-height: 1.4em;
  margin-bottom: 0;
  font-size: 0.88rem;
}

@media (max-width: 700px) {
  .pricing-social-proof {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    text-align: center;
  }

  .pricing-selector-row {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) minmax(0, 1fr);
    width: 100%;
    margin-bottom: 24px;
    padding-top: 38px;
  }

  .pricing-period-toggle button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .family-plan-selector {
    min-width: 48px;
    margin-left: 4px;
  }

  .family-plan-callout {
    position: absolute;
    right: 43px;
    top: -33px;
    width: 104px;
    font-size: 0.94rem;
  }

  .family-plan-toggle {
    width: 48px;
    height: 48px;
  }

  .price-panel.monthly-all-access .limited-ribbon {
    top: 14px;
    right: -36px;
    transform: rotate(45deg) scale(0.9);
  }

  .analytics-consent {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
  }

  .analytics-consent-actions {
    justify-content: flex-start;
  }
}

/* Final pricing selector and card alignment pass. */
.hero .hero-social-proof {
  justify-content: flex-start;
  gap: 12px;
  max-width: 520px;
  margin: 0 0 22px;
  color: #cbd5e1;
}

.hero .hero-social-proof img {
  width: 154px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.hero .hero-social-proof p {
  color: #cbd5e1;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
}

.hero .hero-social-proof strong {
  color: #ffffff;
}

.pricing-selector-row {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px) minmax(220px, 1fr);
  width: min(100%, 900px);
}

.family-plan-selector {
  position: relative;
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-self: start;
  justify-content: flex-start;
  width: 210px;
  min-width: 210px;
  height: 80px;
  margin-left: 28px;
}

.family-plan-callout {
  position: absolute;
  left: 56px;
  top: -45px;
  z-index: 2;
  display: block;
  width: 138px;
  height: 54px;
  color: #e11d48;
  font-family: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  transform: none;
}

.family-plan-callout-family,
.family-plan-callout-plan {
  display: inline-block;
}

.family-plan-callout-family {
  transform: translateY(5px) rotate(-8deg);
}

.family-plan-callout-plan {
  margin-left: 2px;
  transform: translateY(-1px) rotate(5deg);
}

.family-plan-callout::before,
.family-plan-callout::after {
  content: none;
}

.family-plan-arrow {
  position: absolute;
  left: -30px;
  top: 23px;
  display: block;
  width: 62px;
  height: 38px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-radius: 0 0 0 40px;
  transform: rotate(-13deg);
  transform-origin: right top;
}

.family-plan-arrow::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -3px;
  width: 15px;
  height: 15px;
  background: currentColor;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  transform: rotate(24deg);
}

.family-plan-toggle {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  padding: 0;
  border: 3px solid #2563eb;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff 0%, #e8f2ff 100%);
  box-shadow:
    0 11px 26px rgba(37, 99, 235, 0.22),
    0 0 0 4px rgba(96, 165, 250, 0.12),
    inset 0 -5px 10px rgba(96, 165, 250, 0.12);
  color: #174bb8;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.family-plan-toggle-default,
.family-plan-toggle-selected {
  place-items: center;
  line-height: 1;
  text-transform: uppercase;
}

.family-plan-toggle-default {
  display: grid;
}

.family-plan-toggle-selected {
  display: none;
}

.family-plan-toggle b {
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.family-plan-toggle small {
  margin-top: 5px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.family-plan-toggle:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 15px 31px rgba(37, 99, 235, 0.28),
    0 0 0 5px rgba(96, 165, 250, 0.16),
    inset 0 -5px 10px rgba(96, 165, 250, 0.1);
}

.family-plan-toggle:active {
  transform: translateY(0) scale(0.98);
}

.family-plan-toggle.is-active {
  border-color: #0f766e;
  background: linear-gradient(145deg, #2dd4bf 0%, #3b82f6 100%);
  box-shadow:
    0 14px 30px rgba(13, 148, 136, 0.3),
    0 0 0 5px rgba(45, 212, 191, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.family-plan-toggle.is-active .family-plan-toggle-default {
  display: none;
}

.family-plan-toggle.is-active .family-plan-toggle-selected {
  display: grid;
}

.family-plan-toggle:focus-visible {
  outline: 4px solid rgba(225, 29, 72, 0.34);
  outline-offset: 5px;
}

.price-panel .included-product-link {
  color: #2563eb;
  font-weight: 950;
}

.final-product-pair {
  display: inline-block;
  white-space: nowrap;
}

.price-panel > h3,
.price-panel .price-card-head {
  margin-bottom: 16px;
}

.price-panel .free-price-row,
.price-panel.lifetime .price-row,
.price-panel.monthly-all-access .monthly-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}

.price-panel .free-price-row .free-unlock-note {
  margin: 0 !important;
}

.price-panel.lifetime .price-card-head {
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.price-panel.lifetime .super-line {
  flex: 0 0 auto;
  padding: 9px 14px;
}

@media (min-width: 1101px) {
  .price-panel > h3,
  .price-panel .price-card-head {
    display: flex;
    align-items: center;
    min-height: 48px;
  }

  .price-panel .free-price-row,
  .price-panel.lifetime .price-row,
  .price-panel.monthly-all-access .monthly-price-row {
    min-height: 128px;
    margin-bottom: 18px;
  }

  .price-panel .plan-description {
    min-height: 94px;
  }
}

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

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

@media (max-width: 700px) {
  .hero .hero-social-proof {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0 auto 28px;
    text-align: left;
  }

  .hero .hero-social-proof img {
    width: 128px;
    height: 44px;
  }

  .hero .hero-social-proof p {
    max-width: 170px;
    font-size: 0.84rem;
  }

  .pricing-selector-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "family"
      "period";
    gap: 18px;
    width: 100%;
    margin: 60px auto 26px;
    padding: 0;
  }

  .pricing-period-toggle {
    grid-area: period;
    grid-column: auto;
    justify-self: center;
    width: min(100%, 360px);
  }

  .family-plan-selector {
    grid-area: family;
    grid-column: auto;
    justify-self: center;
    justify-content: center;
    width: 220px;
    min-width: 220px;
    height: 80px;
    margin: 0;
  }

  .family-plan-callout {
    left: calc(50% + 28px);
    top: -42px;
    width: 132px;
    font-size: 1.02rem;
  }

  .family-plan-toggle {
    width: 76px;
    height: 76px;
  }

  .price-note {
    text-align: left;
  }
}

/* Refined hero proof, Family selection control, and tighter pricing rhythm. */
.hero h1 {
  margin-bottom: 18px;
}

.hero .hero-social-proof {
  justify-content: flex-start;
  gap: 13px;
  max-width: 520px;
  margin: 0 0 24px;
}

.hero-proof-avatars {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding-left: 2px;
}

.hero-proof-avatars > span {
  width: 38px;
  height: 38px;
  margin-left: -8px;
  border: 2px solid #0a1629;
  border-radius: 50%;
  background-image: url("assets/focusflow-user-avatars.png");
  background-repeat: no-repeat;
  background-size: 228px 97px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
}

.hero-proof-avatars > span:first-child {
  margin-left: 0;
  background-position: -11px -29px;
}

.hero-proof-avatars > span:nth-child(2) {
  background-position: -45px -29px;
}

.hero-proof-avatars > span:nth-child(3) {
  background-position: -79px -29px;
}

.hero-proof-avatars > span:nth-child(4) {
  background-position: -113px -29px;
}

.hero-proof-avatars > span:nth-child(5) {
  background-position: -147px -29px;
}

.hero-proof-avatars > span:nth-child(6) {
  background-position: -182px -29px;
}

.pricing-selector-row {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px) minmax(250px, 1fr);
  width: min(100%, 980px);
}

.family-plan-selector {
  grid-column: 3;
  justify-self: start;
  justify-content: flex-start;
  width: 240px;
  min-width: 240px;
  height: 72px;
  margin-left: 26px;
}

.family-plan-callout {
  left: auto;
  right: 8px;
  top: -25px;
  width: auto;
  height: auto;
  color: #e11d48;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: right;
  transform: rotate(-2deg);
}

.family-plan-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  width: 232px;
  height: 60px;
  padding: 8px 13px;
  border: 2px solid #93c5fd;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #eef6ff 100%);
  box-shadow:
    0 10px 24px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #163d8f;
}

.family-plan-toggle-indicator {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #60a5fa;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.11);
}

.family-plan-toggle-indicator::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93c5fd;
  transition: transform 160ms ease, background 160ms ease;
}

.family-plan-toggle-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
  text-align: left;
  line-height: 1;
}

.family-plan-toggle-copy b {
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.family-plan-toggle-copy small {
  margin: 0;
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

.family-plan-toggle-default {
  display: block;
}

.family-plan-toggle-selected {
  display: none;
}

.family-plan-toggle:hover {
  border-color: #3b82f6;
  background: linear-gradient(145deg, #ffffff 0%, #e4f1ff 100%);
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.family-plan-toggle:active {
  transform: translateY(0) scale(0.99);
}

.family-plan-toggle.is-active {
  border-color: #0f766e;
  background: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%);
  box-shadow:
    0 14px 30px rgba(13, 148, 136, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.family-plan-toggle.is-active .family-plan-toggle-indicator {
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
}

.family-plan-toggle.is-active .family-plan-toggle-indicator::after {
  content: "✓";
  width: auto;
  height: auto;
  background: transparent;
  color: #0f766e;
  font-size: 0.92rem;
  font-weight: 1000;
}

.family-plan-toggle.is-active .family-plan-toggle-copy small {
  color: rgba(255, 255, 255, 0.84);
}

.family-plan-toggle.is-active .family-plan-toggle-default {
  display: none;
}

.family-plan-toggle.is-active .family-plan-toggle-selected {
  display: block;
}

.family-plan-toggle:focus-visible {
  outline: 4px solid rgba(37, 99, 235, 0.24);
  outline-offset: 4px;
}

.price-panel .plan-description {
  margin-bottom: 0;
}

.price-panel ul {
  margin-top: 14px;
}

.price-panel .brainshine-pass-feature {
  position: relative;
  display: block;
  margin-top: 5px;
  padding: 17px 13px 12px !important;
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.12), transparent 42%),
    #f3f8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.price-panel .brainshine-pass-feature::before {
  content: "INCLUDED";
  position: absolute;
  top: -9px;
  left: 12px;
  display: grid;
  place-items: center;
  width: auto;
  height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  color: #ffffff;
  font-size: 0.52rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brainshine-pass-content {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.brainshine-pass-copy {
  color: #334155;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.brainshine-pass-products {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  white-space: nowrap;
}

.price-panel .brainshine-pass-products .included-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 5px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 7px;
  background: #ffffff;
  font-size: clamp(0.64rem, 0.72vw, 0.74rem);
  line-height: 1;
  text-decoration: none;
}

.price-panel .brainshine-pass-products .included-product-link:hover,
.price-panel .brainshine-pass-products .included-product-link:focus-visible {
  border-color: #2563eb;
  background: #eff6ff;
}

.final-product-pair {
  display: inline-flex;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .price-panel .free-price-row,
  .price-panel.lifetime .price-row,
  .price-panel.monthly-all-access .monthly-price-row {
    min-height: 116px;
  }

  .price-panel .plan-description {
    min-height: 68px;
  }
}

@media (max-width: 700px) {
  .hero .hero-social-proof {
    justify-content: flex-start;
    gap: 11px;
    margin: 0 0 24px;
    text-align: left;
  }

  .hero-proof-avatars > span {
    width: 34px;
    height: 34px;
    margin-left: -9px;
    background-size: 204px 86px;
  }

  .hero-proof-avatars > span:first-child {
    background-position: -10px -26px;
  }

  .hero-proof-avatars > span:nth-child(2) {
    background-position: -40px -26px;
  }

  .hero-proof-avatars > span:nth-child(3) {
    background-position: -71px -26px;
  }

  .hero-proof-avatars > span:nth-child(4) {
    background-position: -101px -26px;
  }

  .hero-proof-avatars > span:nth-child(5) {
    background-position: -132px -26px;
  }

  .hero-proof-avatars > span:nth-child(6) {
    background-position: -163px -26px;
  }

  .hero .hero-social-proof p {
    max-width: 150px;
    font-size: 0.8rem;
  }

  .pricing-selector-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "family"
      "period";
    gap: 16px;
    width: 100%;
    margin-top: 46px;
  }

  .pricing-period-toggle {
    grid-area: period;
    grid-column: auto;
    justify-self: center;
    width: min(100%, 360px);
  }

  .family-plan-selector {
    grid-area: family;
    grid-column: auto;
    justify-self: center;
    justify-content: center;
    width: 250px;
    min-width: 250px;
    height: 72px;
    margin: 0;
  }

  .family-plan-callout {
    right: 10px;
    top: -25px;
    font-size: 0.98rem;
  }

  .family-plan-toggle {
    width: 240px;
    height: 60px;
  }

  .price-panel ul {
    margin-top: 12px;
  }

  .price-panel .brainshine-pass-feature {
    margin-inline: -4px;
    padding-inline: 8px !important;
  }

  .brainshine-pass-products {
    gap: 3px;
  }

  .price-panel .brainshine-pass-products .included-product-link {
    padding-inline: 3px;
    font-size: 0.61rem;
  }
}

/* Deliberate hero rhythm and the supplied hand-drawn Family callout. */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy .promise {
  margin-bottom: clamp(27px, 2vw, 33px);
}

.hero h1 {
  margin-bottom: clamp(27px, 2vw, 33px);
}

.hero .hero-social-proof {
  margin-bottom: clamp(29px, 2.2vw, 35px);
}

.hero-lede {
  margin-bottom: clamp(32px, 2.5vw, 38px);
}

.hero-actions {
  margin-bottom: clamp(28px, 2vw, 32px);
}

.hero-copy .price-note {
  gap: 9px 12px;
  line-height: 1.5;
}

.family-plan-callout {
  top: -50px;
  right: -4px;
  display: inline-flex;
  align-items: flex-start;
  gap: 3px;
  color: #e11d48;
  font-size: 1.14rem;
  line-height: 1;
  transform: rotate(-1deg);
}

.family-plan-callout > span {
  display: block;
  padding-top: 2px;
  transform: rotate(-2deg);
}

.family-plan-callout-arrow {
  display: block;
  flex: 0 0 auto;
  width: 68px;
  height: auto;
  transform: translateY(11px) rotate(-3deg);
  transform-origin: center;
}

@media (min-width: 981px) {
  .hero {
    padding-top: clamp(96px, 10vh, 122px);
    padding-bottom: 96px;
  }
}

@media (max-width: 700px) {
  .pricing-selector-row {
    margin-top: 76px;
  }

  .hero-copy .promise {
    margin-bottom: 24px;
  }

  .hero h1 {
    margin-bottom: 24px;
  }

  .hero .hero-social-proof {
    margin-bottom: 28px;
  }

  .hero-lede {
    margin-bottom: 30px;
  }

  .hero-actions {
    margin-bottom: 27px;
  }

  .family-plan-callout {
    top: -49px;
    right: -3px;
    font-size: 1.08rem;
  }

  .family-plan-callout-arrow {
    width: 62px;
    transform: translateY(10px) rotate(-3deg);
  }
}

/* Final responsive hero, sidebar, consent, and Family selector polish. */
.hero-promise-concept {
  align-items: flex-start !important;
  width: min(100%, 690px) !important;
  line-height: 1.62;
}

.hero-promise-concept::before {
  flex: 0 0 34px;
  margin-top: 0.78em;
}

.promise-copy {
  display: inline;
  max-width: 100%;
}

.promise-focus,
.promise-memory,
.promise-pacing,
.promise-mixed,
.promise-ending {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.promise-focus {
  color: #e0f2fe;
  font-weight: 950;
}

.promise-focus::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 1px;
  height: 2px;
  border-radius: 999px;
  background: #60a5fa;
}

.promise-focus::after {
  content: none !important;
}

.promise-memory {
  margin-inline: 1px;
  padding: 0 6px 1px;
  border: 1px solid rgba(45, 212, 191, 0.78);
  border-radius: 5px;
  background: rgba(45, 212, 191, 0.11);
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.05);
  color: #d9fff8;
}

.promise-pacing::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
  transform: translateX(-50%);
}

.promise-pacing.is-wrapped::before {
  display: none;
}

.promise-mixed b {
  color: #22d3ee;
  font-weight: 950;
}

.promise-mixed span {
  color: #bae6fd;
  font-weight: 520;
}

.hero-copy .price-note b {
  white-space: nowrap;
}

.concept-panel {
  align-self: stretch;
  align-content: start;
  min-height: 526px;
  height: auto;
  grid-template-rows: none;
  grid-auto-rows: max-content;
  gap: 8px;
  padding: 14px;
  overflow: hidden;
  border-left: 1px solid rgba(147, 197, 253, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.22), transparent 38%),
    linear-gradient(180deg, #101d36 0%, #091225 100%);
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.03);
}

.concept-panel-header {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 0;
}

.concept-panel-header > img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  box-shadow: 0 5px 12px rgba(37, 99, 235, 0.3);
}

.concept-panel-heading {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.concept-panel-heading span {
  color: #60a5fa;
  font-size: 0.54rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.concept-panel-heading strong {
  overflow: hidden;
  font-size: 0.96rem;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-panel-status {
  display: flex;
  align-items: center;
  gap: 5px;
}

.concept-panel-status b {
  color: #bfdbfe;
  font-size: 0.6rem;
}

.concept-panel .panel-toggle {
  position: relative;
  inset: auto;
  width: 38px;
  height: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.concept-panel .panel-toggle span {
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
}

.concept-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.concept-mode-grid > div {
  position: relative;
  display: grid;
  gap: 1px;
  min-width: 0;
  padding: 7px 22px 7px 9px;
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.74);
}

.concept-mode-grid small,
.concept-panel-footer small {
  color: #93c5fd;
  font-size: 0.48rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.concept-mode-grid strong {
  overflow: hidden;
  font-size: 0.66rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-mode-grid > div > span {
  position: absolute;
  top: 50%;
  right: 8px;
  color: #93c5fd;
  font-size: 0.72rem;
  transform: translateY(-50%);
}

.concept-panel-section {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(147, 197, 253, 0.17);
  border-radius: 13px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.concept-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.concept-section-title strong {
  font-size: 0.7rem;
}

.concept-section-title > span {
  color: #60a5fa;
  font-size: 0.5rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.concept-scope-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.78fr;
  gap: 5px;
}

.concept-scope-grid span {
  overflow: hidden;
  padding: 6px 3px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 8px;
  color: #b9c7db;
  font-size: 0.54rem;
  font-weight: 850;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-scope-grid .is-active {
  border-color: rgba(96, 165, 250, 0.72);
  background: linear-gradient(135deg, #2563eb, #1d8bd1);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.22);
}

.concept-focus {
  display: block;
  align-self: auto;
  border-color: rgba(45, 212, 191, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.1), transparent 46%),
    rgba(15, 37, 51, 0.82);
}

.concept-live-state {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #99f6e4 !important;
}

.concept-live-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.concept-control-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #a9bad1;
  font-size: 0.55rem;
  font-weight: 750;
}

.concept-control-label b {
  color: #eaf2ff;
  font-size: 0.58rem;
}

.concept-slider {
  position: relative;
  height: 12px;
  margin: 8px 0;
  overflow: visible;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 999px;
  background: #253653;
}

.concept-slider span {
  display: block;
  width: 43%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #2dd4bf);
}

.concept-slider i {
  position: absolute;
  top: 50%;
  left: 43%;
  width: 14px;
  height: 14px;
  border: 2px solid #bfdbfe;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.concept-slider.is-secondary span {
  width: 29%;
  background: linear-gradient(90deg, #475569, #60a5fa);
}

.concept-slider.is-secondary i {
  left: 29%;
  background: #475569;
}

.concept-focus-options {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5px;
  margin-top: 9px;
}

.concept-focus-options span {
  padding: 6px 5px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 8px;
  color: #a9bad1;
  font-size: 0.5rem;
  font-weight: 850;
  text-align: center;
}

.concept-focus-options .is-active {
  border-color: rgba(45, 212, 191, 0.42);
  background: rgba(45, 212, 191, 0.1);
  color: #ccfbf1;
}

.concept-memory {
  border-color: rgba(250, 204, 21, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(250, 204, 21, 0.08), transparent 48%),
    rgba(37, 31, 39, 0.8);
}

.concept-memory-grid,
.concept-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.concept-memory-grid > span,
.concept-extra-grid > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  min-width: 0;
  padding: 7px 6px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.62);
}

.concept-memory-grid small,
.concept-extra-grid small {
  overflow: hidden;
  color: #aabbd0;
  font-size: 0.43rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
}

.concept-memory-grid b {
  color: #fef3c7;
  font-size: 0.62rem;
}

.concept-desktop-extra {
  display: none;
}

.concept-clarity {
  padding-block: 8px;
  border-color: rgba(168, 85, 247, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.1), transparent 48%),
    rgba(31, 25, 48, 0.78);
}

.concept-clarity .concept-section-title {
  margin-bottom: 5px;
}

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

.concept-extra-grid > span {
  padding-block: 5px;
}

.concept-extra-grid b {
  color: #e9d5ff;
  font-size: 0.56rem;
}

.concept-clarity-modes {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5px;
  margin-top: 6px;
}

.concept-clarity-modes span {
  padding: 5px 4px;
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 7px;
  color: #cbd5e1;
  font-size: 0.46rem;
  font-weight: 850;
  text-align: center;
}

.concept-clarity-modes .is-active {
  border-color: rgba(192, 132, 252, 0.5);
  background: rgba(168, 85, 247, 0.16);
  color: #f3e8ff;
}

.concept-reading-flow {
  padding-block: 8px;
  border-color: rgba(56, 189, 248, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.1), transparent 48%),
    rgba(18, 34, 57, 0.82);
}

.concept-reading-flow .concept-section-title {
  margin-bottom: 6px;
}

.concept-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.concept-flow-grid > span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 7px 6px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.62);
}

.concept-flow-grid > span.is-active {
  border-color: rgba(56, 189, 248, 0.46);
  background: rgba(14, 165, 233, 0.12);
}

.concept-flow-grid b {
  color: #e0f2fe;
  font-size: 0.52rem;
}

.concept-flow-grid small {
  overflow: hidden;
  color: #9fb3ca;
  font-size: 0.41rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.11);
}

.concept-panel-footer > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.concept-panel-footer strong {
  overflow: hidden;
  font-size: 0.58rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-panel-footer > span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(96, 165, 250, 0.45);
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.54rem;
  font-weight: 950;
  box-shadow: 0 5px 12px rgba(37, 99, 235, 0.2);
}

.analytics-consent {
  right: auto;
  left: 50%;
  width: min(780px, calc(100vw - 40px));
  transform: translateX(-50%);
}

.family-plan-selector {
  width: 226px;
  min-width: 226px;
  margin-left: 42px;
}

.family-plan-toggle {
  width: 220px;
}

.family-plan-callout {
  top: -56px;
  right: auto;
  left: 0;
  display: block;
  width: 226px;
  height: 62px;
  font-size: 1.18rem;
  text-align: left;
  transform: none;
}

.family-plan-callout > span {
  position: absolute;
  top: 0;
  left: 37px;
  padding: 0;
  white-space: nowrap;
  transform: none;
}

.family-plan-callout-arrow {
  position: absolute;
  top: 16px;
  right: 66px;
  width: 90px;
  margin: 0;
  pointer-events: none;
  transform: none;
}

@media (min-width: 981px) {
  .concept-reading-flow {
    display: block;
  }

  .concept-clarity {
    display: block;
  }
}

@media (min-width: 700px) and (max-width: 980px) {
  .demo-stage {
    grid-template-columns: minmax(0, 1fr) 240px;
    background:
      linear-gradient(90deg, #f8fbff 0%, #f8fbff calc(100% - 240px), #0b1428 calc(100% - 240px), #0b1428 100%);
  }

  .concept-panel {
    display: grid;
    min-height: 526px;
    padding-inline: 13px;
  }

  .concept-panel-status b {
    display: none;
  }

  .concept-scope-grid {
    grid-template-columns: 1.25fr 1fr;
  }

  .concept-scope-grid span:last-child {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-promise-concept {
    line-height: 1.72;
  }

  .promise-pacing::before {
    top: -5px;
    width: 7px;
    height: 7px;
  }

  .analytics-consent {
    right: auto;
    left: 50%;
    width: calc(100vw - 24px);
  }

  .family-plan-selector {
    width: 226px;
    min-width: 226px;
    margin: 0;
  }

  .family-plan-toggle {
    width: 220px;
  }

  .family-plan-callout {
    top: -56px;
    right: auto;
    left: 0;
    font-size: 1.12rem;
  }

  .family-plan-callout-arrow {
    top: 16px;
    right: 66px;
    width: 90px;
    transform: none;
  }
}

/* Authoritative responsive, pricing-selector, and motion component rules. */
.hero .hero-social-proof {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  max-width: 540px;
  margin: 0 0 clamp(29px, 2.2vw, 35px);
  color: #cbd5e1;
  text-align: left;
}

.hero .hero-social-proof p {
  flex: 1 1 190px;
  min-width: 190px;
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.25;
}

.hero .hero-social-proof strong {
  color: #ffffff;
  font-size: 1.15em;
  font-weight: 950;
}

.hero .hero-proof-avatars {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding-left: 2px;
}

.pricing-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 720px;
  margin: 24px auto 36px;
  color: #475569;
  text-align: center;
}

.pricing-social-proof img {
  width: min(235px, 62vw);
  height: auto;
  border-radius: 999px;
}

.pricing-social-proof p {
  max-width: none;
  margin: 0;
  color: #475569;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.25;
  text-align: center;
}

.pricing-social-proof strong {
  color: #0f172a;
  font-size: 1.15em;
  font-weight: 950;
}

.pricing-controls {
  display: grid;
  justify-items: center;
  gap: 30px;
  width: min(100%, 520px);
  margin: 0 auto 38px;
}

.family-pricing-control {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(340px, calc(100vw - 32px));
  min-height: 142px;
  padding-top: 66px;
}

.family-pricing-label {
  position: absolute;
  top: 0;
  left: 50%;
  width: 260px;
  height: 72px;
  color: #356dcc;
  pointer-events: none;
  transform: translateX(-50%);
}

.family-pricing-pill {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 160px;
  height: 40px;
  border: 1.5px solid #6f9fe4;
  border-radius: 999px;
  background: linear-gradient(180deg, #fbfdff, #edf5ff);
  box-shadow: 0 7px 18px rgba(37, 99, 200, 0.11), inset 0 1px 0 #ffffff;
  color: #3268c2;
  font-size: 0.96rem;
  font-weight: 620;
  line-height: 1;
  white-space: nowrap;
}

.family-pricing-pill::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -24px;
  width: 18px;
  height: 24px;
  background:
    linear-gradient(30deg, transparent 39%, #5b86d7 40%, #5b86d7 59%, transparent 60%) no-repeat 0 0 / 100% 4px,
    linear-gradient(90deg, transparent 18%, #5b86d7 19%, #5b86d7 81%, transparent 82%) no-repeat 0 10px / 100% 4px,
    linear-gradient(-30deg, transparent 39%, #5b86d7 40%, #5b86d7 59%, transparent 60%) no-repeat 0 20px / 100% 4px;
}

.family-pricing-pill .family-plan-icon {
  width: 22px;
  height: 18px;
}

.family-pricing-pill .family-plan-icon::before {
  left: 8px;
  width: 6px;
  height: 6px;
  box-shadow: -6px 3px 0 -1px currentColor, 6px 3px 0 -1px currentColor;
}

.family-pricing-pill .family-plan-icon::after {
  left: 2px;
  width: 18px;
  height: 8px;
}

.family-pricing-arrow {
  position: absolute;
  top: 25px;
  left: 146px;
  width: 104px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(41%) sepia(63%) saturate(680%) hue-rotate(188deg) brightness(91%) contrast(88%);
  opacity: 0.92;
  transform: scaleX(-1) rotate(-3deg);
  transform-origin: center;
}

.family-pricing-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  width: min(340px, calc(100vw - 32px));
  min-height: 76px;
  padding: 10px 18px;
  border: 2px solid #7faeef;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #eef6ff);
  box-shadow: 0 13px 28px rgba(37, 99, 235, 0.13), inset 0 1px 0 #ffffff;
  color: #174494;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.family-pricing-toggle:hover {
  border-color: #3b82f6;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.2), inset 0 1px 0 #ffffff;
  transform: translateY(-1px);
}

.family-pricing-toggle:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.3);
  outline-offset: 4px;
}

.family-pricing-toggle[aria-pressed="true"] {
  border-color: #2563eb;
  background: linear-gradient(145deg, #e8f2ff, #dcecff);
  box-shadow: 0 15px 34px rgba(37, 99, 235, 0.24), inset 0 0 0 1px rgba(37, 99, 235, 0.1);
  color: #123f93;
}

.family-pricing-toggle-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 3px solid #5f9df1;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 7px rgba(96, 165, 250, 0.12);
  color: #4d8be5;
}

.family-pricing-toggle[aria-pressed="true"] .family-pricing-toggle-icon {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
}

.family-pricing-toggle-copy {
  display: grid;
  justify-self: center;
  min-width: 0;
  line-height: 1.12;
}

.family-pricing-toggle-copy b {
  color: currentColor;
  font-size: 1rem;
  font-weight: 850;
  white-space: nowrap;
}

.family-pricing-toggle-copy small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 760;
}

.family-pricing-toggle-chevron {
  color: #75a4e7;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.family-pricing-toggle[aria-pressed="true"] .family-pricing-toggle-chevron {
  color: #2563eb;
}

.pricing-controls .pricing-period-toggle {
  display: grid;
  grid-column: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 440px);
  height: 60px;
  margin: 0;
  padding: 5px;
  border: 1px solid rgba(96, 165, 250, 0.48);
  border-radius: 999px;
  background: #eaf3ff;
  box-shadow: 0 11px 26px rgba(15, 23, 42, 0.07);
}

.pricing-controls .pricing-period-toggle button {
  min-height: 50px;
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 850;
  cursor: pointer;
}

.pricing-controls .pricing-period-toggle button.is-active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 6px 17px rgba(37, 99, 235, 0.15);
}

[data-pricing-grid] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2.4vw, 28px);
}

[data-pricing-grid] > .price-panel {
  min-width: 0;
}

.demo-reader[data-focus-demo] {
  --focus-dot-x: 50%;
  --focus-dot-y: 50%;
}

.demo-reader[data-focus-demo] .demo-focus-band {
  top: var(--focus-top, 0px);
  height: var(--focus-height, 0px);
  animation: none;
  transition:
    top 105ms cubic-bezier(.2, .8, .2, 1),
    height 105ms cubic-bezier(.2, .8, .2, 1);
}

.demo-reader[data-focus-demo] .demo-pacer-dot {
  top: 0;
  left: 0;
  animation: none;
  transform: translate3d(
    calc(var(--focus-dot-x, 50%) - 11px),
    calc(var(--focus-dot-y, 50%) - 11px),
    0
  );
  transition: opacity 120ms ease;
  will-change: transform;
}

.interactive-browser.is-pacer-off .demo-pacer-dot {
  opacity: 0;
  animation: none;
}

.demo-article[data-reading-focus-demo] .demo-track-lines {
  gap: 12px;
}

.demo-article[data-reading-focus-demo] .demo-read-step {
  min-height: 92px;
}

.demo-article[data-reading-focus-demo] .demo-soft-band {
  top: var(--demo-band-top);
  height: var(--demo-band-height);
  animation: none;
  transition:
    top 105ms cubic-bezier(.2, .8, .2, 1),
    height 105ms cubic-bezier(.2, .8, .2, 1);
}

.demo-article[data-reading-focus-demo] .demo-bounce-dot {
  top: 0;
  left: 0;
  animation: none;
  transform: translate3d(
    calc(var(--demo-dot-x, 50%) - 9px),
    calc(var(--demo-dot-y, 50%) - 9px),
    0
  );
  transition: none;
  will-change: transform;
}

.wordflow-box strong {
  grid-area: 1 / 1;
  will-change: opacity, transform;
  transition:
    opacity var(--wordflow-transition-ms, 90ms) cubic-bezier(.22, 1, .36, 1),
    transform var(--wordflow-transition-ms, 90ms) cubic-bezier(.22, 1, .36, 1);
}

.wordflow-box [data-word-flow-next] {
  opacity: 0;
  transform: translateY(3px) scale(0.992);
}

.wordflow-box.is-changing [data-word-flow] {
  opacity: 0;
  transform: translateY(-3px) scale(0.992);
}

.wordflow-box.is-changing [data-word-flow-next] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wordflow-box.is-resetting strong {
  transition: none !important;
}

@media (min-width: 1180px) {
  [data-pricing-grid] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  [data-pricing-grid] > .price-panel {
    grid-column: auto;
    grid-row: auto;
    width: auto;
  }
}

@media (min-width: 760px) and (max-width: 1179px) {
  [data-pricing-grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  [data-pricing-grid] > .price-panel.lifetime {
    grid-column: 1;
    grid-row: 1;
  }

  [data-pricing-grid] > .price-panel.monthly {
    grid-column: 2;
    grid-row: 1;
  }

  [data-pricing-grid] > .price-panel.free {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: calc((100% - clamp(18px, 2.4vw, 28px)) / 2);
  }
}

@media (max-width: 1099px) {
  .privacy-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: clamp(34px, 5vw, 48px) 24px;
    text-align: center;
  }

  .privacy-band > div:first-child {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  .privacy-band h2 {
    max-width: 26ch;
    margin: 0 auto 12px;
    font-size: clamp(1.9rem, 4.3vw, 2.65rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .privacy-band h2 span {
    display: block;
  }

  .privacy-band p {
    max-width: 42rem;
    margin: 0 auto;
    font-size: clamp(0.98rem, 1.9vw, 1.08rem);
    line-height: 1.5;
    text-align: center;
  }

  .privacy-action {
    align-self: center;
    justify-self: center;
  }
}

@media (max-width: 759px) {
  .pricing-controls {
    width: min(100%, 380px);
    gap: 26px;
    margin-bottom: 32px;
  }

  .pricing-controls .pricing-period-toggle {
    width: min(100%, 360px);
  }

  [data-pricing-grid] {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-pricing-grid] > .price-panel,
  [data-pricing-grid] > .price-panel.free,
  [data-pricing-grid] > .price-panel.lifetime,
  [data-pricing-grid] > .price-panel.monthly {
    grid-column: auto;
    grid-row: auto;
    width: auto;
  }

  .pricing-social-proof {
    gap: 12px;
    margin-bottom: 32px;
  }

  .pricing-social-proof img {
    width: min(220px, 64vw);
  }

  .demo-article[data-reading-focus-demo] .demo-track-lines {
    gap: 14px;
  }

  .demo-article[data-reading-focus-demo] .demo-read-step {
    min-height: 0;
    padding-block: 6px;
  }
}

@media (max-width: 640px) {
  .privacy-band {
    gap: 20px;
    padding: 30px 18px;
  }

  .privacy-band h2 {
    max-width: 20ch;
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 8vw, 2rem);
    line-height: 1.1;
  }

  .privacy-band p {
    max-width: 31rem;
    font-size: 0.96rem;
  }

  .privacy-action {
    width: 100%;
  }

  .privacy-action .button {
    width: 100%;
    min-width: 0;
    max-width: 300px;
    margin-inline: auto;
  }

  .hero .hero-social-proof {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .family-pricing-control {
    width: min(340px, calc(100vw - 28px));
  }

  .family-pricing-toggle {
    width: min(340px, calc(100vw - 28px));
  }
}

@media (max-width: 380px) {
  .family-pricing-label {
    transform: translateX(-48%) scale(0.96);
    transform-origin: top center;
  }

  .family-pricing-toggle {
    grid-template-columns: 46px minmax(0, 1fr) 15px;
    gap: 10px;
    padding-inline: 14px;
  }

  .family-pricing-toggle-icon {
    width: 46px;
    height: 46px;
  }

  .family-pricing-toggle-copy b {
    font-size: 0.94rem;
  }

  .family-pricing-toggle-copy small {
    font-size: 0.72rem;
  }

  .pricing-controls .pricing-period-toggle {
    width: min(100%, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-reader[data-focus-demo] .demo-focus-band,
  .demo-reader[data-focus-demo] .demo-pacer-dot,
  .demo-article[data-reading-focus-demo] .demo-soft-band,
  .demo-article[data-reading-focus-demo] .demo-bounce-dot,
  .wordflow-box strong {
    animation: none;
    transition: none;
  }
}

/* Hero promise, reading demo, and Family selector finishing pass. */
.hero-promise-concept::before {
  content: none !important;
}

.promise-copy {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.promise-browser-lead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  vertical-align: -0.14em;
}

.promise-browser-icons {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 31px;
  height: 20px;
}

.promise-browser-icon {
  position: absolute;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.24);
}

.promise-browser-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #4285f4;
}

.promise-browser-icon.is-chrome {
  left: 0;
  z-index: 2;
  background: conic-gradient(#ea4335 0 33%, #fbbc05 0 66%, #34a853 0);
}

.promise-browser-icon.is-canary {
  right: 0;
  z-index: 1;
  background: conic-gradient(#ffd54f 0 34%, #ffb300 0 67%, #fff59d 0);
}

.promise-browser-icon.is-canary::after {
  background: #60a5fa;
}

.promise-focus::before {
  right: auto;
  left: 0;
  width: 45%;
  animation: promiseFocusSweep 1.75s cubic-bezier(.45, 0, .55, 1) infinite alternate;
  transform: translateX(0);
  will-change: transform;
}

.promise-pacing::before {
  left: 8%;
  animation: promisePacerGlide 2.8s ease-in-out infinite;
}

.promise-mixed {
  animation: promiseKerning 2.1s cubic-bezier(.45, 0, .55, 1) infinite;
  transform-origin: center;
  will-change: letter-spacing;
}

.promise-more {
  position: relative;
  display: inline-block;
  font-weight: 900;
  animation: promiseBreathe 2.1s cubic-bezier(.45, 0, .55, 1) infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes promiseFocusSweep {
  from { transform: translateX(0); }
  to { transform: translateX(122%); }
}

@keyframes promisePacerGlide {
  0%, 100% { left: 8%; }
  50% { left: 92%; }
}

@keyframes promiseKerning {
  0%, 100% { letter-spacing: 0; }
  50% { letter-spacing: 0.07em; }
}

@keyframes promiseBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.demo-article[data-reading-focus-demo] {
  display: grid;
  align-content: center;
}

.demo-article[data-reading-focus-demo] .demo-track-lines {
  width: 100%;
}

.demo-article[data-reading-focus-demo] .demo-bounce-dot {
  border-color: rgba(244, 63, 94, 0.16);
  background: rgba(244, 63, 94, 0.64);
  box-shadow: 0 10px 26px rgba(244, 63, 94, 0.16);
}

.family-pricing-control,
.family-pricing-toggle {
  width: min(276px, calc(100vw - 32px));
}

.pricing-social-proof {
  margin-bottom: 24px;
}

.pricing-controls {
  gap: 24px;
}

.family-pricing-control {
  min-height: 72px;
  padding-top: 0;
}

.family-pricing-label {
  left: 50%;
  z-index: 0;
  width: 276px;
  transform: translateX(-50%);
}

.family-pricing-pill {
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.family-pricing-pill::before {
  top: 19px;
  left: -29px;
  width: 20px;
  height: 2px;
  background: #5b86d7;
}

.family-pricing-pill::after {
  content: "";
  position: absolute;
  top: 8px;
  left: -29px;
  width: 22px;
  height: 24px;
  background:
    linear-gradient(30deg, transparent calc(50% - 1px), #5b86d7 calc(50% - 1px), #5b86d7 calc(50% + 1px), transparent calc(50% + 1px)) no-repeat 1px 0 / 20px 8px,
    linear-gradient(-30deg, transparent calc(50% - 1px), #5b86d7 calc(50% - 1px), #5b86d7 calc(50% + 1px), transparent calc(50% + 1px)) no-repeat 1px 16px / 20px 8px;
}

.family-pricing-arrow {
  top: 37px;
  left: 50%;
  z-index: 0;
  width: 98px;
  transform: translateX(10px) scaleX(-1) rotate(3deg);
  transform-origin: center;
}

.family-pricing-toggle {
  z-index: 1;
  grid-template-columns: 44px minmax(0, 1fr) 14px;
  gap: 10px;
  min-height: 72px;
  padding: 9px 14px;
}

.family-pricing-toggle-icon {
  width: 44px;
  height: 44px;
  border-width: 3px;
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.12);
}

.family-pricing-toggle-copy b {
  font-size: 0.94rem;
}

.family-pricing-toggle-copy small {
  font-size: 0.7rem;
}

.family-pricing-toggle-chevron {
  font-size: 1.75rem;
}

@media (max-width: 380px) {
  .family-pricing-control,
  .family-pricing-toggle {
    width: min(276px, calc(100vw - 28px));
  }

  .family-pricing-label {
    width: min(276px, calc(100vw - 28px));
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .pricing-social-proof {
    margin-bottom: 20px;
  }

  .pricing-controls {
    gap: 20px;
  }

  .promise-mixed {
    animation-name: promiseKerningMobile;
  }
}

@keyframes promiseKerningMobile {
  0%, 100% { letter-spacing: 0; }
  50% { letter-spacing: 0.035em; }
}

@media (prefers-reduced-motion: reduce) {
  .promise-focus::before,
  .promise-pacing::before,
  .promise-mixed,
  .promise-more {
    animation: none;
  }

  .promise-focus::before {
    width: 100%;
    transform: none;
  }
}

/* Hero experiment and proof-line wrapping refinements. */
[data-hero-experiment][hidden] {
  display: none !important;
}

@media (min-width: 520px) {
  .hero .hero-social-proof {
    width: max-content;
    max-width: none;
    flex-wrap: nowrap;
  }

  .hero .hero-social-proof p {
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
  }
}

.hero-copy-alternative {
  max-width: 660px;
}

.hero-copy-alternative h1 {
  max-width: 650px;
  font-size: clamp(3rem, 5.25vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-alt-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: #60a5fa;
  font-size: 1rem;
  font-weight: 850;
}

.hero-alt-kicker > span {
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: #60a5fa;
}

.hero-copy-alternative .hero-lede {
  max-width: 560px;
  margin-bottom: 28px;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.hero-copy-alternative .hero-alt-proof {
  margin-bottom: 28px;
}

.hero-alt-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  width: min(100%, 560px);
  margin-bottom: 22px;
}

.hero-alt-actions .button {
  min-height: 58px;
  padding-inline: 18px;
  border-radius: 8px;
}

.hero-install-button,
.hero-watch-button {
  gap: 10px;
}

.hero-chrome-mark {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background:
    radial-gradient(circle, #4285f4 0 24%, #ffffff 25% 31%, transparent 32%),
    conic-gradient(#ea4335 0 33%, #fbbc05 0 66%, #34a853 0);
}

.hero-watch-button > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
}

.hero-alt-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0 0 24px;
  color: #cbd5e1;
  font-size: 0.88rem;
}

.hero-alt-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-alt-trust i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid #93c5fd;
  border-radius: 50%;
  color: #93c5fd;
  font-size: 0.7rem;
  font-style: normal;
}

.hero-copy-alternative .price-note {
  display: block;
  font-size: 0.95rem;
}

.pricing-custom-sentence {
  display: inline-block;
  white-space: nowrap;
}

.pricing-social-proof {
  gap: 7px;
}

.pricing-proof-avatars {
  padding: 0;
}

.pricing-proof-avatars > span {
  border-color: transparent;
  box-shadow: none;
}

@media (max-width: 519px) {
  .hero-copy-alternative h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: 1.07;
  }

  .hero-alt-kicker {
    margin-bottom: 22px;
    font-size: 0.92rem;
  }

  .hero-alt-actions {
    grid-template-columns: 1fr;
  }

  .hero-alt-actions .button {
    width: 100%;
  }

  .pricing-custom-sentence {
    white-space: normal;
  }
}

/* Final hero experiment polish: scoped to the hero variants only. */
.hero .hero-copy .hero-lede,
.hero .hero-copy .price-note,
.hero-copy-alternative .hero-alt-trust {
  color: #b8c8e1;
}

.hero .hero-copy .price-note b {
  color: #5eead4;
}

.hero-copy-alternative h1 {
  max-width: 650px;
  font-size: clamp(2.75rem, 4.1vw, 4rem);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.hero-copy-alternative .hero-lede {
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  line-height: 1.68;
}

.hero-copy-alternative .hero-alt-proof {
  gap: 14px;
}

.hero-copy-alternative .hero-alt-proof p {
  font-size: clamp(0.94rem, 1.22vw, 1.06rem);
}

.hero-copy-alternative .hero-alt-proof .hero-proof-avatars > span {
  width: 41px;
  height: 41px;
  margin-left: -9px;
  background-size: 246px 105px;
}

.hero-copy-alternative .hero-alt-proof .hero-proof-avatars > span:first-child {
  margin-left: 0;
  background-position: -12px -31px;
}

.hero-copy-alternative .hero-alt-proof .hero-proof-avatars > span:nth-child(2) {
  background-position: -49px -31px;
}

.hero-copy-alternative .hero-alt-proof .hero-proof-avatars > span:nth-child(3) {
  background-position: -85px -31px;
}

.hero-copy-alternative .hero-alt-proof .hero-proof-avatars > span:nth-child(4) {
  background-position: -122px -31px;
}

.hero-alt-actions {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  width: min(100%, 620px);
  gap: 12px;
}

.hero-alt-actions .button {
  min-width: 0;
  padding-inline: 15px;
  white-space: nowrap;
  flex-wrap: nowrap;
  font-size: clamp(0.88rem, 1.08vw, 1rem);
  font-weight: 820;
}

.hero-chrome-mark {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

.hero-watch-button .hero-play-mark {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.hero-watch-button .hero-play-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translate(-35%, -50%);
}

.hero-alt-trust {
  font-size: 0.92rem;
}

.hero-alt-trust .hero-trust-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 0;
  border-radius: 0;
  color: #93c5fd;
}

.hero-alt-trust .hero-trust-icon.is-shield::before {
  content: "";
  position: absolute;
  inset: 1px 2px;
  background: currentColor;
  clip-path: polygon(50% 0, 92% 18%, 84% 68%, 50% 100%, 16% 68%, 8% 18%);
}

.hero-alt-trust .hero-trust-icon.is-shield::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #0a1629;
  border-left: 2px solid #0a1629;
  transform: rotate(-45deg);
}

.hero-alt-trust .hero-trust-icon.is-globe {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.hero-alt-trust .hero-trust-icon.is-globe::before {
  content: "";
  position: absolute;
  inset: 2px 6px;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
}

.hero-alt-trust .hero-trust-icon.is-globe::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 2px;
  left: 2px;
  border-top: 1px solid currentColor;
}

.hero-copy-alternative .price-note {
  color: #b8c8e1;
  font-size: 1rem;
}

@media (max-width: 620px) {
  .hero-copy-alternative h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.35rem);
    line-height: 1.1;
  }

  .hero-alt-actions {
    grid-template-columns: 1fr;
  }

  .hero-alt-actions .button {
    width: 100%;
  }
}

/* Shared hero kicker switch and responsive proof copy. */
.hero-kicker-switch {
  display: grid;
  grid-template-columns: 38px minmax(0, auto);
  align-items: start;
  gap: 14px;
  width: min(100%, 690px);
  min-height: 58px;
  margin: 0 0 28px;
  color: #60a5fa;
}

.hero-kicker-rule {
  width: 38px;
  height: 2px;
  margin-top: 0.78em;
  border-radius: 999px;
  background: #60a5fa;
}

.hero-kicker-content {
  min-width: 0;
  line-height: 1.62;
}

.hero-kicker-calm,
.hero-kicker-switch .hero-promise-concept {
  display: inline;
  margin: 0 !important;
  color: #60a5fa;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.62;
}

[data-hero-kicker-mode][hidden] {
  display: none !important;
}

.hero-kicker-switch .hero-promise-concept {
  width: auto !important;
  max-width: 100%;
}

.hero-kicker-switch .hero-promise-concept::before {
  content: none !important;
}

.hero-kicker-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin: 0 0 0 10px;
  padding: 3px 9px;
  border: 1px solid rgba(147, 197, 253, 0.32);
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.12);
  color: #93c5fd;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0.015em;
  white-space: nowrap;
  vertical-align: 0.12em;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.hero-kicker-toggle:hover,
.hero-kicker-toggle:focus-visible {
  border-color: rgba(147, 197, 253, 0.68);
  background: rgba(96, 165, 250, 0.18);
  color: #dbeafe;
}

.hero-kicker-toggle:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

.hero-proof-mobile {
  display: none;
}

.hero .hero-social-proof p {
  color: #b8c8e1;
}

.hero .hero-social-proof strong {
  font-size: 1.2em;
}

@media (max-width: 519px) {
  .hero-kicker-switch {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    min-height: 76px;
    margin-bottom: 22px;
  }

  .hero-kicker-rule {
    width: 30px;
  }

  .hero-kicker-calm,
  .hero-kicker-switch .hero-promise-concept {
    font-size: 0.92rem;
  }

  .hero-proof-desktop {
    display: none;
  }

  .hero-proof-mobile {
    display: inline;
  }
}
