:root {
  --ink: #18213b;
  --muted: #5f6880;
  --purple: #6657f5;
  --purple-dark: #4f22c7;
  --cyan: #20c7d9;
  --paper: #fff;
  --wash: #f3f5ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(145deg, #fafaff, #eef8fb);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.header {
  max-width: 1180px;
  margin: auto;
  padding: 28px;
}

.header img {
  width: 230px;
  height: auto;
}

.hero {
  max-width: 1180px;
  margin: 5vh auto;
  padding: 30px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ece9ff;
  color: #5949db;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.copy h1,
.status-card h1 {
  margin: 22px 0;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.copy p,
.status-card p {
  max-width: 610px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  margin-top: 18px;
  padding: 15px 24px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--purple), #5268fa 55%, var(--cyan));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(83, 76, 222, .28);
}

.button.disabled {
  opacity: .62;
  filter: grayscale(.2);
  cursor: not-allowed;
}

.copy small {
  display: block;
  margin-top: 15px;
  color: #7a8295;
}

.preview {
  padding: 16px;
  border: 1px solid #dde1f5;
  border-radius: 25px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 24px 70px rgba(40, 48, 100, .18);
  transform: rotate(1deg);
}

.browser {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 13px 13px 6px 6px;
  background: #edf0f7;
  color: #7b8291;
  font-size: 12px;
}

.browser i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7cad5;
}

.browser span {
  flex: 1;
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #fff;
}

.summary-card {
  margin-top: 12px;
  padding: 32px;
  border-radius: 10px;
  background: #fff;
}

.summary-card img {
  width: 52px;
  float: right;
}

.summary-card strong {
  font-size: 23px;
}

.summary-card p,
.summary-card li {
  color: var(--muted);
  line-height: 1.55;
}

.summary-card li {
  margin: 9px 0;
}

.read-aloud-summary-card {
  padding-top: 20px;
}

.read-aloud-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -2px -8px 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e2e6f3;
  color: #60687c;
  font-size: 14px;
  font-weight: 700;
}

.read-aloud-controls button,
.read-aloud-controls select {
  border: 1px solid #e0dcff;
  border-radius: 999px;
  background: #fff;
  color: var(--purple);
  font: inherit;
}

.read-aloud-controls button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
}

.read-aloud-controls .muted-control {
  color: #8d95a8;
  border-color: #e6e9f2;
  background: #fbfcff;
}

.read-aloud-controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.read-aloud-controls select {
  padding: 8px 30px 8px 12px;
  border-radius: 12px;
  color: var(--ink);
}

footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 28px;
  color: var(--muted);
}

footer a,
.text-link {
  color: inherit;
}

.centered {
  display: grid;
  grid-template-rows: 1fr auto;
}

.status-card {
  width: min(680px, calc(100% - 36px));
  margin: auto;
  padding: 55px;
  text-align: center;
  border: 1px solid #e0e3f4;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(40, 48, 100, .14);
}

.status-card h1 {
  font-size: 48px;
}

.status-card p {
  font-size: 18px;
}

.status-logo {
  width: 86px;
  margin-bottom: 25px;
}

.status-card .button {
  width: max-content;
  margin: 24px auto;
}

.text-link {
  display: block;
  margin-top: 20px;
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-header img {
  width: 224px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
}

.nav-button {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(83, 76, 222, .22);
}

.nav-button.disabled {
  opacity: .58;
  filter: grayscale(.2);
}

.content-page {
  max-width: 880px;
  margin: 56px auto 60px;
  padding: 48px;
  border: 1px solid #dde2f6;
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 54px rgba(30, 38, 88, .09);
}

.content-page h1 {
  margin: 20px 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.055em;
}

.content-page .lead {
  font-size: 20px;
}

.content-page h2 {
  margin-top: 34px;
  font-size: 24px;
}

.content-page p,
.content-page li {
  color: var(--muted);
  line-height: 1.65;
}

.content-page ul {
  padding-left: 24px;
}

.site-footer {
  margin-top: 20px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(105, 113, 150, .15);
}

.site-footer a {
  font-weight: 700;
  text-decoration: none;
}

body.marketing-home-page {
  background:
    radial-gradient(circle at 72% 16%, rgba(117, 87, 255, .13), transparent 34%),
    radial-gradient(circle at 6% 32%, rgba(45, 196, 239, .08), transparent 28%),
    linear-gradient(145deg, #fbfbff 0, #f6f7ff 48%, #fff 100%);
  color: #070d2a;
  overflow-x: hidden;
}

.marketing-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

.marketing-header {
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 32px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #07102f;
  text-decoration: none;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.045em;
}

.marketing-brand img {
  width: 42px;
  height: 42px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid rgba(127, 111, 220, .12);
  border-radius: 14px;
  background: #fff;
  color: #0b1433;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(54, 45, 114, .1);
}

.store-badge-disabled {
  color: #68718a;
}

.chrome-mark {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(#34a853 0 33%, #fbbc05 0 66%, #ea4335 0 84%, #4285f4 0);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .72);
}

.chrome-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #4285f4;
}

.marketing-hero {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(560px, 1.2fr);
  gap: 52px;
  align-items: start;
  padding: 26px 0 34px;
}

.marketing-copy {
  padding-top: 42px;
}

.marketing-eyebrow {
  display: block;
  margin-bottom: 22px;
  text-transform: uppercase;
  color: #5d36df;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .045em;
}

.marketing-copy h1 {
  position: relative;
  margin: 0 0 28px;
  color: #080e2a;
  font-size: clamp(58px, 6vw, 82px);
  line-height: 1.04;
  letter-spacing: -.065em;
}

.marketing-copy h1 span {
  position: relative;
  display: inline-block;
  color: #623be1;
}

.marketing-copy h1 span::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 8px;
  bottom: -10px;
  height: 16px;
  border: 4px solid #623be1;
  border-color: #623be1 transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(-2deg);
}

.marketing-copy p {
  max-width: 430px;
  margin: 0 0 36px;
  color: #56617a;
  font-size: 19px;
  line-height: 1.55;
}

.chrome-cta {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 16px 26px;
  border: 2px solid #0b58ff;
  border-radius: 14px;
  background: #fff;
  color: #0b48ff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(24, 75, 255, .08);
}

.chrome-cta-disabled {
  border-color: #94a4d8;
  color: #69738f;
  box-shadow: none;
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 26px;
  margin-top: 48px;
  color: #101832;
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.trust-row svg {
  display: inline-flex;
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 2px solid #623be1;
  border-radius: 50%;
  fill: none;
  stroke: #623be1;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.browser-demo {
  overflow: hidden;
  border: 1px solid rgba(80, 92, 130, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(50, 52, 103, .16);
}

.browser-top {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
  border-bottom: 1px solid #eef0f7;
}

.window-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}

.window-dot.red {
  background: #ff5c50;
}

.window-dot.yellow {
  background: #f8c648;
}

.window-dot.green {
  background: #39bd65;
}

.browser-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.browser-actions svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #66718d;
  stroke-width: 2.2;
  stroke-linejoin: round;
}

.demo-menu {
  position: relative;
  display: inline-flex;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #66718d;
  box-shadow: 0 -9px 0 #66718d, 0 9px 0 #66718d;
}

.browser-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 26px;
  padding: 22px 24px 20px;
}

.article-preview h2 {
  margin: 0;
  color: #08102c;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: -.02em;
}

.headline-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.headline-row button {
  padding: 11px 16px;
  border: 2px solid #0b58ff;
  border-radius: 10px;
  background: #fff;
  color: #0b48ff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.article-preview p {
  max-width: 370px;
  margin: 18px 0 22px;
  color: #3f4a66;
  font-size: 16px;
  line-height: 1.55;
}

.beach-scene {
  display: block;
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 8px;
}

.skeleton-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.skeleton-lines span {
  height: 10px;
  border-radius: 999px;
  background: #e6e7ed;
}

.skeleton-lines span:nth-child(2) {
  width: 86%;
}

.skeleton-lines span:nth-child(4) {
  width: 92%;
}

.skeleton-lines span:nth-child(6) {
  width: 78%;
}

.summary-demo {
  overflow: hidden;
  border: 1px solid #dfe4f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(30, 43, 86, .08);
}

.summary-demo header {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #e9edf6;
  color: #0b48ff;
}

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

.summary-demo header span {
  color: #5d667b;
  font-size: 28px;
  line-height: 1;
}

.summary-body {
  padding: 18px 20px;
}

.summary-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f3f6ff;
  color: #25345c;
  font-size: 12px;
  font-weight: 800;
}

.summary-body p {
  color: #263149;
  font-size: 14px;
  line-height: 1.48;
}

.summary-body ol {
  display: grid;
  gap: 13px;
  margin: 12px 0 18px;
  padding: 0;
  list-style: none;
  counter-reset: places;
}

.summary-body li {
  position: relative;
  padding-left: 56px;
  counter-increment: places;
  color: #38445f;
  font-size: 13px;
}

.summary-body li::before {
  content: counter(places);
  position: absolute;
  left: 0;
  top: -1px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf4ff;
  color: #0b48ff;
  font-weight: 900;
}

.summary-body li strong {
  display: block;
  margin-bottom: 3px;
  color: #0b1433;
}

.summary-body li span {
  display: block;
  line-height: 1.38;
}

.summary-body a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1.5px solid #0b58ff;
  border-radius: 7px;
  color: #0b48ff;
  text-decoration: none;
  font-weight: 900;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 12px 0 38px;
  padding: 18px 0;
  border-radius: 26px;
  background: rgba(245, 241, 255, .86);
  box-shadow: 0 24px 62px rgba(65, 52, 136, .1);
}

.benefit-strip article {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(119, 101, 192, .16);
}

.benefit-strip article:last-child {
  border-right: 0;
}

.benefit-strip h2 {
  margin: 12px 0 8px;
  font-size: 20px;
  letter-spacing: -.025em;
}

.benefit-strip p {
  margin: 0;
  color: #111832;
  line-height: 1.45;
}

.benefit-icon,
.step-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ebe5ff;
  color: #623be1;
}

.benefit-icon svg,
.step-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #623be1;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icon svg path:first-child[fill],
.step-icon svg path:first-child[fill] {
  fill: #623be1;
}

.how-section {
  padding: 12px 0 34px;
  text-align: center;
}

.how-section h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 34px;
  font-size: 29px;
  letter-spacing: -.04em;
}

.how-section h2::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -10px;
  height: 10px;
  border: 3px solid #623be1;
  border-color: #623be1 transparent transparent transparent;
  border-radius: 50%;
}

.steps-row {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.steps-row article {
  position: relative;
  padding: 0 26px;
}

.steps-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  left: calc(100% - 4px);
  width: 90px;
  border-top: 4px dotted rgba(98, 59, 225, .24);
}

.step-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 12px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  border-radius: 50%;
  background: #623be1;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.steps-row h3 {
  display: inline-block;
  margin: 0;
  font-size: 20px;
}

.steps-row p {
  max-width: 210px;
  margin: 12px auto 0;
  color: #121936;
  line-height: 1.45;
}

.bottom-cta {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  padding: 34px 30px 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4820bd, #651fe2 58%, #351a98);
  color: #fff;
  text-align: center;
}

.bottom-cta::before,
.bottom-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.bottom-cta::before {
  left: -90px;
  bottom: -130px;
  width: 270px;
  height: 270px;
}

.bottom-cta::after {
  right: -120px;
  top: -115px;
  width: 310px;
  height: 310px;
}

.bottom-cta h2,
.bottom-cta p,
.bottom-cta .chrome-cta,
.bottom-proof {
  position: relative;
  z-index: 1;
}

.bottom-cta h2 {
  margin: 0 0 8px;
  font-size: 29px;
  letter-spacing: -.035em;
}

.bottom-cta p {
  margin: 0 0 16px;
  color: #f2eeff;
  font-size: 18px;
}

.chrome-cta-light {
  min-width: 480px;
  justify-content: center;
  border-color: transparent;
  background: #fff;
  color: #623be1;
}

.bottom-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 16px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .marketing-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .marketing-copy {
    max-width: 660px;
    padding-top: 0;
  }

  .browser-content {
    grid-template-columns: 1fr;
  }

  .summary-demo {
    max-width: 360px;
  }

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

  .benefit-strip article:nth-child(2) {
    border-right: 0;
  }

  .benefit-strip article:nth-child(-n+2) {
    padding-bottom: 28px;
  }

  .benefit-strip article:nth-child(n+3) {
    padding-top: 28px;
    border-top: 1px solid rgba(119, 101, 192, .16);
  }

  .steps-row article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header img {
    width: 190px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 0;
  }

  .preview {
    transform: none;
  }

  .read-aloud-controls {
    flex-wrap: wrap;
  }

  .read-aloud-controls label {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .content-page {
    margin: 24px 18px 46px;
    padding: 30px 24px;
  }

  .site-header nav {
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .marketing-main {
    padding: 0 20px;
  }

  .marketing-header {
    padding: 22px 20px;
    align-items: flex-start;
  }

  .marketing-brand {
    font-size: 23px;
  }

  .store-badge {
    padding: 10px 12px;
    font-size: 13px;
  }

  .marketing-hero {
    padding-top: 18px;
  }

  .marketing-copy h1 {
    font-size: 46px;
  }

  .marketing-copy p {
    font-size: 18px;
  }

  .chrome-cta {
    padding: 13px 16px;
    font-size: 18px;
  }

  .trust-row {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
  }

  .browser-content {
    padding: 20px;
  }

  .headline-row {
    grid-template-columns: 1fr;
  }

  .beach-scene {
    height: 220px;
  }

  .benefit-strip,
  .steps-row {
    grid-template-columns: 1fr;
  }

  .benefit-strip article,
  .benefit-strip article:nth-child(n) {
    padding: 24px;
    border-right: 0;
    border-top: 1px solid rgba(119, 101, 192, .16);
  }

  .benefit-strip article:first-child {
    border-top: 0;
  }

  .chrome-cta-light {
    width: 100%;
    min-width: 0;
  }

  .bottom-proof {
    gap: 14px;
  }

  .site-footer {
    flex-wrap: wrap;
  }
}

.lp-variant {
  background:
    radial-gradient(circle at 12% 8%, rgba(103, 88, 245, .16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(32, 199, 217, .14), transparent 28%),
    linear-gradient(145deg, #fbfbff, #eef6ff);
}

.lp-topbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-topbar img {
  width: 218px;
  height: auto;
}

.lp-topbar span,
.lp-topbar nav a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.lp-topbar nav {
  display: flex;
  gap: 18px;
}

.lp-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 34px auto 0;
}

.lp-focused-grid,
.lp-proof-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.lp-focused-copy h1,
.lp-proof-hero h1 {
  margin: 22px 0;
  max-width: 660px;
  color: #08122f;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: .96;
  letter-spacing: -.06em;
}

.lp-focused-copy p,
.lp-proof-hero p {
  max-width: 610px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.lp-cta-row {
  margin-top: 14px;
}

.lp-primary-button {
  min-width: 285px;
  justify-content: center;
  font-size: 18px;
}

.lp-cta-row small {
  display: block;
  margin-top: 14px;
  color: #758095;
  font-weight: 700;
}

.lp-trust-row {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(102, 87, 245, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #33405f;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(40, 48, 100, .08);
}

.lp-demo-card,
.lp-proof-panel,
.lp-comparison,
.lp-bottom-cta,
.lp-feature-band {
  border: 1px solid rgba(115, 122, 170, .18);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 80px rgba(40, 48, 100, .16);
  backdrop-filter: blur(10px);
}

.lp-demo-card {
  overflow: hidden;
  border-radius: 30px;
}

.lp-browser-bar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid #e3e7f5;
  background: #fff;
  color: #788197;
  font-size: 13px;
}

.lp-browser-bar i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ff5f56;
}

.lp-browser-bar i:nth-child(2) {
  background: #ffbd2e;
}

.lp-browser-bar i:nth-child(3) {
  background: #27c93f;
}

.lp-browser-bar span {
  margin-left: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f3f5fc;
}

.lp-page-preview {
  min-height: 430px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 26px;
}

.lp-page-preview strong {
  display: block;
  max-width: 260px;
  margin-bottom: 22px;
  color: #0d1838;
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.lp-page-preview p {
  height: 13px;
  max-width: 360px;
  border-radius: 999px;
  background: #e8ebf2;
}

.lp-page-preview p:nth-child(3) {
  max-width: 310px;
}

.lp-page-preview p:nth-child(4) {
  max-width: 345px;
}

.lp-page-preview aside {
  padding: 22px;
  border: 1px solid #dfe4f4;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(40, 48, 100, .12);
}

.lp-page-preview aside img {
  width: 42px;
}

.lp-page-preview aside b {
  display: block;
  margin: 14px 0 10px;
  font-size: 18px;
}

.lp-page-preview aside p,
.lp-page-preview aside li {
  height: auto;
  max-width: none;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.lp-page-preview aside ul {
  padding-left: 18px;
}

.lp-feature-band {
  width: min(1180px, calc(100% - 56px));
  margin: 58px auto 0;
  padding: 28px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lp-feature-band div {
  display: grid;
  gap: 8px;
}

.lp-feature-band b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ece9ff;
  color: var(--purple-dark);
}

.lp-feature-band strong {
  font-size: 19px;
}

.lp-feature-band span {
  color: var(--muted);
  line-height: 1.45;
}

.lp-proof-hero {
  padding-bottom: 20px;
}

.lp-proof-panel {
  padding: 34px;
  border-radius: 30px;
}

.lp-proof-panel h2,
.lp-bottom-cta h2 {
  margin: 0 0 22px;
  color: #08122f;
  font-size: 34px;
  letter-spacing: -.04em;
}

.lp-proof-list {
  display: grid;
  gap: 15px;
}

.lp-proof-list article {
  padding: 18px;
  border: 1px solid #e3e7f5;
  border-radius: 18px;
  background: #fff;
}

.lp-proof-list b {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.lp-proof-list span,
.lp-comparison p,
.lp-bottom-cta p {
  color: var(--muted);
  line-height: 1.5;
}

.lp-comparison {
  width: min(1180px, calc(100% - 56px));
  margin: 50px auto 0;
  padding: 28px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.lp-comparison div {
  padding: 26px;
  border-radius: 22px;
  background: #fff;
}

.lp-comparison span {
  color: var(--purple-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lp-comparison h3 {
  margin: 12px 0 10px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.lp-bottom-cta {
  width: min(1180px, calc(100% - 56px));
  margin: 50px auto 0;
  padding: 42px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .18), transparent 26%),
    linear-gradient(135deg, var(--purple-dark), #6028dd 55%, var(--purple));
}

.lp-bottom-cta h2 {
  color: #fff;
}

.lp-bottom-cta .button {
  background: #fff;
  color: var(--purple-dark);
}

@media (max-width: 900px) {
  .lp-focused-grid,
  .lp-proof-hero,
  .lp-page-preview,
  .lp-feature-band,
  .lp-comparison {
    grid-template-columns: 1fr;
  }

  .lp-shell,
  .lp-feature-band,
  .lp-comparison,
  .lp-bottom-cta {
    width: min(100% - 32px, 1180px);
  }

  .lp-topbar {
    padding: 22px 16px;
    align-items: flex-start;
  }

  .lp-topbar img {
    width: 185px;
  }

  .lp-focused-copy h1,
  .lp-proof-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 560px) {
  .lp-topbar {
    flex-direction: column;
  }

  .lp-primary-button {
    width: 100%;
    min-width: 0;
  }

  .lp-page-preview,
  .lp-proof-panel,
  .lp-bottom-cta {
    padding: 22px;
  }
}

/* ── homepage hero (ad-creative style) ─────────────────────────── */
.hp-hero {
  padding: 60px 32px 72px;
  text-align: center;
}

.hp-hero-inner {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-headline {
  margin: 0 0 20px;
  font-size: clamp(10px, 7vw, 25px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.05em;
  color: #0a0f24;
}

.hp-headline-accent {
  color: #3b4ff5;
}

.hp-subhead {
  margin: 0 0 36px;
  font-size: 20px;
  font-weight: 500;
  color: #56617a;
}

.hp-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 34px;
  border-radius: 16px;
  background: #1ea34b;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: background .15s;
}

.hp-cta:hover {
  background: #198f41;
}

.hp-cta .chrome-mark {
  width: 32px;
  height: 32px;
}

.hp-cta-disabled {
  background: #8aab97;
  cursor: not-allowed;
}

.hp-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
  color: #7a8295;
  font-weight: 600;
}

.hp-trust-dot {
  opacity: .5;
}

@media (max-width: 600px) {
  .hp-hero {
    padding: 40px 24px 56px;
  }

  .hp-headline {
    font-size: 46px;
  }

  .hp-cta {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 16px 24px;
  }

  .hp-trust {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── homepage CTA prominence upgrade (additive only) ───────────── */
@keyframes hp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(30, 163, 75, .55), 0 8px 28px rgba(30, 163, 75, .35); }
  60%  { box-shadow: 0 0 0 14px rgba(30, 163, 75, 0), 0 8px 28px rgba(30, 163, 75, .35); }
  100% { box-shadow: 0 0 0 0 rgba(30, 163, 75, 0),  0 8px 28px rgba(30, 163, 75, .35); }
}

.hp-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}

.hp-cta-arrow {
  font-size: 28px;
  line-height: 1;
  color: #1ea34b;
  margin-bottom: 10px;
  animation: hp-arrow-bob .9s ease-in-out infinite;
}

@keyframes hp-arrow-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.hp-cta-prominent {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 44x 45px;
  border-radius: 18px;
  background: #1ea34b;
  color: #fff;
  text-decoration: none;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -.01em;
  min-width: 360px;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(30, 163, 75, .35);
  animation: hp-pulse 2s ease-out infinite;
  transition: background .15s, transform .1s;
}

.hp-cta-prominent:hover {
  background: #178c3f;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(30, 163, 75, .45);
  animation: none;
}

.hp-cta-prominent:active {
  transform: translateY(0);
}

.hp-cta-prominent .chrome-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.hp-cta-prominent-disabled {
  background: #8aab97;
  box-shadow: none;
  animation: none;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .hp-cta-prominent {
    min-width: 0;
    width: 100%;
    font-size: 20px;
    padding: 20px 28px;
  }
}
/* ── landing-homepage-template hero ────────────────────────────── */
.landing-homepage-template .marketing-header {
  justify-content: center;
}

.hp-hero {
  padding: 56px 32px 64px;
  text-align: center;
}

.hp-hero-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 44px 48px;
  border-radius: 16px;
  background: #1ea34b;
  color: #fff;
  text-decoration: none;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -.01em;
  width: 100%;
  max-width: 560px;
  white-space: nowrap;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(30, 163, 75, .38);
  transition: background .15s, transform .12s, box-shadow .15s;
}

.hp-cta-btn:hover {
  background: #178c3f;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30, 163, 75, .48);
}

.hp-cta-btn:active {
  transform: translateY(0);
}

.hp-cta-btn .chrome-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.hp-cta-btn-disabled {
  background: #8aab97;
  box-shadow: none;
  cursor: not-allowed;
}

.hp-headline {
  margin: 36px 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.05em;
  color: #0a0f24;
}

.hp-headline-accent {
  color: #3b4ff5;
}

.hp-subhead {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 500;
  color: #56617a;
}

.hp-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #7a8295;
  font-weight: 600;
}

.hp-trust-dot {
  opacity: .4;
}

@media (max-width: 600px) {
  .hp-cta-btn {
    font-size: 20px;
    padding: 18px 28px;
  }

  .hp-headline {
    font-size: 38px;
  }
}

/* Political quiz acquisition test */
.political-quiz-page {
  background:
    radial-gradient(circle at 50% -10%, rgba(0, 84, 255, .08), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  color: #07122f;
}

.quiz-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: start;
}

.quiz-hero {
  text-align: center;
}

.quiz-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: #07122f;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.quiz-check {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 4px solid #07122f;
  border-radius: 50%;
  color: #ed1111;
  font-size: 32px;
  line-height: 1;
}

.quiz-hero h1 {
  max-width: 760px;
  margin: 0 auto 14px;
  color: #07122f;
  font-size: clamp(48px, 5.9vw, 76px);
  line-height: .94;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.quiz-hero p {
  max-width: 590px;
  margin: 0 auto 18px;
  color: #263452;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.25;
}

.quiz-spectrum {
  display: grid;
  grid-template-columns: auto repeat(3, 1fr) 48px repeat(3, 1fr) auto;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto 18px;
  color: #263452;
  font-weight: 900;
}

.quiz-spectrum i {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0758ff, #5426d8, #ee1111);
}

.quiz-spectrum b {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 4px solid #8a27b5;
  border-radius: 50%;
  background: #fff;
  color: #07122f;
  font-size: 28px;
}

.quiz-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
  color: #07122f;
  font-size: 18px;
  font-weight: 800;
}

.quiz-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 18, 47, .08);
}

.quiz-card {
  max-width: none;
  margin: 0 auto;
  padding: 30px 34px 34px;
  border: 1px solid #dbe2ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(7, 18, 47, .14);
}

.quiz-progress {
  margin-bottom: 18px;
}

.quiz-progress strong {
  display: block;
  margin-bottom: 14px;
  color: #ed1111;
  font-size: 22px;
}

.quiz-progress span {
  display: block;
  height: 8px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0758ff, #ed1111);
  transition: width .2s ease;
}

.quiz-card h2 {
  margin: 0 0 20px;
  color: #07122f;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #dbe2ef;
  border-radius: 10px;
  background: #fff;
  color: #07122f;
  font: inherit;
  font-size: 19px;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .12s;
}

.quiz-option span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 3px solid #8c94a3;
  border-radius: 50%;
}

.quiz-option:hover,
.quiz-option.selected {
  border-color: #0758ff;
  box-shadow: 0 10px 28px rgba(7, 88, 255, .12);
  transform: translateY(-1px);
}

.quiz-option.selected span {
  border-color: #0758ff;
  box-shadow: inset 0 0 0 7px #fff;
  background: #0758ff;
}

.quiz-note {
  margin: 20px 0 12px;
  color: #263452;
  font-size: 24px;
  font-style: italic;
  text-align: center;
}

.quiz-next {
  display: block;
  width: 100%;
  padding: 22px 26px;
  border: 0;
  border-radius: 17px;
  background: linear-gradient(180deg, #ff1515, #df0000);
  color: #fff;
  font: inherit;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(226, 0, 0, .24);
}

.quiz-next:disabled,
.quiz-next-disabled {
  opacity: .52;
  cursor: not-allowed;
  box-shadow: none;
}

.quiz-result-cta {
  margin-top: 8px;
}

.quiz-result {
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f6f8ff, #fff);
  text-align: center;
}

.quiz-result span {
  color: #65708a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.quiz-result strong {
  display: block;
  margin: 12px 0;
  color: #07122f;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.quiz-result p {
  max-width: 620px;
  margin: 0 auto 20px;
  color: #263452;
  font-size: 20px;
  line-height: 1.45;
}

.quiz-result small {
  display: block;
  margin-top: 14px;
  color: #65708a;
  font-weight: 700;
}

.quiz-next-disabled {
  margin-top: 8px;
  background: #9aa4b8;
}

.quiz-footer {
  padding-bottom: 36px;
}

@media (max-width: 900px) {
  .quiz-shell {
    width: min(100% - 24px, 940px);
    padding-top: 28px;
    display: block;
  }

  .quiz-brand {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .quiz-check {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .quiz-spectrum {
    grid-template-columns: auto repeat(3, 1fr) 44px repeat(3, 1fr) auto;
    gap: 5px;
    margin-bottom: 14px;
  }

  .quiz-spectrum b {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .quiz-card {
    padding: 24px 18px 28px;
    margin-top: 18px;
  }

  .quiz-option {
    padding: 16px;
    font-size: 17px;
  }

  .quiz-next {
    padding: 22px 18px;
  }
}
