:root {
  --cream: #fdf6ec;
  --cream-2: #fbf0de;
  --paper: #fffaf2;
  --peach: #f6d4bd;
  --rose: #ff3b3b;
  --rose-dark: #dd2525;
  --amber: #ffb020;
  --charcoal: #1e1e1e;
  --ink: #4f4740;
  --muted: #8a7d70;
  --line: rgba(30, 30, 30, 0.09);
  --shadow: 0 24px 70px rgba(30, 30, 30, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 24px 24px, rgba(30, 30, 30, 0.035) 1px, transparent 1.5px) 0 0 / 34px 34px,
    linear-gradient(180deg, #fdf6ec 0%, #fcf2e4 100%);
  color: var(--charcoal);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p {
  color: rgba(79, 71, 64, 0.78);
  line-height: 1.7;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--charcoal);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 236, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.04);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--charcoal);
  min-width: 0;
}

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

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

.site-header .brand span {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.text-link {
  color: rgba(30, 30, 30, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.text-link:hover {
  color: var(--charcoal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 16px 38px rgba(255, 59, 59, 0.25);
}

.button-primary:hover {
  background: var(--rose-dark);
}

.button-secondary {
  background: white;
  color: var(--charcoal);
  border: 1px solid var(--line);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(30, 30, 30, 0.06);
}

.menu-button span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero.original-hero {
  padding: 96px 0 88px;
}

.hero-grid,
.split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.hero-copy h1,
.center-block h1,
.policy-card h1,
.not-found h1 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.8vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.original-hero .hero-copy h1 {
  max-width: 720px;
  font-size: clamp(4rem, 6.4vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
}

.original-hero .hero-copy h1 span {
  display: block;
}

.original-hero .hero-copy h1 .br-mobile {
  display: none;
}

.original-hero .hero-copy h1 span,
.section-heading h2 span {
  color: var(--rose);
  font-style: italic;
  white-space: nowrap;
}

.hero-copy .lead {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  line-height: 1.55;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-badge {
  position: relative;
  margin-bottom: 28px;
  padding: 9px 17px 9px 27px;
  border: 0;
  background: white;
  box-shadow: 0 8px 22px rgba(30, 30, 30, 0.04);
  letter-spacing: 0;
  text-transform: none;
}

.live-badge::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--rose);
  transform: translateY(-50%);
}

.live-badge::after {
  content: "⌁⌁";
  position: absolute;
  left: 30px;
  bottom: -14px;
  color: var(--rose);
  font-size: 1rem;
  letter-spacing: -0.14em;
}

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

.hero-actions.centered {
  justify-content: center;
}

.play-button {
  gap: 12px;
  background: white;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(30, 30, 30, 0.04);
}

.play-button span {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--charcoal);
}

.ticker-band {
  overflow: hidden;
  padding: 32px 0 40px;
  border-block: 1px solid var(--line);
  background: rgba(251, 240, 222, 0.76);
  text-align: center;
}

.ticker-line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  width: max-content;
  min-width: 100%;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}

.ticker-band:hover .ticker-line {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
  padding-right: 62px;
}

.ticker-line span {
  position: relative;
  color: rgba(30, 30, 30, 0.33);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  font-style: italic;
  flex: 0 0 auto;
  margin-right: 62px;
  white-space: nowrap;
}

.ticker-line span::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 59, 59, 0.42);
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-band p {
  margin: 22px 0 0;
  color: rgba(79, 71, 64, 0.58);
  font-size: 0.88rem;
}

.ticker-band p strong {
  color: var(--charcoal);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
}

.proof-row span,
.proof-row strong {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
}

.avatar-stack {
  display: inline-flex;
}

.avatar-stack i {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-right: -6px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  color: white;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 900;
}

.avatar-stack i:nth-child(1) { background: #f6b36f; }
.avatar-stack i:nth-child(2) { background: #e9a3c7; }
.avatar-stack i:nth-child(3) { background: #8aa7ff; }
.avatar-stack i:nth-child(4) { background: #8acb8b; }

.rating-stars {
  color: #f7a600 !important;
  letter-spacing: 0.16em;
}

.product-panel {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.batchify-window {
  max-width: 460px;
  margin-left: auto;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 70px rgba(30, 30, 30, 0.13);
}

.batchify-window::after {
  content: "";
  display: block;
  height: 7px;
  margin-top: 18px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--rose) 0 23%, #ff976f 23% 43%, #ffc85b 43% 62%, rgba(30, 30, 30, 0.08) 62% 100%);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.panel-top span:nth-child(1) { background: #ff6059; }
.panel-top span:nth-child(2) { background: #ffbd2e; }
.panel-top span:nth-child(3) { background: #28c940; }

.panel-top strong {
  margin-left: auto;
  color: rgba(79, 71, 64, 0.48);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
}

.batchify-window .panel-top strong {
  display: none;
}

.batch-list,
.upload-stack,
.mini-list {
  display: grid;
  gap: 11px;
}

.batch-row,
.upload-card,
.extension-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream-2);
}

.batch-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 2px 14px;
  align-items: center;
  min-height: 56px;
  padding: 9px 12px;
  border-radius: 14px;
  background: #fff8ee;
}

.row-mark {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ded5c5;
  color: #8b8072;
  font-size: 0.82rem;
  font-weight: 900;
}

.batch-row.complete .row-mark {
  background: #12bf78;
  color: white;
}

.batch-row.active .row-mark {
  background: var(--rose);
  color: white;
}

.batch-row b,
.upload-card strong {
  font-size: 0.84rem;
}

.batch-row small,
.upload-card span {
  color: rgba(79, 71, 64, 0.62);
  font-size: 0.68rem;
}

.batch-row em {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  padding: 0;
  background: transparent !important;
  color: rgba(79, 71, 64, 0.45) !important;
  font-size: 0.66rem;
  font-style: normal;
}

.batch-row.complete em {
  background: #dff8e8;
  color: #147a42;
}

.batch-row.active em {
  background: rgba(255, 59, 59, 0.09);
  border-color: rgba(255, 59, 59, 0.25);
}

.upload-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.progress-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: var(--charcoal);
  color: white;
}

.progress-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.progress-card strong {
  display: block;
  margin: 4px 0 12px;
  font-family: var(--font-display);
  font-size: 2rem;
}

.batchify-window .progress-card {
  position: absolute;
  top: -17px;
  right: -18px;
  width: 96px;
  margin: 0;
  padding: 10px 12px 12px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(30, 30, 30, 0.22);
}

.batchify-window .progress-card span {
  text-transform: uppercase;
  font-size: 0.58rem;
  font-weight: 900;
}

.batchify-window .progress-card strong {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.24rem;
}

.batchify-window .progress-card .meter {
  display: none;
}

.meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--amber));
}

.extension-card {
  background: linear-gradient(145deg, var(--charcoal), #2a2623);
  color: white;
}

.extension-card p {
  color: rgba(255, 255, 255, 0.72);
}

.extension-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.extension-head em {
  padding: 5px 9px;
  border-radius: 999px;
  background: #dff8e8;
  color: #147a42;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.mini-list {
  margin-top: 16px;
}

.mini-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.section {
  position: relative;
  padding: 80px 0;
}

.section.visual-band {
  padding: 64px 0;
}

.section h2,
.center-block h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-intro {
  margin: 0;
  font-size: 1.05rem;
}

.reverse {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.06fr);
}

.card-grid,
.step-grid,
.pricing-grid,
.comparison-grid,
.metric-grid {
  display: grid;
  gap: 20px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.feature-card,
.step-card,
.price-card,
.comparison-card,
.table-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 14px 40px rgba(30, 30, 30, 0.06);
}

.feature-card,
.step-card,
.price-card,
.comparison-card {
  padding: 28px;
}

.icon-pill,
.tag,
.plan-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 59, 59, 0.1);
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3,
.step-card h3,
.price-card h3,
.comparison-card h2,
.feature-list h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.12;
}

.check-list,
.task-list,
.price-card ul,
.policy-card ul {
  padding-left: 20px;
  color: rgba(79, 71, 64, 0.78);
  line-height: 1.75;
}

.warm-band {
  overflow: hidden;
  background: rgba(251, 240, 222, 0.78);
}

.visual-band {
  background: var(--paper);
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: auto;
}

.image-frame-cover img {
  height: 430px;
  object-fit: cover;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.stats-strip .metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.metric-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.metric-grid strong {
  display: block;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 2rem;
}

.metric-grid span {
  color: rgba(79, 71, 64, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.center-block {
  max-width: 820px;
  text-align: center;
}

.center-block .eyebrow {
  margin-inline: auto;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.step-card span {
  display: block;
  margin-bottom: 20px;
  color: rgba(30, 30, 30, 0.12);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.comparison-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 64px 54px 48px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 26px 55px rgba(30, 30, 30, 0.07);
}

.comparison-card.muted {
  background: white;
}

.comparison-card.accent {
  background:
    radial-gradient(circle at 80% 88%, rgba(255, 59, 59, 0.24), transparent 34%),
    #20201f;
  color: white;
  border-color: transparent;
}

.comparison-card.accent p,
.comparison-card.accent .task-list {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-card .tag {
  position: absolute;
  top: -22px;
  left: 32px;
  margin: 0;
  padding: 10px 22px;
  border: 0;
  background: var(--charcoal);
  color: white;
  font-size: 0.9rem;
  line-height: 1;
}

.comparison-card.accent .tag {
  background: var(--rose);
}

.comparison-card h2 {
  display: none;
}

.task-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: tasks;
}

.comparison-card .task-list {
  margin-bottom: 0;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgba(30, 30, 30, 0.12);
}

.comparison-card.accent .task-list {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.task-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: center;
  min-height: 37px;
  padding-left: 34px;
  color: rgba(79, 71, 64, 0.7);
  font-size: 1.05rem;
}

.task-list li::before {
  counter-increment: tasks;
  content: counter(tasks);
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 59, 59, 0.5);
  border-radius: 50%;
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.comparison-card.accent .task-list li {
  color: white;
  font-weight: 800;
}

.comparison-card.accent .task-list li::before {
  content: "\2713";
  border-color: transparent;
  background: var(--rose);
  color: white;
}

.task-list li span {
  min-width: 0;
}

.task-list li em {
  color: rgba(79, 71, 64, 0.56);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.task-list li:last-child em {
  color: var(--rose);
}

.comparison-card.accent .task-list li em {
  color: #ffc22f !important;
}

.comparison-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
}

.comparison-total > span {
  color: rgba(79, 71, 64, 0.58);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-card.accent .comparison-total > span {
  color: rgba(255, 255, 255, 0.55);
}

.big-stat {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.05rem;
  text-align: right;
  line-height: 1;
  color: var(--rose);
}

.comparison-card.accent .big-stat {
  color: white;
}

.comparison-total .big-stat s {
  text-decoration-color: var(--rose);
  text-decoration-line: line-through;
  text-decoration-thickness: 5px;
}

.comparison-card.accent .comparison-total .big-stat {
  font-size: 2.8rem;
}

.comparison-card.accent .comparison-total .big-stat small {
  display: block;
  margin-top: 2px;
  color: #ffc22f;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 900;
}

.comparison-card p {
  margin: 8px 0 0;
  color: rgba(79, 71, 64, 0.45);
  font-size: 0.78rem;
  font-style: italic;
  text-align: center;
}

.comparison-card.accent p {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.comparison-card .speed-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-style: italic;
}

.comparison-card .speed-note i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a276;
}

.comparison-card .speed-note b {
  color: white;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.feature-list h3 {
  font-size: 1.18rem;
}

.feature-list article p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.quote-card {
  min-height: 274px;
  padding: 46px 54px 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 14px 40px rgba(30, 30, 30, 0.06);
  display: flex;
  flex-direction: column;
}

.quote-card .stars {
  margin-bottom: 22px;
  color: #ff9d12;
  font-size: 1.35rem;
  letter-spacing: 0.13em;
  line-height: 1;
}

.quote-card p {
  margin: 0;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgba(30, 30, 30, 0.12);
  color: var(--charcoal);
  font-size: 1.32rem;
  line-height: 1.55;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.reviewer .review-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-size: 1.45rem;
}

.reviewer strong {
  display: block;
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
}

.reviewer span:not(.review-icon) {
  display: block;
  margin-top: 4px;
  color: rgba(79, 71, 64, 0.62);
  font-size: 0.92rem;
}

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

.everything-section {
  padding: 80px 0 64px;
  background: rgba(251, 240, 222, 0.78);
}

.everything-section .section-heading {
  max-width: 980px;
  margin-bottom: 64px;
}

.everything-section h2 {
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 1.02;
}

.everything-section h2 em {
  font-style: italic;
}

.magic-grid {
  gap: 32px;
}

.magic-card {
  min-height: 270px;
  padding: 44px 38px 36px;
  border-color: rgba(30, 30, 30, 0.045);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.magic-card h3 {
  margin-top: 26px;
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.magic-card p {
  margin: 0;
  color: rgba(79, 71, 64, 0.72);
  font-size: 1.02rem;
  line-height: 1.6;
}

.icon-tile {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  font-size: 1.75rem;
}

.icon-peach { background: #fdeee7; }
.icon-rose { background: #fde5e7; }
.icon-amber { background: #fff1d8; }
.icon-mint { background: #d5f9e7; }
.icon-sky { background: #d9f1fb; }
.icon-lilac { background: #f1e2ff; }

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 28px auto 0;
}

.billing-option {
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(30, 30, 30, 0.35);
  transition: color 0.2s ease;
}

.billing-option.active {
  color: var(--charcoal);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s ease;
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(30, 30, 30, 0.15);
  transition: transform 0.2s ease;
}

.toggle-switch[aria-checked="true"] {
  background: var(--rose);
}

.toggle-switch[aria-checked="true"] .toggle-knob {
  transform: translateX(22px);
}

.toggle-switch:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.billing-badge {
  margin-left: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 59, 59, 0.1);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.credit-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 20px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--cream-2);
}

.credit-icon {
  font-size: 1.1rem;
}

.credit-badge strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
}

.credit-badge small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.credit-2x {
  display: none;
  position: absolute;
  top: -12px;
  right: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: #d5f9e7;
  color: #0a8c4a;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(10, 140, 74, 0.15);
}

.pricing-grid.is-yearly .credit-2x {
  display: inline-flex;
  align-items: center;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--charcoal);
  color: white;
  transform: translateY(-12px);
  padding-top: 44px;
}

.price-card.featured p,
.price-card.featured ul {
  color: rgba(255, 255, 255, 0.72);
}

.price-card.featured .plan-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 2;
  margin: 0;
  padding: 9px 24px;
  transform: translateX(-50%);
  background: var(--rose);
  color: white;
  box-shadow: 0 12px 28px rgba(255, 59, 59, 0.3);
}

.price-amount {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 3rem;
}

.price-period {
  color: rgba(79, 71, 64, 0.48);
  font-size: 0.95rem;
  font-weight: 800;
}

.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.58);
}

.price-card.featured .credit-badge {
  background: var(--cream-2);
}

.price-card.featured .credit-badge strong {
  color: var(--charcoal);
}

.price-card.featured .credit-badge small {
  color: var(--muted);
}

.price-card.featured .credit-icon {
  color: var(--rose);
}

.credit-badge strong {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.1;
}

.credit-badge small {
  font-size: 0.68rem;
  line-height: 1.1;
}

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

.table-card {
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

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

.table-row span {
  color: rgba(79, 71, 64, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.table-head {
  background: var(--charcoal);
}

.table-head span {
  color: white;
}

.narrow {
  max-width: 880px;
}

.faq-list {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--charcoal);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  background: var(--charcoal);
}

.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.site-footer {
  padding: 64px 0 28px;
  background: var(--charcoal);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 54px;
}

.footer-brand {
  color: white;
}

.footer-brand img {
  padding: 5px;
  border-radius: 12px;
  background: white;
  width: 40px;
  height: 40px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

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

.site-footer a:hover {
  color: white;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.footer-bottom a {
  display: inline;
  margin-left: 14px;
}

.compact-footer {
  padding-top: 24px;
}

.compact-footer .footer-bottom {
  margin-top: 0;
}

.policy-main {
  padding: 70px 0 30px;
}

.policy-card {
  max-width: 880px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}

.policy-card h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.policy-card h2 {
  margin: 38px 0 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.policy-card .updated {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.policy-card a {
  color: var(--rose);
  font-weight: 800;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px 0;
}

.stats-strip {
  padding-top: 10px;
  padding-bottom: 80px;
}

.stats-strip .metric-grid {
  gap: 0;
  padding: 48px 56px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 65px rgba(30, 30, 30, 0.08);
}

.metric-grid div {
  padding: 0 22px;
  background: transparent;
  border-radius: 0;
}

.metric-grid strong {
  color: var(--charcoal);
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  line-height: 0.92;
}

.metric-grid strong span {
  color: var(--rose);
}

.metric-grid b,
.metric-grid small {
  display: block;
}

.metric-grid b {
  margin-top: 8px;
  color: var(--charcoal);
  font-size: 0.88rem;
}

.metric-grid small {
  margin-top: 3px;
  color: rgba(79, 71, 64, 0.55);
  font-size: 0.72rem;
}

.how-section {
  padding-top: 80px;
  background: transparent;
}

.how-section .section-heading {
  max-width: 760px;
}

.how-section .section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 22px;
}

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

.how-grid article {
  position: relative;
  min-height: 245px;
  padding: 72px 28px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 48px rgba(30, 30, 30, 0.055);
}

.how-grid article em {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(30, 30, 30, 0.05);
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.step-icon {
  position: absolute;
  top: 26px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--rose);
  color: white;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(255, 59, 59, 0.24);
}

.button:focus-visible,
.site-nav a:focus-visible,
.menu-button:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 999px;
}

.menu-button:focus-visible {
  outline-offset: 4px;
}

@media (max-width: 940px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-actions {
    display: flex;
  }

  .nav-signin {
    display: none;
  }

  .nav-actions .button-small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .nav-menu-signin {
    display: block;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--rose);
    font-weight: 800;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: var(--cream-2);
    color: var(--charcoal);
  }

  .hero,
  .hero.original-hero {
    padding: 72px 0 56px;
  }

  .hero-grid,
  .split,
  .reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .original-hero .hero-grid {
    gap: 48px;
  }

  .product-panel,
  .batchify-window {
    margin-inline: auto;
    max-width: 620px;
  }

  .batchify-window {
    max-width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section.visual-band {
    padding: 56px 0;
  }

  .everything-section {
    padding: 64px 0 56px;
  }

  .stats-strip {
    padding-bottom: 56px;
  }

  .step-grid,
  .pricing-grid,
  .card-grid.three,
  .magic-grid,
  .stats-strip .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .pricing-grid {
    gap: 18px;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-grid,
  .card-grid.two,
  .comparison-grid,
  .how-grid,
  .metric-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-strip .metric-grid {
    padding: 32px 28px;
    gap: 24px;
  }

  .comparison-card {
    min-height: 0;
  }

  .magic-card,
  .how-grid article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero,
  .hero.original-hero {
    padding: 56px 0 48px;
  }

  .original-hero .hero-copy h1 {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.01em;
  }

  .original-hero .hero-copy h1 span {
    white-space: normal;
  }

  .original-hero .hero-copy h1 .br-mobile {
    display: inline;
  }

  .hero-copy h1,
  .center-block h1,
  .policy-card h1,
  .not-found h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .section h2,
  .center-block h2,
  .everything-section h2 {
    font-size: clamp(2.1rem, 9vw, 2.9rem);
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .hero-grid,
  .split,
  .reverse {
    gap: 36px;
  }

  .hero-actions,
  .proof-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-row {
    gap: 6px;
  }

  .button {
    width: 100%;
  }

  .button-small {
    width: auto;
  }

  .step-grid,
  .pricing-grid,
  .card-grid.two,
  .card-grid.three,
  .magic-grid,
  .metric-grid,
  .stats-strip .metric-grid,
  .how-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip .metric-grid {
    padding: 28px 22px;
    gap: 22px;
  }

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

  .policy-card {
    padding: 32px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .comparison-card {
    padding: 56px 26px 36px;
  }

  .magic-card {
    padding: 32px 26px;
  }

  .how-grid article {
    padding: 56px 24px 24px;
  }

  .quote-card {
    padding: 32px 24px;
  }

  .quote-card p {
    font-size: 1.08rem;
  }

  .comparison-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-total .big-stat {
    text-align: left;
  }

  .image-frame {
    border-radius: 22px;
  }

  .image-frame-cover img {
    height: 260px;
  }

  .batchify-window {
    padding: 18px;
  }

  .batchify-window .progress-card {
    position: static;
    width: auto;
    margin-top: 16px;
    padding: 14px 16px;
  }

  .batchify-window .progress-card .meter {
    display: block;
  }

  .batchify-window .progress-card span {
    font-size: 0.72rem;
  }

  .batchify-window::after {
    display: none;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-line {
    width: auto;
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 62px;
  }

  .ticker-group {
    display: contents;
  }

  .ticker-group[aria-hidden="true"] {
    display: none;
  }

  .menu-button span {
    transition: none;
  }

  .button {
    transition: none;
  }
}
