:root {
  --ink: #160f35;
  --muted: #5f5875;
  --soft: #fbf8ff;
  --paper: #ffffff;
  --line: #e8def8;
  --purple: #6a3fd4;
  --purple-dark: #321472;
  --purple-soft: #efe7ff;
  --teal: #187f86;
  --green: #5e9f6b;
  --gold: #d99b32;
  --shadow: 0 22px 60px rgba(48, 22, 103, 0.16);
  --soft-shadow: 0 12px 34px rgba(48, 22, 103, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--soft);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(106, 63, 212, 0.14);
  box-shadow: 0 8px 22px rgba(48, 22, 103, 0.06);
}

.nav-shell {
  width: min(1260px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand {
  width: 238px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.brand strong,
.footer-logo strong {
  display: block;
  color: var(--purple-dark);
  font-size: 1.16rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand small,
.footer-logo small {
  display: block;
  margin-top: 5px;
  color: var(--purple);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header .brand strong,
.site-header .brand small {
  color: var(--purple-dark);
}

.brand small {
  display: none;
}

.nav-links,
.nav-actions,
.hero-actions,
.badge-strip {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 30px;
  font-weight: 700;
  color: #211344;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover,
.signin:hover {
  color: var(--purple);
}

.nav-actions {
  gap: 14px;
  font-weight: 700;
}

.signin {
  color: var(--muted);
}

.site-header .button {
  background: linear-gradient(135deg, #7b53e6, #5630bd);
  color: #fff;
  box-shadow: 0 12px 26px rgba(92, 54, 198, 0.24);
}

.agency-home main .button {
  border-color: #d8620b;
  background: linear-gradient(135deg, #f39a35, #d8620b);
  color: #fff;
  box-shadow: 0 14px 30px rgba(203, 85, 8, 0.28);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, #7b53e6, #5630bd);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(92, 54, 198, 0.27);
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
}

.button-ghost {
  color: var(--purple);
  border-color: #cdbcf5;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.button-light {
  background: #fff;
  color: var(--purple-dark);
  box-shadow: 0 14px 28px rgba(9, 4, 33, 0.22);
}

.button-dark-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(251, 248, 255, 0.62)),
    url("static/background.png");
  background-position: center top, center center;
  background-size: auto, 100% 100%;
  background-repeat: no-repeat, no-repeat;
}

.hero.section-soft {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.34) 34%, rgba(255, 255, 255, 0.1) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(251, 248, 255, 0.12)),
    url("static/hero-journal-insight.png");
  background-position: center center, center center, center center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
}

.hero {
  min-height: 680px;
  padding: 38px 0 42px;
  display: flex;
  align-items: flex-start;
}

.hero-grid,
.split-grid,
.ai-grid {
  display: grid;
  align-items: center;
  gap: 56px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  gap: 42px;
}

.hero .hero-grid {
  display: block;
}

.hero-copy {
  max-width: 660px;
  padding: 18px 0 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.help-search-panel {
  max-width: 840px;
  margin: 34px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.help-search-panel label {
  display: block;
  margin-bottom: 10px;
  color: var(--purple-dark);
  font-weight: 800;
}

.help-search-panel input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #d9ccef;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.help-search-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.help-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.help-topic-card {
  min-height: 280px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.help-topic-card:hover {
  transform: translateY(-3px);
  border-color: #c7b4f2;
  box-shadow: 0 18px 42px rgba(48, 22, 103, 0.14);
}

.help-topic-card img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  margin-bottom: 14px;
}

.help-topic-card span,
.help-breadcrumb {
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.help-topic-card h2 {
  margin: 4px 0 8px;
  color: var(--purple-dark);
  font-size: 1.18rem;
  line-height: 1.22;
}

.help-topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.help-article-hero {
  padding-bottom: 48px;
}

.help-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.help-breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
}

.help-article-title h1 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.help-article-title p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.help-screenshot-frame {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.help-screenshot-frame img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 8px;
}

.help-screenshot-frame figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.troubleshooting-faq-menu {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.troubleshooting-faq-menu .eyebrow {
  margin-bottom: 14px;
}

.troubleshooting-faq-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.troubleshooting-faq-links a {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(106, 63, 212, 0.18);
  border-radius: 8px;
  background: rgba(250, 247, 255, 0.82);
  color: var(--purple-dark);
  font-weight: 800;
  line-height: 1.25;
}

.troubleshooting-faq-links a:hover,
.troubleshooting-faq-links a:focus-visible {
  border-color: rgba(106, 63, 212, 0.42);
  background: #fff;
  color: var(--purple);
  box-shadow: 0 14px 30px rgba(48, 22, 103, 0.1);
}

.help-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.help-article-nav {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.help-article-nav a {
  display: block;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid #eadff9;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.help-article-nav a:hover {
  color: var(--purple);
}

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

.help-article-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.help-article-card h2 {
  margin: 0 0 14px;
  color: var(--purple-dark);
  font-size: 1.72rem;
  line-height: 1.18;
}

.help-article-card h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.help-article-card p {
  color: var(--muted);
}

.help-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.help-field-card {
  padding: 16px;
  border: 1px solid #eadff9;
  border-radius: 8px;
  background: #fff;
}

.help-field-card h3 {
  margin: 0 0 6px;
  color: var(--purple-dark);
}

.help-field-card p {
  margin: 0 0 10px;
}

.help-field-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.help-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.help-badge.required {
  color: #583719;
  background: #fff0d9;
  border: 1px solid #ffd39a;
}

.help-badge.optional {
  color: #4e3d82;
  background: var(--purple-soft);
  border: 1px solid #d9c8fb;
}

.help-badge.auto {
  color: #2f6b3e;
  background: #eaf7ec;
  border: 1px solid #c9e8cf;
}

.help-note {
  padding: 16px 18px;
  border-left: 4px solid var(--purple);
  border-radius: 8px;
  background: #f1eafe;
  color: var(--purple-dark);
}

.help-warning {
  border-left-color: var(--gold);
  background: #fff7e9;
  color: #5e4215;
}

.help-steps {
  padding-left: 20px;
}

.help-steps li {
  margin-bottom: 10px;
  color: var(--muted);
}

.help-walkthrough {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0;
  counter-reset: walkthrough;
  list-style: none;
}

.help-walkthrough li {
  position: relative;
  min-height: 44px;
  padding: 13px 16px 13px 58px;
  border: 1px solid #eadff9;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.help-walkthrough li::before {
  counter-increment: walkthrough;
  content: counter(walkthrough);
  position: absolute;
  left: 16px;
  top: 12px;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-weight: 900;
}

.help-walkthrough strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.help-steps a,
.help-article-card a {
  color: var(--purple);
  font-weight: 800;
}

.help-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.help-mini-shot {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.help-mini-shot img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.help-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.help-related-grid a {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--purple-dark);
  font-weight: 800;
}

.help-form-screen {
  margin: 18px 0;
  border: 1px solid #ded3f2;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(48, 22, 103, 0.08);
}

.help-form-screen-header {
  padding: 12px 16px;
  border-bottom: 1px solid #eadff9;
  background: #fbf8ff;
  color: var(--purple-dark);
  font-weight: 800;
}

.help-form-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 110px;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid #f0e9fb;
  color: var(--muted);
}

.help-form-row:last-child {
  border-bottom: 0;
}

.help-form-row strong {
  color: var(--ink);
}

.help-form-row span:last-child {
  color: var(--purple);
  font-weight: 800;
}

.help-screen-walkthrough {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 22px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.help-screen-walkthrough img {
  display: block;
  width: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 8px;
}

.help-screen-callouts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-screen-callouts li {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 14px 14px 14px 52px;
  border: 1px solid #eadff9;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.help-screen-callouts span {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-weight: 900;
  line-height: 1;
}

.help-screen-callouts strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.35;
}

.help-page-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.help-settings-mock {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e5d9f8;
  border-radius: 8px;
  background: #fbf8ff;
}

.help-settings-mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid #eadff9;
  border-radius: 8px;
  background: #fff;
}

.help-settings-mock-title {
  color: var(--ink);
  font-weight: 900;
}

.help-settings-cog {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7c7f4;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 1.35rem;
  font-weight: 900;
}

.help-settings-mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.help-settings-mock-card {
  padding: 14px;
  border: 1px solid #eadff9;
  border-radius: 8px;
  background: #fff;
}

.help-settings-mock-card strong {
  display: block;
  color: var(--purple-dark);
  font-size: 0.95rem;
}

.help-settings-mock-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.help-settings-mock-card.highlight {
  border-color: #cdbcf5;
  background: #f1eafe;
}

@media (max-width: 1060px) {
  .help-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-article-grid,
  .help-article-layout {
    grid-template-columns: 1fr;
  }

  .help-article-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .help-article-nav a {
    padding: 4px 0;
  }
}

@media (max-width: 720px) {
  .help-topic-grid,
  .help-field-grid,
  .help-two-col,
  .help-related-grid {
    grid-template-columns: 1fr;
  }

  .help-form-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .help-screen-walkthrough {
    grid-template-columns: 1fr;
  }

  .help-settings-mock-grid {
    grid-template-columns: 1fr;
  }

  .help-topic-card {
    min-height: auto;
  }

  .help-article-card,
  .help-search-panel {
    padding: 20px;
  }

  .help-mini-shot {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .help-mini-shot img {
    width: 74px;
    height: 74px;
  }
}

/* CRO agency homepage variant */
.agency-home {
  background: #fbf8ff;
}

.agency-home .agency-brand {
  width: 126px;
  justify-content: flex-start;
  gap: 0;
}

.agency-home .agency-brand img {
  width: 112px;
  max-height: none;
  height: auto;
  object-fit: contain;
}

.agency-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 76px 0 68px;
  background:
    radial-gradient(circle at 77% 38%, rgba(223, 208, 255, 0.56), transparent 31%),
    linear-gradient(135deg, #fffdfd 0%, #fbf7ff 48%, #f3ecff 100%);
}

.agency-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 13% 18%, rgba(246, 215, 255, 0.4), transparent 27%),
    radial-gradient(circle at 49% 91%, rgba(255, 241, 207, 0.52), transparent 23%);
  opacity: 0.8;
  pointer-events: none;
}

.agency-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  gap: 58px;
  align-items: center;
}

.agency-hero-copy {
  max-width: 650px;
}

.agency-hero h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 3.5vw, 3.85rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.agency-hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--purple);
}

.agency-hero .hero-lede {
  max-width: 610px;
  margin: 0;
  color: #3f345f;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.65;
}

.agency-hero .hero-lede strong {
  font-weight: 550;
}

.agency-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.hero-beta-cta {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(92, 54, 198, 0.25);
}

.hero-beta-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5c5275;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-beta-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7b53e6;
  box-shadow: 0 0 0 5px rgba(123, 83, 230, 0.12);
}

.hero-confirmations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 34px;
}

.hero-confirmations > div {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 82px;
  padding: 0 18px;
  color: #30254f;
  text-align: center;
}

.hero-confirmations > div + div {
  border-left: 1px solid rgba(106, 63, 212, 0.18);
}

.hero-confirmations svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #7650d1;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-confirmations span {
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.3;
}

@media (min-width: 761px) {
  .hero-confirmations {
    transform: translateX(-52px);
  }
}

.agency-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
}

.journal-scene-card {
  position: relative;
  width: min(100%, 580px);
  min-height: 490px;
  padding: 0;
}

.journal-scene-card::before {
  content: none;
}

.journal-book-pair {
  position: relative;
  min-height: 490px;
}

.journal-book-pair img {
  position: absolute;
  filter: drop-shadow(0 20px 24px rgba(55, 31, 94, 0.28));
}

.journal-book-pair .journal-front {
  left: 0;
  top: 48px;
  width: clamp(270px, 18vw, 330px);
  z-index: 2;
  transform: rotate(-2deg);
}

.journal-book-pair .journal-back {
  left: clamp(290px, 20vw, 340px);
  top: 104px;
  width: clamp(185px, 12.5vw, 230px);
  z-index: 1;
  transform: rotate(2deg);
}

.journal-scene-note {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 3px;
  width: fit-content;
  max-width: 100%;
  margin: 8px 0 0 52px;
  padding: 14px 18px;
  border: 1px solid rgba(205, 188, 245, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  text-align: center;
  box-shadow: 0 14px 28px rgba(48, 22, 103, 0.1);
}

.journal-scene-note strong {
  color: var(--purple-dark);
}

.record-gap-section {
  padding-top: 58px;
  background:
    linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
}

.record-gap-panel {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(224, 212, 246, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 255, 0.92));
  box-shadow: 0 24px 70px rgba(48, 22, 103, 0.11);
}

.record-path {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 70px minmax(280px, 1fr);
  gap: clamp(14px, 3vw, 34px);
  align-items: start;
  margin-top: 38px;
}

.record-path::before {
  content: none;
}

.record-path article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 126px;
  padding: 6px 6px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  text-align: center;
}

.record-fragments {
  display: grid;
  justify-items: center;
  grid-template-rows: auto minmax(360px, auto);
  gap: 12px;
  align-items: end;
}

.record-flow-label {
  grid-column: 1 / -1;
  margin: 0 0 -2px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-flow-arrow {
  position: relative;
  align-self: start;
  margin-top: 178px;
  width: 74px;
  height: 48px;
  opacity: 0.82;
}

.fragmented-jigsaw-image {
  display: block;
  width: min(100%, 480px);
  height: auto;
  align-self: end;
  margin: 0 auto;
  filter: drop-shadow(0 20px 28px rgba(48, 22, 103, 0.12));
}

.record-flow-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(106, 63, 212, 0.2), rgba(106, 63, 212, 0.76));
  transform: translateY(-50%);
}

.record-flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 28px;
  height: 28px;
  border-top: 3px solid rgba(106, 63, 212, 0.76);
  border-right: 3px solid rgba(106, 63, 212, 0.76);
  transform: translateY(-50%) rotate(45deg);
}

.record-path span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--purple);
  font-weight: 900;
  filter: drop-shadow(0 12px 18px rgba(48, 22, 103, 0.12));
}

.record-path .puzzle-piece {
  position: relative;
}

.record-path .puzzle-piece::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  background: url("static/images/jigsaw-piece-a.svg?v=cro-agency-86") center / contain no-repeat;
}

.record-path .puzzle-piece::after {
  content: "";
  position: absolute;
  inset: 9px 12px 13px;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(132, 96, 190, 0.14), rgba(132, 96, 190, 0));
  opacity: 0.9;
}

.record-path article:nth-child(1) .puzzle-piece {
  background-image: none;
}

.record-fragments article:nth-child(2) .puzzle-piece::before {
  background-image: url("static/images/jigsaw-piece-a.svg?v=cro-agency-86");
}

.record-fragments article:nth-child(3) .puzzle-piece::before {
  background-image: url("static/images/jigsaw-piece-b.svg?v=cro-agency-86");
}

.record-fragments article:nth-child(4) .puzzle-piece::before {
  background-image: url("static/images/jigsaw-piece-c.svg?v=cro-agency-86");
}

.record-fragments article:nth-child(5) .puzzle-piece::before {
  background-image: url("static/images/jigsaw-piece-d.svg?v=cro-agency-86");
}

.record-fragments article:nth-child(6) .puzzle-piece::before {
  background-image: url("static/images/jigsaw-piece-e.svg?v=cro-agency-86");
}

.record-fragments article:nth-child(7) .puzzle-piece::before {
  background-image: url("static/images/jigsaw-piece-f.svg?v=cro-agency-86");
}

.record-fragments article:nth-child(8) .puzzle-piece::before {
  background-image: url("static/images/jigsaw-piece-g.svg?v=cro-agency-86");
}

.record-fragments article:nth-child(3) .puzzle-piece {
  transform: rotate(90deg);
}

.record-fragments article:nth-child(3) .puzzle-piece svg {
  transform: rotate(-90deg);
}

.record-fragments article:nth-child(4) .puzzle-piece {
  transform: rotate(180deg);
}

.record-fragments article:nth-child(4) .puzzle-piece svg {
  transform: rotate(-180deg);
}

.record-fragments article:nth-child(5) .puzzle-piece {
  transform: rotate(270deg);
}

.record-fragments article:nth-child(5) .puzzle-piece svg {
  transform: rotate(-270deg);
}

.record-fragments article:nth-child(6) .puzzle-piece {
  transform: rotate(8deg);
}

.record-fragments article:nth-child(6) .puzzle-piece svg {
  transform: rotate(-8deg);
}

.record-fragments article:nth-child(7) .puzzle-piece {
  transform: rotate(-6deg);
}

.record-fragments article:nth-child(7) .puzzle-piece svg {
  transform: rotate(6deg);
}

.record-fragments article:nth-child(8) .puzzle-piece {
  transform: rotate(5deg);
}

.record-fragments article:nth-child(8) .puzzle-piece svg {
  transform: rotate(-5deg);
}

.record-path svg {
  position: relative;
  z-index: 1;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.record-path h3 {
  max-width: 150px;
  margin: 0;
  color: #44355f;
  font-size: 0.88rem;
  line-height: 1.2;
}

.record-path .record-you span {
  width: 102px;
  height: 82px;
  margin-top: -3px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.record-path .record-you {
  display: grid;
  grid-template-rows: auto minmax(360px, auto) auto;
  justify-items: center;
  align-items: end;
  min-height: auto;
  padding: 0;
  background: radial-gradient(circle at 50% 42%, rgba(132, 96, 190, 0.14), rgba(132, 96, 190, 0) 66%);
  border: 0;
}

.journal-puzzle-lockup {
  position: relative;
  width: min(330px, 100%);
  aspect-ratio: 0.79;
  align-self: end;
  margin: 0 auto 6px;
  filter: drop-shadow(0 18px 28px rgba(48, 22, 103, 0.18));
}

.journal-puzzle-lockup img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.complete-puzzle {
  display: block !important;
  background: url("static/images/completed-jigsaw.svg?v=cro-agency-86") center / contain no-repeat !important;
  filter: drop-shadow(0 16px 22px rgba(86, 48, 189, 0.22));
}

.record-fragments h3,
.record-path .record-you h3 {
  width: min(100%, 340px);
  max-width: 340px;
  min-height: 76px;
  display: grid;
  align-items: start;
  justify-items: center;
  margin: 0 auto;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.24vw, 1.22rem);
  line-height: 1.18;
  font-weight: 800;
  text-align: center;
}

.record-gap-line {
  max-width: 720px;
  margin: 40px auto 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.keep-question {
  color: var(--purple);
  white-space: nowrap;
}

.agency-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.agency-benefit-grid article,
.journey-grid a {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.agency-benefit-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -50px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: rgba(239, 231, 255, 0.9);
}

.benefit-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eef8f1;
  color: #237a43;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(35, 122, 67, 0.14);
}

.agency-benefit-grid h3,
.journey-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: var(--purple-dark);
  font-size: 1.16rem;
  line-height: 1.2;
}

.agency-benefit-grid p,
.journey-grid span {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.agency-product-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 52px;
  align-items: center;
  margin-top: 72px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(224, 212, 246, 0.92);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 246, 222, 0.78), transparent 26%),
    #fff;
  box-shadow: 0 24px 70px rgba(48, 22, 103, 0.1);
}

.agency-product-proof p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.agency-device-stack {
  position: relative;
  min-height: 390px;
}

.agency-device-stack .tablet-frame {
  width: min(100%, 640px);
}

.agency-phone-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(30%, 158px);
  padding: 10px;
  border: 1px solid rgba(205, 188, 245, 0.88);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(48, 22, 103, 0.18);
}

.agency-phone-card img {
  width: 100%;
  border-radius: 18px;
}

.agency-share-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 58px;
  align-items: center;
}

.agency-share-grid > div:first-child {
  max-width: 610px;
}

.agency-share-grid p {
  color: var(--muted);
}

.agency-share-note {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(205, 188, 245, 0.8);
  border-radius: 8px;
  background: #fbf8ff;
}

.agency-share-note strong {
  color: var(--purple-dark);
}

.agency-share-note span {
  color: var(--muted);
}

.share-journal-stage {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(224, 212, 246, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 58% 40%, rgba(255, 246, 222, 0.72), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 255, 0.92));
  box-shadow: var(--soft-shadow);
}

.share-journal-stage img {
  position: absolute;
  top: 44px;
  width: min(43%, 250px);
  filter: drop-shadow(0 22px 28px rgba(55, 31, 94, 0.18));
}

.share-journal-stage img:first-child {
  left: 7%;
  z-index: 2;
  transform: rotate(-2deg);
}

.share-journal-stage img:last-child {
  right: 8%;
  z-index: 1;
  transform: rotate(2deg);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.journey-grid a {
  display: block;
  min-height: 210px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.journey-grid a:hover,
.journey-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: #c7b4f2;
  box-shadow: 0 18px 42px rgba(48, 22, 103, 0.14);
}

.journey-kicker {
  display: block;
  margin-bottom: 16px !important;
  color: var(--purple) !important;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agency-feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid rgba(224, 212, 246, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.agency-feature-showcase figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fbf8ff;
}

.agency-feature-showcase img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
}

.agency-feature-showcase div {
  padding: 16px;
}

.agency-feature-showcase h3 {
  margin-bottom: 12px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.agency-feature-showcase p {
  color: var(--muted);
}

/* Health-story landing page narrative */
.story-definition-section,
.story-timeline-section,
.ownership-section,
.community-section,
.story-faq-section {
  background: #fff;
}

.story-definition-grid,
.story-timeline-grid,
.ownership-grid,
.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.story-intro h2,
.story-timeline-grid h2,
.ownership-heading h2,
.collaboration-grid h2,
.community-inner h2,
.legacy-inner h2,
.final-beta-inner h2,
.story-faq-section h2 {
  margin: 0 0 22px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.story-intro p,
.story-timeline-grid > div > p,
.ownership-heading p,
.collaboration-grid > div > p,
.community-lede,
.legacy-inner > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.story-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.story-equation div {
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fcfaff;
  box-shadow: 0 10px 28px rgba(48, 22, 103, 0.07);
}

.story-equation strong,
.story-equation span,
.timeline-moments strong,
.timeline-moments span,
.community-flow strong,
.community-flow span,
.legacy-values strong {
  display: block;
}

.story-equation strong { color: var(--purple-dark); }
.story-equation span { margin-top: 5px; color: var(--muted); font-size: 0.82rem; }
.story-equation b { color: var(--purple); font-size: 1.5rem; text-align: center; }
.story-equation i { color: var(--gold); font-size: 1.8rem; font-style: normal; text-align: center; }
.story-equation .story-equation-result { border-color: #bea7ef; background: var(--purple-soft); }

.story-definition-section .story-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story-definition-section .story-intro h2 {
  font-size: clamp(2.1rem, 3.15vw, 3.35rem);
}

.story-definition-section .story-intro p {
  max-width: 700px;
  margin-inline: auto;
}

.story-definition-section .story-intro p:last-child {
  margin-bottom: 0;
}

.story-convergence {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(260px, 0.72fr);
  grid-template-areas:
    "streams join result"
    "time time time";
  gap: 34px 0;
  align-items: center;
  margin-top: 64px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(211, 196, 240, 0.8);
  border-radius: 20px;
  background:
    radial-gradient(circle at 91% 40%, rgba(224, 209, 255, 0.55), transparent 29%),
    linear-gradient(145deg, #fff, #fbf8ff);
  box-shadow: 0 20px 55px rgba(48, 22, 103, 0.08);
}

.story-streams {
  grid-area: streams;
  display: grid;
  gap: 18px;
}

.story-streams article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  align-items: start;
  padding: 17px 0;
}

.story-streams article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #c6b2ee;
  border-radius: 50%;
  color: var(--purple);
  font-size: 0.69rem;
  font-weight: 900;
}

.story-streams strong {
  display: block;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.15;
}

.story-streams small {
  display: block;
  max-width: 470px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.story-join {
  grid-area: join;
  position: relative;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  align-self: stretch;
  min-height: 258px;
}

.story-join::after {
  content: "";
  position: absolute;
  top: 16.5%;
  right: 0;
  bottom: 16.5%;
  width: 50%;
  border: solid #b7a0e8;
  border-width: 1px 0 1px 1px;
  border-radius: 18px 0 0 18px;
}

.story-join i {
  position: relative;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 160, 232, 0.2), #b7a0e8);
}

.story-join i:nth-child(2)::after {
  content: "";
  position: absolute;
  right: -7px;
  top: -4px;
  border: solid transparent;
  border-width: 4px 0 4px 7px;
  border-left-color: #8663d2;
}

.story-result {
  grid-area: result;
  position: relative;
  z-index: 1;
  padding: 38px 28px;
  border: 1px solid #bda5ee;
  border-radius: 16px;
  background: rgba(239, 231, 255, 0.92);
  text-align: center;
  box-shadow: 0 18px 38px rgba(80, 42, 157, 0.13);
}

.story-result span,
.story-result strong,
.story-result small {
  display: block;
}

.story-result span {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-result strong {
  margin-top: 12px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  line-height: 1.02;
}

.story-result small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.story-time-thread {
  grid-area: time;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 20px;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(183, 160, 232, 0.45);
}

.story-time-thread > strong {
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.story-time-thread > div {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: #6c5e82;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-time-thread i {
  position: relative;
  height: 1px;
  background: #a98de5;
}

.story-time-thread i::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a98de5;
}

.story-time-thread p {
  grid-column: 2;
  margin: 0;
  color: #827792;
  font-size: 0.75rem;
}

.story-concept-art {
  overflow: hidden;
  width: min(100%, 1220px);
  margin: 10px auto 0;
  border-radius: 22px;
}

.story-concept-art img {
  width: 100%;
  max-width: none;
}

.reflection-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #d8c8f1;
  border-bottom: 1px solid #e1d6f4;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.8), transparent 25%),
    linear-gradient(180deg, #eee5ff 0%, #f8f4ff 100%);
  box-shadow: inset 0 20px 45px rgba(86, 48, 160, 0.04);
}

.reflection-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(460px, 60%);
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #8d68da, transparent);
}

.reflection-journey {
  position: relative;
  margin-top: 44px;
}

.reflection-thread {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: visible;
}

.reflection-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reflection-path::before {
  content: none;
}

.reflection-path li {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.reflection-path li:nth-child(odd) {
  padding-top: 35px;
}

.reflection-path li:nth-child(even) {
  padding-top: 5px;
}

.reflection-path li > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border: 2px solid #a98de5;
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 7px 18px rgba(87, 48, 167, 0.12);
}
.reflection-path h3 { margin: 18px 0 10px; color: var(--purple-dark); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.reflection-path p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.reflection-closing {
  max-width: 760px;
  margin: 52px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(142, 104, 219, 0.24);
  color: #493b66;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.45;
  text-align: center;
}

.timeline-moments { display: grid; gap: 20px; margin-top: 34px; }
.timeline-moments div { padding-left: 20px; border-left: 3px solid #a98de5; }
.timeline-moments strong { color: var(--purple-dark); }
.timeline-moments span { color: var(--muted); font-size: 0.92rem; }
.timeline-device { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #f7f2ff; box-shadow: var(--shadow); transform: rotate(1deg); }
.timeline-device img { width: 100%; border-radius: 10px; }

.story-timeline-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2d7f5;
  background:
    radial-gradient(circle at 50% 48%, rgba(220, 205, 250, 0.35), transparent 42%),
    linear-gradient(180deg, #fff 0%, #f8f4ff 100%);
}

.story-timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 70%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #b79fe9, transparent);
}

.story-timeline-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.story-timeline-heading h2 {
  margin: 0 0 20px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.story-timeline-heading > p:last-child {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.timeline-product-stage {
  width: min(1280px, calc(100% + 80px));
  margin: 52px -40px 0;
}

.timeline-product-scroll {
  overflow: hidden;
  padding: 12px;
  border: 1px solid #d7c9ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(48, 22, 103, 0.15);
}

.timeline-product-scroll img {
  width: 100%;
  border-radius: 9px;
}

.timeline-scroll-hint {
  display: none;
}

.timeline-captions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  margin-top: 50px;
  padding-top: 25px;
}

.timeline-captions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #c6b3ec, #9b78df 70%, #7048cb);
}

.timeline-captions::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  border: solid transparent;
  border-width: 5px 0 5px 9px;
  border-left-color: #7048cb;
}

.timeline-captions span,
.timeline-captions strong {
  display: block;
}

.timeline-captions span {
  color: #8b70c7;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline-captions strong {
  margin-top: 8px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.timeline-captions p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.story-pieces-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 52px; align-items: center; margin-top: 48px; }
.story-pieces-list { display: flex; flex-wrap: wrap; gap: 10px; }
.story-pieces-list span { padding: 10px 14px; border: 1px solid #d7c7f3; border-radius: 999px; background: rgba(255,255,255,.75); color: #433464; font-size: 0.87rem; font-weight: 700; }
.story-detail-shot { margin: 0; padding: 14px; border-radius: 16px; background: #fff; box-shadow: var(--soft-shadow); }

.story-pieces-section {
  background:
    radial-gradient(circle at 20% 45%, rgba(226, 214, 252, 0.48), transparent 30%),
    linear-gradient(180deg, #f8f4ff 0%, #fff 100%);
}

.story-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 300px 270px 235px;
  gap: 18px;
  margin-top: 54px;
}

.story-piece {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ddd1f1;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(48, 22, 103, 0.09);
}

.story-piece > div {
  position: relative;
  min-height: 0;
  flex: 1;
  overflow: hidden;
  background: #fdfaff;
}

.story-piece img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-piece img[src*="static/images/index2-"] {
  right: auto;
  bottom: auto;
  padding: 0;
  height: auto;
  object-fit: initial;
  object-position: left top;
  transform: none;
}

.story-piece-medication img[src*="static/images/index2-"] {
  top: auto;
  bottom: 0;
  left: 0;
  width: 140%;
  max-width: none;
  height: auto;
}

.story-piece figcaption {
  position: relative;
  z-index: 1;
  padding: 14px 17px 15px;
  border-top: 1px solid #e8dff5;
  background: rgba(255, 255, 255, 0.97);
}

.story-piece figcaption strong,
.story-piece figcaption span {
  display: block;
}

.story-piece figcaption strong {
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.15;
}

.story-piece figcaption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.story-piece-conditions { grid-column: 1 / 8; grid-row: 1; }
.story-piece-journal { grid-column: 8 / 13; grid-row: 1 / 3; }
.story-piece-daily { grid-column: 1 / 5; grid-row: 2; }
.story-piece-medication { grid-column: 5 / 8; grid-row: 2; }
.story-piece-life { grid-column: 1 / 7; grid-row: 3; }
.story-piece-surgery { grid-column: 7 / 13; grid-row: 3; }

.story-piece-conditions img { object-position: center 18%; }
.story-piece-journal img { object-position: center 31%; }
.story-piece-daily img { object-position: center 28%; }
.story-piece-medication img { object-position: center 25%; }
.story-piece-life img { object-position: 72% 26%; }
.story-piece-surgery img { object-position: 76% 30%; }

.story-chapters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.story-chapters span {
  padding: 6px 10px;
  border: 0;
  border-radius: 8px;
  background: rgba(106, 63, 212, 0.06);
  color: #54456f;
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-story-chapter {
  display: none;
}

.story-pieces-closing {
  margin: 36px 0 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  text-align: center;
}

.ownership-section { background: var(--purple-dark); color: #fff; }
.ownership-grid { grid-template-columns: .8fr 1.2fr; }
.ownership-heading { align-self: start; }
.ownership-heading h2, .ownership-heading .eyebrow { color: #fff; }
.ownership-heading p { color: rgba(255,255,255,.78); }
.ownership-heading .ownership-agency {
  max-width: 28rem;
  margin-top: 20px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.5;
}
.ownership-principles { display: grid; grid-template-columns: repeat(2, 1fr); }
.ownership-principles article { padding: 14px 18px 18px; }
.ownership-illustration {
  margin: -8px 0 4px;
}
.ownership-illustration img {
  display: block;
  width: min(100%, 245px);
  height: auto;
  margin: 0 auto;
  mix-blend-mode: lighten;
}
.ownership-principles h3 { margin: 0 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.ownership-principles p { margin: 0; color: rgba(255,255,255,.7); font-size: .9rem; }
.ownership-security { grid-column: 1 / -1; margin: 8px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.68); text-align: center; font-size: .82rem; letter-spacing: .04em; }

.ownership-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ownership-trust h3 {
  grid-column: 1 / -1;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.ownership-trust > div {
  padding: 10px 0;
}

.ownership-trust > div + div {
  padding-left: 0;
}

.ownership-trust > div:nth-of-type(even) {
  padding-left: 0;
  border-left: 0;
}

.ownership-trust strong,
.ownership-trust span {
  display: block;
}

.ownership-trust strong {
  color: #fff;
  font-size: 1rem;
}

.ownership-trust span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.45;
}

.collaboration-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fffaf3 0%, #fcf8ff 58%, #f7f0ff 100%);
}

.collaboration-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 54% 48% at 36% 42%, rgba(181, 146, 236, .2), transparent 72%),
    radial-gradient(ellipse 46% 40% at 72% 58%, rgba(238, 202, 136, .15), transparent 74%);
  pointer-events: none;
}

.collaboration-section .container {
  position: relative;
  z-index: 1;
}

.collaboration-copy {
  align-self: center;
}

.collaboration-grid {
  row-gap: 16px;
}

.collaboration-copy > p:last-child {
  max-width: 35rem;
}

.collaboration-book-visual {
  position: relative;
  min-height: 410px;
  margin: 0;
  isolation: isolate;
  transform: translateY(-52px);
}

.collaboration-book-visual::before {
  content: "";
  position: absolute;
  inset: 6% 0 2% 4%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 45%, rgba(181, 146, 236, .3), transparent 42%),
    radial-gradient(circle at 70% 58%, rgba(238, 202, 136, .22), transparent 38%);
  filter: blur(12px);
}

.collaboration-book-visual img {
  position: absolute;
  display: block;
  height: auto;
  filter: drop-shadow(0 28px 34px rgba(48, 22, 103, .2));
}

.collaboration-book-front {
  bottom: 5%;
  left: 6%;
  z-index: 2;
  width: min(51%, 275px);
  transform: rotate(-2deg);
}

.collaboration-book-share {
  right: 2%;
  bottom: 5%;
  z-index: 1;
  width: min(46%, 245px);
  transform: rotate(3deg);
}

.collaboration-audiences {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.collaboration-audiences article {
  padding: 18px 0 0;
}

.collaboration-audiences h3 {
  margin: 0 0 7px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.collaboration-audiences p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.collaboration-professional h3,
.collaboration-personal h3 {
  color: #6c617f;
  font-family: inherit;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.collaboration-professional .collaboration-benefit,
.collaboration-personal .collaboration-benefit {
  margin-top: 10px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.16;
}

.collaboration-professional .collaboration-outcome,
.collaboration-personal .collaboration-outcome {
  max-width: 38rem;
  margin-top: 12px;
  color: #514862;
  font-size: .96rem;
  font-weight: 400;
  line-height: 1.6;
}

.collaboration-professional .collaboration-detail,
.collaboration-personal .collaboration-detail {
  max-width: 38rem;
  margin-top: 12px;
  color: #514862;
  font-size: .96rem;
  font-weight: 400;
  line-height: 1.6;
}

.community-inner,
.legacy-inner,
.final-beta-inner { max-width: 960px; text-align: center; }
.community-lede,
.legacy-inner > p { max-width: 760px; margin-inline: auto; }
.community-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fcfaff 62%, #f8f3ff 100%);
}
.community-section .community-inner {
  max-width: 1180px;
  text-align: center;
}
.community-section .community-lede {
  max-width: 720px;
  margin-inline: auto;
}
.community-dashboard-visual {
  margin: 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(118, 80, 208, .15);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(65, 35, 123, .13);
}
.community-dashboard-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.community-data-note {
  margin: 14px 0 0;
  color: #7a708b;
  font-size: .76rem;
  text-align: center;
}
.insights-dashboard {
  margin-top: 42px;
  padding: 22px;
  border: 1px solid rgba(118, 80, 208, .16);
  border-radius: 26px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 70px rgba(67, 35, 126, .1);
  text-align: left;
}
.insights-dashboard-header {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(150px, .55fr);
  gap: 20px;
  align-items: center;
  padding: 4px 4px 22px;
}
.insights-dashboard-titlebar { display: flex; gap: 12px; align-items: center; }
.insights-mark {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.insights-dashboard-header p {
  margin: 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.insights-dashboard-header .insights-status {
  display: block;
  margin-top: 3px;
  color: #7450bf;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.insights-dashboard-filters {
  display: flex;
  gap: 8px;
  align-items: center;
}
.insights-dashboard-filters label { position: relative; display: block; }
.insights-dashboard-filters label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.insights-dashboard-filters select {
  min-width: 116px;
  height: 40px;
  padding: 0 30px 0 12px;
  border: 1px solid rgba(80, 51, 143, .16);
  border-radius: 10px;
  color: #37235f;
  background: #fff;
  font: inherit;
  font-size: .68rem;
  cursor: pointer;
}
.insights-dashboard-filters select:focus-visible {
  outline: 2px solid #8055d9;
  outline-offset: 2px;
}
.illustrative-label {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(118, 80, 208, .18);
  border-radius: 11px;
  color: #7052a5;
  background: #f8f3ff;
  font-size: .64rem;
  line-height: 1.35;
}
.illustrative-label strong {
  display: block;
  margin-bottom: 2px;
  color: #5b35b1;
  font-size: .66rem;
}
.illustrative-label span {
  display: block;
  color: #776b8c;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.insight-module {
  grid-column: span 2;
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(118, 80, 208, .13);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(255,255,255,.98), rgba(248,244,255,.82));
}
.insight-module.insight-rise { grid-column: span 4; }
.insight-module > .insight-label {
  margin: 0 0 10px;
  color: #7551c8;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.insight-module h3 {
  margin: 0 0 7px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.15;
}
.insight-module h3 span { color: #7a51d5; }
.insight-module > p:not(.insight-label) { margin: 0; color: var(--muted); font-size: .77rem; line-height: 1.5; }
.sparkline { height: 94px; margin: 18px -4px -6px; }
.sparkline svg,
.mini-trend svg { display: block; width: 100%; height: 100%; overflow: visible; }
.sparkline .spark-fill { fill: url(#rise-fill); }
.sparkline .spark-line { fill: none; stroke: #8055d9; stroke-width: 4; stroke-linecap: round; }
.sparkline circle { fill: #8055d9; }
.insight-bars { display: grid; gap: 10px; margin-top: 18px; }
.insight-bars span { position: relative; display: block; height: 22px; border-radius: 7px; background: #eee8f7; overflow: hidden; }
.insight-bars span::before { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--bar); border-radius: inherit; background: linear-gradient(90deg, #9b79e7, #c5acef); }
.insight-bars i { position: relative; z-index: 1; padding-left: 8px; color: #39216d; font-size: .67rem; font-style: normal; line-height: 22px; }
.approach-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.approach-tags span { padding: 7px 9px; border-radius: 999px; color: #52358d; background: #eee5fb; font-size: .67rem; }
.mini-trend { height: 68px; margin-top: 22px; }
.mini-trend path:first-child { fill: none; stroke: #7f5ad1; stroke-width: 3; stroke-linecap: round; }
.mini-trend .trend-guide { fill: none; stroke: #e8e0f4; stroke-width: 1; }
.positive-signals { display: grid; gap: 8px; margin-top: 18px; }
.positive-signals span { padding: 8px 10px; border-radius: 9px; color: #513486; background: rgba(232, 248, 243, .75); font-size: .7rem; }
.positive-signals i { color: #1ba98a; font-style: normal; font-weight: 800; }
.community-growth-line {
  max-width: 760px;
  margin: 34px auto 4px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}
.community-story-field {
  width: 100%;
  margin-top: 30px;
}
.community-story-field img { display: block; width: 100%; height: auto; }
.community-progression {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  text-align: left;
}
.community-progression article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(156, 121, 218, .2);
  border-radius: 16px;
  background: rgba(255,255,255,.58);
}
.community-icon {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #fff 0%, #f3eaff 62%, #e7d9fb 100%);
  box-shadow: inset 0 0 0 1px rgba(118, 80, 208, .08);
}
.community-icon svg {
  width: 62%;
  height: 62%;
  fill: none;
  stroke: #6534ce;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.community-progression h3 {
  margin: 0 0 8px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}
.community-progression p { margin: 0; color: var(--muted); font-size: .9rem; }
.community-progression i { color: #7650d0; font-size: 1.55rem; font-style: normal; }
.community-choice {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 30px;
  border: 1px solid rgba(156, 121, 218, .2);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  text-align: left;
}
.community-choice > .community-icon { width: 88px; height: 88px; }
.community-choice h3 {
  margin: 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}
.community-choice p { margin: 0; color: var(--muted); font-size: .9rem; }
.community-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; margin-top: 48px; }
.community-flow div { min-height: 150px; padding: 26px 20px; border: 1px solid var(--line); border-radius: 14px; background: #fcfaff; }
.community-flow strong { color: var(--purple-dark); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.community-flow span { margin-top: 12px; color: var(--muted); font-size: .88rem; }
.community-flow i { color: var(--gold); font-size: 1.5rem; font-style: normal; }
.community-note { margin: 30px auto 0; color: #746b87; font-size: .78rem; }

.legacy-section {
  overflow: hidden;
  background: linear-gradient(145deg, #faf6ff 0%, #fff9f1 58%, #f8efff 100%);
}
.legacy-inner { max-width: 1180px; }
.legacy-lede { max-width: 780px !important; }
.legacy-visual {
  margin: 48px 0 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 76px rgba(77, 43, 121, .13);
}
.legacy-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.legacy-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 78px);
  margin: 48px 0 0;
  padding: 30px 0 0;
  list-style: none;
  text-align: center;
}
.legacy-journey::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 16.666%;
  right: 16.666%;
  height: 2px;
  background: linear-gradient(90deg, #7452c8, #d0a15e, #8a5bcd);
}
.legacy-journey li { position: relative; }
.legacy-journey li > span {
  position: absolute;
  top: -29px;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #7e56d1;
  box-shadow: 0 0 0 2px rgba(126, 86, 209, .25), 0 3px 12px rgba(70, 38, 128, .18);
  transform: translateX(-50%);
}
.legacy-journey li:nth-child(2) > span { background: #c28a4b; }
.legacy-journey li:nth-child(3) > span { background: #8a5bcd; }
.legacy-journey h3 {
  margin: 0 0 9px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}
.legacy-journey p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.legacy-inner blockquote {
  max-width: 1050px;
  margin: 92px auto 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.7vw, 3rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.045em;
}
.legacy-inner blockquote span { white-space: nowrap; }

.final-beta-section { background: var(--purple-soft); }
.final-beta-inner .hero-beta-status { justify-content: center; }
.final-beta-inner h2 { margin-top: 18px; }
.beta-heading-nowrap { white-space: nowrap; }
.final-beta-inner p { color: var(--muted); }
.final-beta-actions { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 30px; }
.waitlist-link { font-weight: 800; }

.story-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; margin-top: 42px; }
.story-faq-grid article { padding: 24px 0; border-top: 1px solid var(--line); }
.story-faq-grid h3 { margin: 0 0 8px; color: var(--purple-dark); }
.story-faq-grid p { margin: 0; color: var(--muted); }

@media (max-width: 1080px) {
  .story-definition-grid,
  .story-timeline-grid,
  .ownership-grid,
  .collaboration-grid,
  .story-pieces-layout {
    grid-template-columns: 1fr;
  }

  .reflection-path {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .collaboration-grid .share-journal-stage {
    width: min(100%, 620px);
    order: 2;
  }

  .collaboration-book-visual {
    width: min(100%, 620px);
    margin-inline: auto;
    order: 0;
    transform: none;
  }

  .collaboration-copy {
    order: -1;
  }

  .collaboration-audiences {
    order: 1;
  }

  .timeline-product-stage {
    width: 100%;
    margin: 46px 0 0;
  }

  .story-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 300px 280px 250px 250px;
  }

  .story-piece-conditions { grid-column: 1; grid-row: 1; }
  .story-piece-journal { grid-column: 2; grid-row: 1 / 3; }
  .story-piece-daily { grid-column: 1; grid-row: 2; }
  .story-piece-medication { grid-column: 1; grid-row: 3; }
  .story-piece-life { grid-column: 2; grid-row: 3; }
  .story-piece-surgery { grid-column: 1 / 3; grid-row: 4; }

  .agency-hero-grid,
  .agency-share-grid,
  .agency-product-proof,
  .agency-feature-showcase {
    grid-template-columns: 1fr;
  }

  .agency-hero-copy {
    max-width: 760px;
  }

  .agency-hero-visual {
    justify-content: flex-start;
  }

  .agency-benefit-grid,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-device-stack {
    min-height: auto;
  }

  .agency-phone-card {
    right: 18px;
    width: min(28%, 150px);
  }
}

@media (max-width: 760px) {
  .story-definition-section,
  .reflection-section,
  .story-timeline-section,
  .story-pieces-section,
  .ownership-section,
  .collaboration-section,
  .community-section,
  .legacy-section,
  .final-beta-section,
  .story-faq-section {
    padding: 68px 0;
  }

  .story-intro h2,
  .story-timeline-grid h2,
  .ownership-heading h2,
  .collaboration-grid h2,
  .community-inner h2,
  .legacy-inner h2,
  .final-beta-inner h2,
  .story-faq-section h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .story-timeline-heading h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .ownership-heading-nowrap {
    white-space: nowrap;
  }

  .ownership-heading .ownership-agency {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .story-timeline-heading,
  .story-timeline-heading .eyebrow,
  .story-timeline-heading h2,
  .story-timeline-heading > p:last-child {
    text-align: center;
  }

  .story-equation {
    grid-template-columns: 1fr;
  }

  .story-equation b,
  .story-equation i {
    line-height: 1;
  }

  .story-equation i {
    transform: rotate(90deg);
  }

  .story-definition-section .story-intro {
    text-align: center;
  }

  .story-convergence {
    grid-template-columns: 1fr;
    grid-template-areas:
      "streams"
      "time"
      "result";
    gap: 28px;
    margin-top: 42px;
    padding: 26px 22px;
  }

  .story-streams {
    position: relative;
    gap: 0;
  }

  .story-streams::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 16px;
    width: 1px;
    background: #b7a0e8;
  }

  .story-streams article {
    position: relative;
    z-index: 1;
    padding: 16px 0;
  }

  .story-streams article > span {
    background: #fcfaff;
  }

  .story-join {
    display: none;
  }

  .story-time-thread {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .story-time-thread > div {
    grid-template-columns: auto 1fr auto 1fr auto;
    gap: 7px;
    font-size: 0.6rem;
  }

  .story-time-thread p {
    grid-column: 1;
    line-height: 1.6;
  }

  .story-result {
    padding: 30px 22px;
  }

  .story-concept-art {
    width: calc(100% + 20px);
    margin: 8px -10px 0;
    border-radius: 14px;
  }

  .reflection-path,
  .ownership-principles,
  .community-flow,
  .legacy-values,
  .story-faq-grid {
    grid-template-columns: 1fr;
  }

  .reflection-path {
    gap: 0;
    margin-top: 30px;
  }

  .reflection-journey {
    margin-top: 0;
  }

  .reflection-thread {
    display: none;
  }

  .reflection-path::before {
    content: "";
    top: 24px;
    bottom: 24px;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #b9a2e7, #8e68db);
  }

  .reflection-path li,
  .reflection-path li:nth-child(3),
  .reflection-path li:last-child {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    padding: 16px 0;
    border: 0;
    text-align: left;
  }

  .reflection-path li:nth-child(odd),
  .reflection-path li:nth-child(even) {
    padding-top: 16px;
  }

  .reflection-path li > span {
    margin: 0;
  }

  .reflection-path h3 { margin: 3px 0 8px; }
  .reflection-closing { margin-top: 36px; text-align: left; }

  .timeline-product-stage {
    margin-top: 34px;
  }

  .timeline-product-scroll {
    overflow-x: auto;
    padding: 8px;
    border-radius: 13px;
    scrollbar-color: #9d7ce0 #eee7fa;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .timeline-product-scroll img {
    width: 900px;
    max-width: none;
  }

  .timeline-scroll-hint {
    display: block;
    margin-top: 12px;
    color: #74678a;
    font-size: 0.75rem;
    text-align: center;
  }

  .timeline-captions {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
    padding: 0 0 0 24px;
  }

  .timeline-captions::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #c6b3ec, #7048cb);
  }

  .timeline-captions::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: -4px;
    border-width: 8px 5px 0;
    border-top-color: #7048cb;
    border-left-color: transparent;
  }

  .story-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 290px;
    gap: 14px;
    margin-top: 38px;
  }

  .story-piece-conditions,
  .story-piece-journal,
  .story-piece-daily,
  .story-piece-medication,
  .story-piece-life,
  .story-piece-surgery {
    grid-column: 1;
    grid-row: auto;
  }

  .story-piece-journal {
    min-height: 360px;
  }

  .story-piece-life,
  .story-piece-surgery {
    display: none;
  }

  .mobile-story-chapter {
    display: inline-flex;
  }

  .story-chapters {
    justify-content: flex-start;
    margin-top: 26px;
  }

  .story-pieces-closing {
    margin-top: 30px;
    text-align: left;
  }
  .ownership-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
    margin-top: 34px;
  }

  .ownership-heading,
  .ownership-trust,
  .ownership-trust h3,
  .ownership-trust > div,
  .ownership-principles article {
    text-align: center;
  }

  .ownership-principles article {
    min-width: 0;
    padding: 0;
  }

  .ownership-illustration {
    margin: 0 0 8px;
  }

  .ownership-illustration img {
    width: 100%;
    max-width: 170px;
    margin: 0 auto;
  }

  .ownership-principles h3 {
    margin-bottom: 6px;
    font-size: clamp(1.02rem, 4.6vw, 1.18rem);
    line-height: 1.18;
  }

  .ownership-principles p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .ownership-security { text-align: left; line-height: 1.8; }
  .ownership-trust {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .ownership-trust > div,
  .ownership-trust > div + div,
  .ownership-trust > div:nth-of-type(even) {
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .collaboration-audiences {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2px;
  }

  .collaboration-copy,
  .collaboration-audiences article {
    text-align: center;
  }

  .collaboration-copy > p:last-child,
  .collaboration-audiences p {
    margin-left: auto;
    margin-right: auto;
  }

  .collaboration-section::before {
    display: none;
  }

  .collaboration-book-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    min-height: 0;
    padding: 18px 0 24px;
  }

  .collaboration-book-visual .collaboration-book-front,
  .collaboration-book-visual .collaboration-book-share {
    position: relative;
    inset: auto;
    width: min(46%, 210px);
    transform: none;
    filter: none;
  }

  .collaboration-audiences article + article {
    margin-top: 24px;
  }

  .community-dashboard-visual {
    overflow-x: auto;
    border-radius: 16px;
    scrollbar-color: #9d7ce0 #eee7fa;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .community-dashboard-visual img {
    width: 900px;
    max-width: none;
  }

  .insights-dashboard {
    margin-top: 30px;
    padding: 14px;
    border-radius: 20px;
  }

  .insights-dashboard-header {
    grid-template-columns: 1fr;
    gap: 13px;
    align-items: flex-start;
    padding: 2px 2px 16px;
  }

  .insights-dashboard-header .insights-status { max-width: 180px; font-size: .56rem; line-height: 1.35; }
  .insights-dashboard-filters { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .insights-dashboard-filters label:first-child { grid-column: 1 / -1; }
  .insights-dashboard-filters select { width: 100%; min-width: 0; }
  .illustrative-label { margin-top: 0; font-size: .58rem; }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .insight-module,
  .insight-module.insight-rise {
    grid-column: auto;
    min-height: 0;
    padding: 19px;
  }

  .sparkline { height: 82px; }

  .community-growth-line {
    margin-top: 28px;
    font-size: 1.45rem;
  }

  .community-story-field {
    width: 100%;
    margin-top: 34px;
    margin-left: 0;
  }

  .community-progression {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
    padding-top: 26px;
    text-align: left;
  }

  .community-progression article {
    grid-template-columns: 84px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  .community-progression article .community-icon {
    width: 84px;
    height: 84px;
  }

  .community-progression i {
    padding: 0 0 0 8px;
    transform: rotate(90deg);
    transform-origin: left center;
  }

  .community-choice {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    margin-top: 34px;
    padding: 22px;
  }

  .community-choice > .community-icon {
    width: 64px;
    height: 64px;
  }

  .community-flow i { transform: rotate(90deg); }
  .community-flow div { min-height: 0; }
  .legacy-visual {
    width: calc(100% + 30px);
    margin: 34px -15px 0;
    border-radius: 18px;
  }

  .legacy-visual img {
    width: 100%;
  }

  .legacy-journey {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 38px;
    padding: 0 0 0 34px;
    text-align: left;
  }

  .legacy-journey::before {
    top: 6px;
    bottom: 6px;
    left: 7px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #7452c8, #d0a15e, #8a5bcd);
  }

  .legacy-journey li > span {
    top: 4px;
    left: -34px;
    transform: none;
  }

  .legacy-inner blockquote {
    margin-top: 58px;
    font-size: clamp(1.6rem, 7.5vw, 2.25rem);
  }
  .final-beta-actions { flex-direction: column; }
  .final-beta-actions .button { width: 100%; }

  .agency-home .agency-brand {
    width: 100%;
    justify-content: center;
  }

  .agency-home .agency-brand img {
    width: 120px;
    max-height: none;
  }

  .agency-hero {
    min-height: auto;
    padding: 48px 0 48px;
  }

  .agency-hero-grid {
    gap: 0;
    justify-items: center;
  }

  .agency-hero-copy {
    display: contents;
  }

  .agency-hero h1 {
    order: 0;
    width: 100%;
    margin-inline: auto;
    font-size: clamp(1.82rem, 7.4vw, 2.3rem);
    text-align: center;
  }

  .agency-hero .hero-lede {
    order: 1;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .agency-hero .hero-actions {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .agency-hero-visual {
    order: 2;
    width: 100%;
    margin-top: 26px;
    justify-content: center;
  }

  .agency-safeguards {
    display: grid;
    gap: 10px;
  }

  .agency-safeguards span {
    width: fit-content;
  }

  .hero-confirmations {
    order: 4;
    width: 100%;
    margin: 30px auto 0;
  }

  .hero-confirmations > div {
    min-height: 78px;
    padding-inline: 8px;
  }

  .hero-confirmations span {
    font-size: 0.72rem;
  }

  .journal-scene-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .journal-book-pair,
  .share-journal-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: auto;
  }

  .journal-book-pair img,
  .share-journal-stage img {
    position: static;
    width: 100%;
    transform: none !important;
  }

  .agency-product-proof {
    margin-top: 44px;
  }

  .agency-phone-card {
    position: static;
    width: min(72%, 220px);
    margin: 18px auto 0;
  }

  .agency-benefit-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .record-path {
    grid-template-columns: minmax(190px, 1fr) 42px minmax(190px, 1fr);
    gap: 12px;
    margin-top: 30px;
  }

  .record-fragments {
    grid-template-rows: auto minmax(270px, auto);
    gap: 8px;
  }

  .record-flow-label {
    text-align: center;
  }

  .record-flow-arrow {
    width: 42px;
    height: 48px;
    justify-self: center;
    margin-top: 160px;
  }

  .record-path article {
    justify-items: center;
    min-height: 96px;
    padding: 2px 4px 8px;
    text-align: center;
  }

  .record-path span {
    width: 64px;
    height: 64px;
  }

  .record-path h3 {
    max-width: none;
    font-size: 0.76rem;
  }

  .record-fragments h3,
  .record-path .record-you h3 {
    width: min(100%, 270px);
    max-width: 270px;
    min-height: 72px;
    font-size: clamp(0.94rem, 2.05vw, 1.04rem);
    line-height: 1.18;
  }

  .record-path .record-you {
    grid-template-rows: auto minmax(270px, auto) auto;
    width: min(440px, 100%);
    justify-self: center;
    margin-top: 0;
    padding-top: 0;
  }

  .record-path .record-you span {
    width: 104px;
    height: 84px;
  }

  .journal-puzzle-lockup {
    width: min(230px, 92%);
    margin-top: 0;
  }

  .agency-share-grid {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .record-path {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .record-flow-arrow {
    width: 54px;
    transform: rotate(90deg);
    margin-top: 0;
  }

  .record-path span {
    width: 74px;
    height: 74px;
  }

  .record-path h3 {
    font-size: 0.82rem;
  }

  .record-fragments h3,
  .record-path .record-you h3 {
    width: min(100%, 320px);
    max-width: 320px;
    min-height: auto;
    font-size: 1rem;
  }

  .record-path .record-you {
    width: min(420px, 100%);
  }

  .journal-puzzle-lockup {
    width: min(280px, 76vw);
  }
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 4.2vw, 4.25rem);
  max-width: 760px;
}

h1 span {
  display: block;
  color: var(--purple);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

h3 {
  line-height: 1.25;
  font-size: 1.22rem;
}

.hero-lede {
  max-width: 620px;
  color: #302456;
  font-size: clamp(1.12rem, 1.5vw, 1.3rem);
  font-weight: 600;
}

.hero-body {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.pillar-line {
  margin-top: 26px;
  color: #332258;
  font-weight: 700;
  font-size: 1.04rem;
}

.badge-strip span,
.mini-feature-list span {
  position: relative;
  padding: 9px 12px 9px 32px;
  border: 1px solid rgba(106, 63, 212, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.badge-strip span::before,
.mini-feature-list span::before,
.check-list li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.65);
}

.badge-strip span::before,
.mini-feature-list span::before {
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.product-stage {
  position: relative;
  min-height: 520px;
}

.desktop-shot,
.phone-shot,
.image-frame {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.desktop-shot {
  position: absolute;
  inset: 38px 0 auto 0;
  overflow: hidden;
  padding: 10px;
}

.desktop-shot img,
.image-frame img {
  width: 100%;
  border-radius: 6px;
}

.phone-shot {
  position: absolute;
  right: 8px;
  bottom: 12px;
  width: 168px;
  padding: 8px;
}

.proof-strip {
  padding: 26px 0;
  background: var(--purple-dark);
  color: #fff;
}

.stats-grid,
.proof-bullet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats-grid div,
.proof-bullet {
  padding: 8px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-grid strong,
.proof-bullet strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.stats-grid span,
.proof-bullet span {
  color: rgba(255, 255, 255, 0.75);
}

.proof-bullet {
  position: relative;
  padding-left: 42px;
  border-left: 0;
}

.proof-bullet::before {
  content: "✓";
  position: absolute;
  left: 8px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(117, 209, 139, 0.18);
  color: #9af0ad;
  font-size: 0.9rem;
  font-weight: 900;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}

.section-heading.narrow {
  max-width: 720px;
}

.compare-grid,
.case-study-grid,
.feature-grid,
.trust-grid,
.testimonial-grid,
.pricing-grid,
.faq-grid,
.community-grid,
.profession-grid,
.early-grid,
.promise-grid {
  display: grid;
  gap: 22px;
}

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

.community-grid {
  grid-template-columns: repeat(2, 1fr);
}

.case-study-grid {
  display: flex;
  gap: 22px;
  margin-top: 58px;
  padding: 4px 4px 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.case-study-grid::-webkit-scrollbar {
  display: none;
}

.compare-panel,
.case-study-card,
.feature-card,
.trust-grid article,
.testimonial-grid figure,
.price-card,
.faq-grid article,
.community-grid article,
.early-grid article,
.promise-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.compare-panel {
  padding: 36px;
}

.case-study-card {
  flex: 0 0 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  scroll-snap-align: start;
}

.case-study-card > p:last-of-type {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.case-study-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.case-study-controls a {
  padding: 9px 14px;
  border: 1px solid rgba(119, 77, 191, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 800;
}

.case-study-controls a:hover,
.case-study-controls a:focus-visible {
  border-color: rgba(119, 77, 191, 0.42);
  background: #fff;
  color: var(--purple-dark);
}

.case-study-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 0 0 44px;
}

.case-study-dots a {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(119, 77, 191, 0.45);
  border-radius: 50%;
  background: rgba(119, 77, 191, 0.14);
}

.case-study-dots a:hover,
.case-study-dots a:focus-visible {
  background: var(--purple);
}

.case-study-dots span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.panel-bright {
  border-color: rgba(94, 159, 107, 0.28);
  background: linear-gradient(135deg, #ffffff, #f0fbf3);
}

.panel-muted {
  background: linear-gradient(135deg, #ffffff, #f7f3ff);
}

.panel-kicker,
.plan-label {
  margin-bottom: 12px;
  color: var(--purple);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  left: 0;
  top: 0.56em;
}

.muted-list li::before {
  background: var(--gold);
}

.section-tint {
  background: linear-gradient(180deg, #ffffff, #f3eefc);
}

.promise-section {
  background: linear-gradient(180deg, #fbf8ff 0%, #ffffff 18%, #f8f4ff 100%);
  padding-top: 118px;
}

.promise-grid {
  grid-template-columns: repeat(3, 1fr);
}

.promise-card {
  min-height: 320px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}

.promise-number {
  position: absolute;
  top: -52px;
  left: -58px;
  color: rgba(119, 77, 191, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  width: 150px;
  text-align: center;
  font-size: 8rem;
  font-weight: 900;
  line-height: 0.78;
  pointer-events: none;
}

.promise-card:nth-child(3) .promise-number {
  top: -47px;
  left: -53px;
  color: rgba(119, 77, 191, 0.06);
  font-size: 6.25rem;
  font-weight: 800;
}

.promise-card:nth-child(2) .promise-number {
  top: -52px;
  left: -47px;
}

.promise-card h3 {
  position: relative;
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--purple-dark);
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
}

.promise-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.promise-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #f4efff);
}

.promise-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #eef9f3);
}

.device-showcase {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.tablet-frame {
  position: relative;
  width: min(100%, 980px);
  padding: 28px 26px 34px;
  border: 2px solid rgba(42, 31, 78, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,240,255,0.94)),
    #fff;
  box-shadow:
    0 34px 80px rgba(43, 30, 84, 0.18),
    inset 0 0 0 8px rgba(255, 255, 255, 0.72);
}

.tablet-frame::after {
  content: "";
  position: absolute;
  inset: auto 16% -18px;
  height: 24px;
  border-radius: 999px;
  background: rgba(42, 31, 78, 0.12);
  filter: blur(14px);
  z-index: -1;
}

.tablet-frame img {
  display: block;
  width: 100%;
  border: 1px solid rgba(42, 31, 78, 0.1);
  border-radius: 18px;
  background: #fff;
}

.timeline-device {
  margin-top: 0;
}

.timeline-device .tablet-frame {
  padding: 22px 20px 26px;
}

.tablet-camera {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(42, 31, 78, 0.34);
}

.device-composition {
  position: relative;
  margin-top: 48px;
  padding: 0 0 44px;
}

.device-composition .tablet-frame {
  width: min(100%, 1120px);
  margin-right: auto;
}

.iphone-frame {
  position: absolute;
  right: -2%;
  bottom: 24px;
  width: min(36%, 320px);
  padding: 18px 10px 14px;
  border: 2px solid rgba(42, 31, 78, 0.22);
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #f5f0ff);
  box-shadow:
    0 28px 58px rgba(43, 30, 84, 0.22),
    inset 0 0 0 6px rgba(255, 255, 255, 0.78);
  z-index: 2;
}

.iphone-frame img {
  display: block;
  width: 100%;
  border: 1px solid rgba(42, 31, 78, 0.1);
  border-radius: 22px;
  background: #fff;
}

.iphone-speaker {
  display: block;
  width: 54px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(42, 31, 78, 0.28);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 260px;
  padding: 28px;
}

.feature-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 22px;
}

.feature-card p,
.trust-grid p,
.price-card li,
.faq-grid p,
.testimonial-grid blockquote {
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-list li {
  margin-bottom: 8px;
}

.product-deep-dive {
  background: #fff;
}

.product-deep-dive .split-grid {
  align-items: flex-start;
}

.split-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.image-frame {
  padding: 10px;
  overflow: hidden;
}

.wide-frame img {
  min-height: 360px;
  object-fit: cover;
  object-position: left center;
}

.mini-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.mini-feature-list span {
  width: fit-content;
  padding: 0 0 0 24px;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.mini-feature-list span::before {
  left: 0;
}

.ai-section {
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(135deg, #301167, #164f58);
}

.ai-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
}

.eyebrow-light {
  color: #d7c8ff;
}

.ai-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.export-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.export-topbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.export-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7c8ff;
}

pre {
  margin: 0;
  padding: 26px;
  white-space: pre-wrap;
  color: #f6f1ff;
  font: 500 0.96rem/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  padding: 26px;
}

.trust-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.7;
}

.badge-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.security-note {
  max-width: 840px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}

.security-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  max-width: 860px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
}

.security-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
}

.security-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #2d9f5b;
  font-weight: 900;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.early-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid figure {
  margin: 0;
  padding: 30px;
}

.early-grid article {
  padding: 30px;
}

.community-grid article {
  padding: 30px;
}

.early-grid p {
  color: var(--muted);
}

.community-grid p {
  color: var(--muted);
}

.testimonial-grid blockquote {
  margin: 0 0 22px;
  font-size: 1.03rem;
}

.testimonial-grid figcaption {
  color: var(--ink);
  font-weight: 800;
}

.pricing-section {
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.92)),
    url("static/background.png") center / cover no-repeat;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  padding: 32px;
}

.featured-price {
  border-color: rgba(106, 63, 212, 0.42);
  background: linear-gradient(180deg, #ffffff, #f4edff);
  transform: translateY(-14px);
}

.price {
  margin: 22px 0 6px;
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
}

.price-detail {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 700;
}

.price-card .button {
  width: 100%;
  margin-top: 12px;
}

.pricing-note {
  margin: 20px auto 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.faq-section {
  margin-top: 0;
  background: linear-gradient(180deg, #f8f4ff, #ffffff);
}

.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid article {
  padding: 24px;
}

.help-hero {
  padding: 86px 0 74px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(251, 248, 255, 0.92)),
    url("static/background.png");
  background-position: center top, center center;
  background-size: auto, cover;
}

.help-heading {
  margin-inline: auto;
  text-align: center;
}

.help-section {
  padding: 78px 0;
}

.help-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.help-category-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.help-category-card:hover,
.help-category-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(106, 63, 212, 0.32);
  box-shadow: 0 18px 42px rgba(48, 22, 103, 0.13);
}

.help-category-card span {
  display: block;
  margin-bottom: 22px;
  color: rgba(106, 63, 212, 0.5);
  font-size: 0.82rem;
  font-weight: 900;
}

.help-category-card h3 {
  margin: 0 0 8px;
  color: var(--purple-dark);
}

.help-category-card p,
.help-content-grid p,
.help-panel p {
  color: var(--muted);
  font-size: 0.96rem;
}

.help-guides-section {
  background-color: #fff;
}

.help-guide-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.help-guide-nav {
  position: sticky;
  top: 100px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.help-guide-nav .eyebrow {
  margin-bottom: 12px;
}

.help-guide-nav a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  border-top: 1px solid rgba(106, 63, 212, 0.1);
}

.help-guide-nav a:hover,
.help-guide-nav a:focus-visible {
  color: var(--purple);
}

.help-guide-stack {
  display: grid;
  gap: 24px;
}

.help-guide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 30px;
  align-items: center;
  padding: 34px;
  scroll-margin-top: 100px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 255, 0.72));
  box-shadow: var(--soft-shadow);
}

.help-guide-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
}

.help-guide-copy p {
  color: var(--muted);
}

.help-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  counter-reset: help-step;
  list-style: none;
}

.help-steps li {
  position: relative;
  min-height: 34px;
  padding-left: 48px;
  color: #302456;
  font-weight: 650;
}

.help-steps li::before {
  counter-increment: help-step;
  content: counter(help-step);
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--purple-dark);
  background: var(--purple-soft);
  border: 1px solid #d8c9fb;
  font-size: 0.82rem;
  font-weight: 900;
}

.help-screenshot {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(106, 63, 212, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(48, 22, 103, 0.12);
}

.help-screenshot img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border-radius: 6px;
}

.help-screenshot-wide img {
  max-height: 260px;
}

.help-screenshot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.help-icon-scene {
  min-height: 270px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.help-icon-scene img {
  width: min(130px, 42%);
  max-height: 140px;
}

.help-icon-scene figcaption {
  grid-column: 1 / -1;
}

.help-inline-button {
  margin-top: 8px;
}

.help-content-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.help-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.help-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.help-panel .button {
  margin-top: 10px;
}

.help-panel-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #321472, #6a3fd4);
}

.help-panel-dark h2,
.help-panel-dark p,
.help-panel-dark .eyebrow {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 11px 12px;
  border: 1px solid rgba(106, 63, 212, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form input,
.contact-form select {
  height: 47px;
  line-height: 1.2;
}

.contact-form textarea {
  resize: vertical;
}

.support-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(106, 63, 212, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--purple-dark);
  font-weight: 800;
}

.support-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.support-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(106, 63, 212, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--purple-dark);
  font-weight: 800;
}

.support-menu a:hover {
  border-color: rgba(106, 63, 212, 0.36);
  background: #fff;
  color: var(--purple);
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 14px 34px rgba(48, 22, 103, 0.12);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(29, 143, 93, 0.34);
  background: #eafaf1;
  color: #11613f;
}

.form-status.is-error {
  border: 1px solid rgba(187, 63, 63, 0.34);
  background: #fff0f0;
  color: #8b2525;
}

.form-status.is-sending {
  border: 1px solid rgba(106, 63, 212, 0.24);
  background: #f4efff;
  color: var(--purple-dark);
}

.legal-page {
  background: linear-gradient(180deg, #fbf8ff, #ffffff);
}

.legal-container {
  max-width: 980px;
}

.legal-heading {
  margin-bottom: 34px;
}

.legal-meta {
  margin-top: 14px;
  color: var(--purple);
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-document {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.legal-document h2 {
  margin-top: 38px;
  margin-bottom: 14px;
  color: var(--purple-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-document h2:first-child,
.legal-document .legal-callout + h2 {
  margin-top: 0;
}

.legal-document h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  color: #332258;
  font-size: 1.08rem;
}

.legal-document p,
.legal-document li,
.legal-table td,
.legal-table th {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.legal-list {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-callout {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid rgba(119, 77, 191, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f4efff);
}

.legal-callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 22px 0 28px;
}

.legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  border: 1px solid rgba(106, 63, 212, 0.14);
  background: #fff;
}

.legal-table th,
.legal-table td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(106, 63, 212, 0.12);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--purple-dark);
  background: #f5f0ff;
  font-weight: 800;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.professional-hero h1 {
  max-width: 760px;
}

.professional-hero {
  min-height: 720px;
  padding-bottom: 74px;
}

.professional-hero.section-soft {
  background-image:
    linear-gradient(90deg, rgba(122, 90, 183, 0.28) 0%, rgba(168, 139, 215, 0.16) 16%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.68) 34%, rgba(255, 255, 255, 0.3) 57%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(251, 248, 255, 0.06), rgba(251, 248, 255, 0.2)),
    url("static/images/professional-hero-context-ethereal.png");
  background-position: center center, center center, center center, center center;
  background-size: cover, cover, cover, cover;
  background-repeat: no-repeat;
}

.professional-hero .hero-grid {
  grid-template-columns: minmax(0, 820px);
}

.professional-hero .hero-copy {
  max-width: 820px;
}

.professional-principles {
  display: grid;
  gap: 16px;
}

.professional-principles article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.professional-principles h3 {
  color: #fff;
}

.professional-principles p {
  margin-bottom: 0;
}

.professional-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.professional-problem-grid article {
  min-height: 254px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.professional-problem-grid h3 {
  margin: 0 0 10px;
  color: var(--purple-dark);
}

.professional-problem-grid p {
  color: var(--muted);
  font-size: 0.96rem;
}

.professional-monitor-showcase {
  margin-top: 58px;
}

.desktop-monitor {
  width: min(1040px, 100%);
  margin-inline: auto;
  padding-bottom: 42px;
}

.desktop-monitor-screen {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(22, 15, 53, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #171328, #2b2150);
  box-shadow: 0 28px 70px rgba(28, 13, 76, 0.22);
}

.desktop-monitor-screen::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  transform: translateX(-50%);
  z-index: 2;
}

.desktop-monitor-screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
  border-radius: 4px;
  background: #fff;
}

.desktop-monitor-stand {
  width: 118px;
  height: 42px;
  margin: 0 auto;
  background: linear-gradient(180deg, #d9d4e6, #b9afcf);
  clip-path: polygon(26% 0, 74% 0, 88% 100%, 12% 100%);
}

.desktop-monitor-base {
  width: 250px;
  height: 12px;
  margin: 0 auto;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(90deg, #c9c1db, #eeeaf6, #c2b9d8);
  box-shadow: 0 12px 24px rgba(48, 22, 103, 0.12);
}

.profession-grid {
  grid-template-columns: repeat(4, 1fr);
}

.professional-landscape-section {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 260px;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.42) 44%, rgba(255, 255, 255, 0.72) 100%),
    url("static/images/professional-journal-network-centered.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.professional-landscape-section .container {
  position: relative;
  z-index: 1;
}

.professional-landscape-section .section-heading {
  max-width: 860px;
}

.profession-grid span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: #302456;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.professional-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  align-items: start;
  gap: 28px;
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #21184b 0%, #3a2678 58%, #5c3ed2 100%);
  box-shadow: var(--shadow);
}

.professional-cta h3 {
  font-size: 1.55rem;
  color: #fff;
}

.professional-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.professional-cta-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
}

.professional-cta-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.professional-cta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(194, 243, 221, 0.18);
  box-shadow: inset 0 0 0 1px rgba(194, 243, 221, 0.48);
}

.professional-cta-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.52em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #baf7d4;
  border-bottom: 2px solid #baf7d4;
  transform: rotate(-45deg);
}

.professional-cta .professional-cta-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
}

.professional-access-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(23, 16, 55, 0.24);
}

.site-footer {
  padding: 56px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: #160f35;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(120px, 0.7fr));
  gap: 34px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo img {
  width: 116px;
  height: auto;
  object-fit: contain;
}

.footer-logo strong,
.footer-logo small {
  color: #fff;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.site-footer a:hover {
  color: #fff;
}

.newsletter label span {
  display: block;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input {
  width: 100%;
  min-height: 44px;
  margin: 8px 0 10px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.newsletter button {
  border: 0;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  max-width: 650px;
}

@media (max-width: 1080px) {
  .nav-shell {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .split-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 560px;
  }

  .stats-grid,
  .trust-grid,
  .professional-problem-grid,
  .proof-bullet-grid,
  .profession-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-content-grid,
  .help-guide-layout,
  .help-lower-grid,
  .contact-grid,
  .help-article-grid,
  .help-article-layout,
  .help-screen-walkthrough {
    grid-template-columns: 1fr;
  }

  .help-guide-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .help-guide-nav .eyebrow {
    grid-column: 1 / -1;
  }

  .troubleshooting-faq-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-guide-card {
    grid-template-columns: 1fr;
  }

  .help-article-nav {
    position: static;
  }

}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: static;
    padding: 10px 0;
  }

  .nav-shell {
    width: calc(100% - 20px);
    justify-content: center;
  }

  .brand {
    width: 238px;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.94rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
  }

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

  .hero.section-soft {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.52) 100%),
      url("static/hero-journal-insight.png");
    background-position: center center, 56% center;
    background-size: cover, cover;
  }

  .professional-hero.section-soft {
    background-image:
      linear-gradient(90deg, rgba(122, 90, 183, 0.24) 0%, rgba(168, 139, 215, 0.12) 22%, rgba(255, 255, 255, 0) 48%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.52) 100%),
      url("static/images/professional-hero-context-ethereal.png");
    background-position: center center, center center, 62% center;
    background-size: cover, cover, cover;
  }

  .professional-hero {
    padding-bottom: 58px;
  }

  h1 {
    font-size: 3rem;
  }

  .product-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .desktop-shot,
  .phone-shot {
    position: static;
    width: auto;
  }

  .desktop-monitor-screen {
    padding: 9px;
  }

  .desktop-monitor-stand {
    height: 30px;
  }

  .desktop-monitor-base {
    width: 190px;
  }

  .reverse-on-mobile .image-frame {
    order: -1;
  }

  .phone-shot {
    max-width: 280px;
    margin-inline: auto;
  }

  .compare-grid,
  .feature-grid,
  .promise-grid,
  .testimonial-grid,
  .early-grid,
  .pricing-grid,
  .faq-grid,
  .help-category-grid,
  .troubleshooting-faq-links,
  .help-topic-grid,
  .help-field-grid,
  .help-two-col,
  .help-related-grid,
  .help-guide-nav,
  .professional-problem-grid,
  .security-list,
  .professional-cta {
    grid-template-columns: 1fr;
  }

  .featured-price {
    transform: none;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    gap: 12px;
    padding: 12px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: 120px;
    height: auto;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .signin {
    display: none;
  }

  .button {
    width: 100%;
  }

  .agency-home .nav-actions {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .agency-home .nav-actions .signin {
    display: inline-flex;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .agency-home .nav-actions .button-small {
    width: auto;
    flex: 0 1 auto;
    padding-inline: 16px;
  }

  .help-category-card {
    min-height: auto;
  }

  .help-panel {
    padding: 24px;
  }

  .help-guide-card {
    padding: 24px;
  }

  .help-screenshot {
    padding: 10px;
  }

  .help-icon-scene {
    min-height: 220px;
  }

  .hero-actions {
    width: 100%;
  }

  .badge-strip span,
  .mini-feature-list span {
    width: 100%;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .compare-panel,
  .feature-card,
  .promise-card,
  .price-card {
    padding: 24px;
  }

  .tablet-frame {
    padding: 18px 14px 22px;
    border-radius: 20px;
  }

  .tablet-frame img {
    border-radius: 12px;
  }

  .device-composition {
    display: grid;
    gap: 22px;
    padding-bottom: 0;
  }

  .device-composition .tablet-frame {
    width: 100%;
  }

  .iphone-frame {
    position: relative;
    width: min(72%, 260px);
    right: auto;
    bottom: auto;
    justify-self: center;
  }

  .stats-grid,
  .proof-bullet-grid,
  .trust-grid,
  .profession-grid,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    display: grid;
  }

  .footer-bottom {
    display: grid;
    gap: 0;
  }

  .footer-logo {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    align-items: center;
    text-align: center;
  }

  .footer-logo small {
    margin-top: 0;
    text-align: center;
  }

  .footer-bottom p + p {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Help Center rebuild foundation: make real app screenshots large enough to read. */
.help-article-hero {
  padding: 72px 0 44px;
}

.help-article-hero .container,
.help-section > .container {
  width: min(1400px, calc(100% - 32px));
}

.help-article-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.help-article-title {
  max-width: none;
}

.help-article-title h1 {
  max-width: none;
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  line-height: 1.08;
}

.help-article-title p {
  max-width: none;
  font-size: 1.04rem;
}

.help-heading h1 {
  font-size: clamp(2rem, 3.5vw, 2.95rem);
}

.help-screenshot-frame {
  width: 100%;
  margin: 0 auto;
  padding: 16px;
}

.help-screenshot-frame img {
  width: 100%;
  max-height: none;
  object-fit: contain;
}

.help-screenshot-frame figcaption {
  max-width: 900px;
  margin: 14px auto 0;
  text-align: center;
}

.help-article-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.help-article-nav {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px;
}

.help-article-nav a {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid #eadff9;
  border-radius: 8px;
  background: #fff;
  white-space: nowrap;
}

.help-article-card {
  padding: clamp(22px, 3vw, 34px);
  scroll-margin-top: 104px;
}

.help-article-card h2 {
  max-width: none;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.help-article-card > p {
  max-width: none;
}

.help-screen-walkthrough {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 22px 0;
  padding: clamp(14px, 2.4vw, 24px);
}

.help-screen-walkthrough img {
  display: block;
  width: 100%;
  max-height: none;
  object-fit: contain;
  border: 1px solid rgba(106, 63, 212, 0.12);
  background: #fbf8ff;
  box-shadow: 0 10px 28px rgba(48, 22, 103, 0.08);
}

.help-screen-callouts {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.help-screen-callouts li {
  min-height: 100%;
  padding: 14px 14px 14px 52px;
  border: 1px solid #eadff9;
  border-radius: 8px;
  background: #fff;
}

.help-screen-callouts span {
  left: 14px;
  top: 14px;
}

.help-form-screen,
.help-walkthrough,
.help-related-grid {
  max-width: none;
}

.help-topic-card img {
  height: 220px;
  padding: 8px;
  border: 1px solid rgba(106, 63, 212, 0.1);
  border-radius: 8px;
  background: #fbf8ff;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 1060px) {
  .help-article-layout {
    grid-template-columns: 1fr;
  }

  .help-article-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .help-screen-callouts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .help-article-card,
  .help-search-panel {
    padding: 16px;
  }

  .help-screenshot-frame {
    padding: 10px;
  }

  .help-screen-walkthrough {
    margin-inline: -10px;
    padding: 8px;
  }

  .help-screen-callouts li {
    padding: 12px 12px 12px 48px;
  }

  .help-screen-callouts span {
    left: 12px;
    top: 12px;
  }

  .help-topic-card img {
    height: auto;
    max-height: 220px;
  }
}
