/* QuickPages public homepage */
:root {
  --ink: #183039;
  --ink-deep: #10262d;
  --ink-soft: #526a72;
  --coral: #f0654f;
  --coral-dark: #d94e3b;
  --coral-soft: #f9d7ce;
  --cream: #f8f3e9;
  --cream-dark: #eee4d2;
  --paper: #fffdf9;
  --white: #ffffff;
  --sage: #aed5bf;
  --sage-deep: #2f7158;
  --yellow: #f5c85b;
  --sky: #b7d9ea;
  --line: #dfe6e4;
  --shadow-sm: 0 12px 35px rgba(24, 48, 57, 0.08);
  --shadow-lg: 0 32px 80px rgba(20, 41, 48, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body,
button,
a {
  font-family: "DM Sans", sans-serif;
}

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

button {
  color: inherit;
}

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

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

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

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.94);
  border-color: rgba(24, 48, 57, 0.08);
  box-shadow: 0 8px 30px rgba(24, 48, 57, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 174px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #456069;
  font-size: 14px;
  font-weight: 600;
}

.primary-nav > a,
.nav-login {
  position: relative;
  transition: color 160ms ease;
}

.primary-nav > a::after,
.nav-login::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover,
.nav-login:hover {
  color: var(--ink-deep);
}

.primary-nav > a:hover::after,
.nav-login:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-large {
  min-height: 54px;
  padding: 0 24px;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 12px 28px rgba(240, 101, 79, 0.23);
}

.button-primary:hover {
  color: var(--white);
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  box-shadow: 0 16px 32px rgba(217, 78, 59, 0.28);
}

.button-quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(24, 48, 57, 0.16);
}

.button-quiet:hover {
  background: var(--white);
  border-color: rgba(24, 48, 57, 0.3);
  box-shadow: var(--shadow-sm);
}

.button-outline {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: transparent;
  border-color: rgba(24, 48, 57, 0.22);
}

.button-outline:hover {
  border-color: var(--ink);
}

.menu-toggle {
  width: 46px;
  height: 42px;
  display: none;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  width: 21px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: 900px;
  position: relative;
  padding: 150px 0 0;
  overflow: hidden;
  background: var(--cream);
}

.hero-grid,
.final-cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image: linear-gradient(rgba(24, 48, 57, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 48, 57, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 72%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 72%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-coral {
  width: 520px;
  height: 520px;
  top: -230px;
  right: -160px;
  background: rgba(240, 101, 79, 0.16);
}

.hero-orb-sage {
  width: 320px;
  height: 320px;
  bottom: 90px;
  left: -190px;
  background: rgba(174, 213, 191, 0.35);
}

.hero-layout {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  align-items: center;
  gap: 52px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.small-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 25px;
  height: 2px;
  display: inline-block;
  background: var(--coral);
}

.hero-copy h1,
.section-heading h2,
.workflow-heading h2,
.pricing-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink-deep);
  font-family: "Newsreader", serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero-copy h1 {
  max-width: 680px;
  margin-top: 22px;
  font-size: clamp(58px, 5.3vw, 78px);
}

.hero-copy h1 em {
  display: inline;
  position: relative;
  color: var(--coral-dark);
  font-style: normal;
  white-space: nowrap;
}

.hero-copy h1 em::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 2px;
  left: 1px;
  height: 8px;
  z-index: -1;
  background: var(--yellow);
  border-radius: 70% 40% 60% 30%;
  opacity: 0.65;
  transform: rotate(-1.5deg);
}

.hero-intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 23px;
  color: #61757c;
  font-size: 13px;
  font-weight: 600;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-facts svg {
  width: 16px;
  fill: none;
  stroke: var(--sage-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-product {
  min-height: 570px;
  position: relative;
}

.product-halo {
  position: absolute;
  inset: 48px -80px -14px 40px;
  background: rgba(240, 101, 79, 0.22);
  border-radius: 46% 54% 45% 55% / 50% 42% 58% 50%;
  transform: rotate(5deg);
}

.editor-window {
  width: 625px;
  max-width: 100%;
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(24, 48, 57, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.1deg);
}

.editor-topbar {
  height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  background: #fbfcfb;
  border-bottom: 1px solid #e7ecea;
  color: #597077;
  font-size: 10px;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  display: block;
  background: #d6dfdd;
  border-radius: 50%;
}

.window-dots i:first-child {
  background: #f08b7b;
}

.window-dots i:nth-child(2) {
  background: #f5c85b;
}

.window-dots i:nth-child(3) {
  background: #84c6a2;
}

.editor-page-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #54ad7c;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(84, 173, 124, 0.13);
}

.editor-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.editor-actions b {
  padding: 6px 10px;
  color: var(--white);
  background: var(--coral);
  border-radius: 7px;
  font-weight: 700;
}

.editor-body {
  height: 405px;
  display: grid;
  grid-template-columns: 144px 1fr;
}

.editor-panel {
  padding: 20px 15px;
  background: #f7f9f8;
  border-right: 1px solid #e4eae8;
}

.panel-label {
  color: #7b8c91;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-label-spaced {
  margin-top: 22px;
}

.panel-control {
  min-height: 62px;
  margin-top: 9px;
  padding: 9px;
  background: var(--white);
  border: 1px solid #e1e7e5;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(24, 48, 57, 0.03);
}

.panel-control.active {
  border-color: rgba(240, 101, 79, 0.65);
  box-shadow: 0 0 0 2px rgba(240, 101, 79, 0.08);
}

.panel-control span {
  display: block;
  margin-bottom: 7px;
  color: #476169;
  font-size: 8px;
  font-weight: 700;
}

.panel-control i {
  width: 100%;
  height: 4px;
  display: block;
  margin-top: 5px;
  background: #dfe6e4;
  border-radius: 999px;
}

.panel-control i:last-child {
  width: 65%;
}

.panel-control.compact {
  min-height: 47px;
}

.color-row {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.color-row i {
  width: 23px;
  height: 23px;
  display: block;
  background: var(--ink);
  border: 2px solid var(--white);
  border-radius: 7px;
  box-shadow: 0 0 0 1px #d6dfdd;
}

.color-row i:nth-child(2) { background: var(--coral); }
.color-row i:nth-child(3) { background: var(--cream); }
.color-row i:nth-child(4) { background: var(--sage); }

.editor-canvas {
  display: grid;
  place-items: center;
  padding: 23px;
  background: #e9eeec;
}

.campaign-preview {
  width: 100%;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1.15fr 0.66fr;
  grid-template-rows: 1fr auto;
  gap: 19px;
  position: relative;
  padding: 32px 31px 24px;
  overflow: hidden;
  background: #fff9eb;
  border-radius: 12px;
  box-shadow: 0 13px 35px rgba(24, 48, 57, 0.12);
}

.campaign-preview::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -105px;
  left: -85px;
  background: var(--coral-soft);
  border-radius: 50%;
}

.campaign-copy {
  position: relative;
  z-index: 1;
}

.campaign-kicker {
  display: inline-block;
  padding: 5px 8px;
  color: #9d4938;
  background: #f8d3c9;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.campaign-copy h2 {
  max-width: 260px;
  margin: 16px 0 10px;
  color: #17352d;
  font-family: "Newsreader", serif;
  font-size: 30px;
  line-height: 0.99;
  letter-spacing: -0.035em;
}

.campaign-copy p {
  max-width: 260px;
  margin: 0;
  color: #66776f;
  font-size: 9px;
  line-height: 1.55;
}

.campaign-points {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 6px 8px;
  margin-top: 20px;
}

.campaign-points span {
  color: var(--coral-dark);
  font-size: 7px;
  font-weight: 700;
}

.campaign-points i {
  width: 78%;
  height: 5px;
  display: block;
  background: #dce4da;
  border-radius: 999px;
}

.guide-card {
  min-height: 203px;
  display: grid;
  grid-template-columns: 12px 1fr;
  align-self: center;
  position: relative;
  z-index: 1;
  transform: rotate(3deg);
  filter: drop-shadow(10px 13px 13px rgba(24, 48, 57, 0.2));
}

.guide-spine {
  background: #d95843;
  border-radius: 4px 0 0 4px;
}

.guide-cover {
  display: flex;
  flex-direction: column;
  padding: 19px 14px;
  color: var(--white);
  background: #19382e;
  border-radius: 0 5px 5px 0;
}

.guide-cover small {
  color: var(--sage);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.guide-cover strong {
  margin: 27px 0 auto;
  font-family: "Newsreader", serif;
  font-size: 18px;
  line-height: 1.02;
}

.guide-cover span {
  font-size: 5px;
  letter-spacing: 0.15em;
}

.campaign-form {
  grid-column: 1 / -1;
  height: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding: 5px 5px 5px 13px;
  background: var(--white);
  border: 1px solid #dce4da;
  border-radius: 7px;
  box-shadow: 0 5px 15px rgba(24, 48, 57, 0.06);
}

.campaign-form span {
  color: #99a6a1;
  font-size: 8px;
}

.campaign-form b {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--white);
  background: var(--coral);
  border-radius: 5px;
  font-size: 8px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 48, 57, 0.08);
  box-shadow: 0 18px 50px rgba(24, 48, 57, 0.18);
  backdrop-filter: blur(10px);
}

.results-card {
  width: 276px;
  bottom: 20px;
  left: -30px;
  padding: 16px 18px 14px;
  border-radius: 15px;
  transform: rotate(-2deg);
}

.results-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #65797f;
  font-size: 9px;
  font-weight: 700;
}

.results-card > div b {
  color: #849398;
  font-size: 8px;
  font-weight: 600;
}

.results-card ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.results-card li {
  padding-right: 7px;
  border-right: 1px solid #e5eae8;
}

.results-card li:last-child {
  padding-right: 0;
  border: 0;
}

.results-card strong,
.results-card span {
  display: block;
}

.results-card strong {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -0.04em;
}

.results-card li span {
  color: #89989c;
  font-size: 7px;
  font-weight: 600;
}

.results-card .positive strong {
  color: var(--sage-deep);
}

.mobile-card {
  width: 98px;
  height: 188px;
  right: -16px;
  bottom: -7px;
  padding: 9px 7px;
  border: 4px solid var(--ink-deep);
  border-radius: 21px;
  transform: rotate(5deg);
}

.mobile-notch {
  width: 31px;
  height: 5px;
  margin: -4px auto 5px;
  background: var(--ink-deep);
  border-radius: 0 0 7px 7px;
}

.mobile-content {
  height: 162px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 9px;
  overflow: hidden;
  background: #fff9eb;
  border-radius: 12px;
}

.mobile-content i {
  width: 25px;
  height: 5px;
  margin-bottom: 12px;
  background: var(--coral);
  border-radius: 999px;
}

.mobile-content strong {
  color: #17352d;
  font-family: "Newsreader", serif;
  font-size: 13px;
  line-height: 1;
}

.mobile-content span {
  width: 100%;
  height: 4px;
  margin-top: 8px;
  background: #dfe5de;
  border-radius: 999px;
}

.mobile-content span:nth-of-type(2) {
  width: 68%;
}

.mobile-content b {
  width: 100%;
  margin-top: auto;
  padding: 6px 3px;
  color: var(--white);
  background: var(--coral);
  border-radius: 4px;
  font-size: 5px;
  text-align: center;
}

.capability-strip {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 3;
  margin-top: 34px;
  padding: 0 36px;
  background: var(--paper);
  border: 1px solid rgba(24, 48, 57, 0.09);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -12px 40px rgba(24, 48, 57, 0.05);
}

.capability-strip > span {
  color: var(--ink);
  font-family: "Newsreader", serif;
  font-size: 20px;
  font-weight: 600;
}

.capability-strip ul {
  display: flex;
  align-items: center;
  gap: 29px;
  margin: 0;
  padding: 0;
  color: #62767d;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.capability-strip li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.capability-strip i {
  width: 7px;
  height: 7px;
  display: block;
  background: var(--coral);
  border-radius: 2px;
  transform: rotate(45deg);
}

.capability-strip li:nth-child(2) i { background: var(--yellow); }
.capability-strip li:nth-child(3) i { background: var(--sage-deep); }
.capability-strip li:nth-child(4) i { background: #5e98b4; }
.capability-strip li:nth-child(5) i { background: var(--ink); }

.templates-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 46px;
}

.section-heading h2,
.workflow-heading h2,
.pricing-copy h2,
.faq-intro h2 {
  margin-top: 12px;
  font-size: clamp(43px, 4vw, 58px);
}

.section-heading > p,
.section-heading.centered p,
.workflow-heading p,
.pricing-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.section-heading.centered {
  max-width: 760px;
  display: block;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.centered p {
  margin-top: 20px;
}

.template-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.template-filters button {
  min-height: 39px;
  padding: 0 16px;
  color: #60747b;
  background: transparent;
  border: 1px solid #dfe6e4;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.template-filters button:hover,
.template-filters button.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.template-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(24, 48, 57, 0.11);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(24, 48, 57, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.template-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 48, 57, 0.22);
  box-shadow: 0 22px 45px rgba(24, 48, 57, 0.11);
}

.template-card[hidden] {
  display: none;
}

.template-preview {
  aspect-ratio: 1.48 / 1;
  position: relative;
  padding: 13px;
  overflow: hidden;
  border-bottom: 1px solid rgba(24, 48, 57, 0.08);
}

.template-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(24, 48, 57, 0.12);
  transition: transform 220ms ease;
}

.template-card:hover .template-preview img {
  transform: scale(1.035);
}

.template-preview-cream { background: #f2eadb; }
.template-preview-blue { background: #dce7ed; }
.template-preview-sky { background: #ddebfa; }
.template-preview-sand { background: #eee3d4; }
.template-preview-mint { background: #d9ebe3; }
.template-preview-lilac { background: #e8e2f0; }
.template-preview-yellow { background: #f3e8c9; }
.template-preview-rose { background: #efdedb; }

.template-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 5px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 48, 57, 0.08);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(24, 48, 57, 0.08);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.template-card-body {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
}

.template-card h3 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 15px;
  line-height: 1.25;
}

.template-card p {
  margin: 5px 0 0;
  color: #819196;
  font-size: 11px;
  line-height: 1.35;
}

.template-card a {
  flex: 0 0 auto;
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.template-card a span,
.templates-cta a span,
.faq-intro a span {
  display: inline-block;
  transition: transform 160ms ease;
}

.template-card a:hover span,
.templates-cta a:hover span,
.faq-intro a:hover span {
  transform: translateX(4px);
}

.templates-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 20px 23px;
  background: var(--cream);
  border-radius: 14px;
}

.templates-cta p {
  margin: 0;
  color: #65787e;
  font-size: 13px;
}

.templates-cta a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.workflow-noise {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.14) 1px, transparent 0);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(120deg, black, transparent 74%);
  mask-image: linear-gradient(120deg, black, transparent 74%);
}

.workflow-section .page-shell {
  position: relative;
  z-index: 2;
}

.section-kicker-light {
  color: var(--yellow);
}

.workflow-heading {
  max-width: 760px;
}

.workflow-heading h2,
.final-cta h2 {
  color: var(--white);
}

.workflow-heading p {
  max-width: 690px;
  margin-top: 22px;
  color: #b7c5c8;
}

.workflow-path {
  display: grid;
  grid-template-columns: 1fr 86px 1fr 86px 1fr;
  align-items: start;
  margin-top: 60px;
}

.workflow-step {
  min-height: 265px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.workflow-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 25px;
  color: var(--ink-deep);
  border-radius: 18px;
}

.workflow-icon.coral { background: var(--coral); color: var(--white); }
.workflow-icon.yellow { background: var(--yellow); }
.workflow-icon.sage { background: var(--sage); }

.workflow-icon > span {
  position: absolute;
  top: 7px;
  right: 8px;
  opacity: 0.6;
  font-size: 7px;
  font-weight: 700;
}

.workflow-icon svg,
.feature-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.workflow-step h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.workflow-step p {
  margin: 12px 0 0;
  color: #aebec1;
  font-size: 14px;
  line-height: 1.65;
}

.workflow-connector {
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 13px;
}

.workflow-connector span {
  width: 100%;
  height: 1px;
  position: relative;
  background: rgba(255, 255, 255, 0.22);
}

.workflow-connector span::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  transform: rotate(45deg);
}

.workflow-proof {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 68px;
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.small-label {
  color: var(--sage);
}

.workflow-proof-copy h3 {
  margin: 14px 0 16px;
  font-family: "Newsreader", serif;
  font-size: 39px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.workflow-proof-copy p {
  margin: 0;
  color: #adbdc0;
  font-size: 15px;
}

.funnel-board {
  overflow: hidden;
  color: var(--ink);
  background: #f9fbfa;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.funnel-board-head {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: var(--white);
  border-bottom: 1px solid #e5eae8;
  font-size: 12px;
  font-weight: 700;
}

.funnel-board-head b {
  padding: 4px 8px;
  color: var(--sage-deep);
  background: #e3f3ea;
  border-radius: 999px;
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.funnel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 22px;
}

.funnel-stats > div {
  padding: 13px 15px;
  background: #edf2f0;
  border-radius: 10px;
}

.funnel-stats strong,
.funnel-stats span {
  display: block;
}

.funnel-stats strong {
  color: var(--ink-deep);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.funnel-stats span {
  color: #788a8f;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.funnel-stats > div:nth-child(2) strong { color: var(--coral-dark); }
.funnel-stats > div:nth-child(3) strong { color: var(--sage-deep); }

.funnel-flow {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 22px 22px;
}

.funnel-flow > div {
  padding: 14px;
  background: var(--white);
  border: 1px solid #dfe6e4;
  border-radius: 10px;
}

.funnel-flow small,
.funnel-flow strong,
.funnel-flow span {
  display: block;
}

.funnel-flow small {
  color: var(--coral-dark);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.funnel-flow strong {
  margin-top: 5px;
  font-size: 11px;
}

.funnel-flow span {
  margin-top: 3px;
  color: #849499;
  font-size: 7px;
}

.funnel-flow svg {
  width: 100%;
  fill: none;
  stroke: #9badb1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.outcomes-section {
  background: #f6f1e8;
}

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

.outcome-card {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.outcome-coral { background: #f4c4b7; }
.outcome-ink { color: var(--white); background: #19343c; }
.outcome-yellow { background: #f1cf78; }

.outcome-number {
  position: absolute;
  z-index: 3;
  top: 23px;
  left: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.outcome-art {
  height: 330px;
  display: grid;
  place-items: center;
  padding: 40px 28px 20px;
}

.outcome-art-guide > div {
  width: 176px;
  height: 226px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 24px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 4px 13px 13px 4px;
  box-shadow: 18px 24px 35px rgba(113, 52, 42, 0.23);
  transform: rotate(-6deg);
}

.outcome-art-guide > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  background: var(--coral-dark);
  border-radius: 4px 0 0 4px;
}

.outcome-art-guide small {
  color: var(--sage);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.outcome-art-guide strong {
  margin: 42px 0 auto;
  font-family: "Newsreader", serif;
  font-size: 25px;
  line-height: 1;
}

.outcome-art-guide i {
  width: 43px;
  height: 7px;
  background: var(--yellow);
  border-radius: 999px;
}

.outcome-art-form {
  width: calc(100% - 24px);
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 25px;
  background: var(--white);
  border-radius: 19px;
  box-shadow: 0 25px 45px rgba(2, 17, 22, 0.28);
  transform: rotate(3deg);
}

.outcome-art-form small {
  margin-bottom: 17px;
  color: var(--coral-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.outcome-art-form i {
  height: 27px;
  margin-bottom: 9px;
  background: #edf1f0;
  border: 1px solid #dce4e2;
  border-radius: 7px;
}

.outcome-art-form b {
  margin-top: 4px;
  padding: 8px;
  color: var(--white);
  background: var(--coral);
  border-radius: 7px;
  font-size: 8px;
  text-align: center;
}

.outcome-art-test {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 12px;
}

.outcome-art-test > div {
  min-width: 138px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 48, 57, 0.1);
  border-radius: 15px;
  box-shadow: 0 13px 24px rgba(111, 83, 20, 0.1);
}

.outcome-art-test > div.winner {
  position: relative;
  background: var(--white);
  border: 2px solid var(--sage-deep);
  transform: translateY(-13px);
}

.outcome-art-test small,
.outcome-art-test strong {
  display: block;
}

.outcome-art-test small {
  color: #77898e;
  font-size: 7px;
  font-weight: 700;
}

.outcome-art-test strong {
  margin: 8px 0;
  color: var(--ink-deep);
  font-size: 28px;
}

.outcome-art-test span {
  width: 100%;
  height: 34px;
  display: block;
  background: linear-gradient(145deg, transparent 0 30%, #bed3cb 30% 34%, transparent 34% 50%, #7dac98 50% 54%, transparent 54%);
  border-bottom: 1px solid #d8e1de;
}

.outcome-art-test b {
  position: absolute;
  top: -10px;
  right: 10px;
  padding: 3px 6px;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: 5px;
  font-size: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-body {
  flex: 1;
  padding: 24px 28px 31px;
  background: rgba(255, 255, 255, 0.28);
}

.outcome-ink .outcome-body {
  background: rgba(0, 0, 0, 0.12);
}

.outcome-body > span {
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-ink .outcome-body > span {
  color: var(--yellow);
}

.outcome-body h3 {
  margin: 9px 0 11px;
  font-family: "Newsreader", serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.outcome-body p {
  margin: 0;
  color: rgba(24, 48, 57, 0.74);
  font-size: 13px;
  line-height: 1.65;
}

.outcome-ink .outcome-body p {
  color: rgba(255, 255, 255, 0.68);
}

.features-section {
  background: var(--paper);
}

.feature-bento {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 29px;
  background: var(--white);
  border: 1px solid rgba(24, 48, 57, 0.11);
  border-radius: 22px;
}

.feature-card-large {
  min-height: 620px;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  background: #f4eee2;
}

.feature-card-stats,
.feature-card-checks {
  min-height: 300px;
}

.feature-card-stats {
  background: #eaf3ef;
}

.feature-card-checks {
  background: #f7e4df;
}

.feature-card-delivery {
  grid-column: 1 / -1;
  min-height: 245px;
  display: grid;
  grid-template-columns: auto minmax(250px, 0.8fr) minmax(460px, 1.2fr);
  align-items: center;
  gap: 24px;
  background: var(--ink-deep);
  color: var(--white);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(24, 48, 57, 0.1);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(24, 48, 57, 0.07);
}

.feature-card h3 {
  max-width: 460px;
  margin: 22px 0 11px;
  color: inherit;
  font-family: "Newsreader", serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 510px;
  margin: 0;
  color: #65797f;
  font-size: 14px;
  line-height: 1.65;
}

.feature-card-delivery h3 {
  margin-top: 0;
}

.feature-card-delivery p {
  color: #adbdc0;
}

.inline-editor-demo {
  width: calc(100% + 15px);
  position: relative;
  margin-top: auto;
  overflow: hidden;
  background: #dfe7e3;
  border: 1px solid rgba(24, 48, 57, 0.1);
  border-radius: 17px 17px 0 0;
  box-shadow: 0 24px 45px rgba(24, 48, 57, 0.15);
  transform: translate(18px, 30px) rotate(-1deg);
}

.inline-toolbar {
  height: 39px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  color: #5f747a;
  background: var(--white);
  border-bottom: 1px solid #dce4e2;
  font-size: 8px;
  font-weight: 700;
}

.inline-toolbar span {
  padding: 4px 20px 4px 7px;
  background: #f2f5f4;
  border-radius: 5px;
}

.inline-toolbar b,
.inline-toolbar i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: #f2f5f4;
  border-radius: 5px;
  font-style: normal;
}

.inline-toolbar em {
  margin-left: auto;
  color: var(--sage-deep);
  font-style: normal;
}

.inline-page {
  min-height: 305px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 48px 46% 40px 42px;
  background: #fff9eb;
}

.inline-page::after {
  content: "";
  width: 170px;
  height: 230px;
  position: absolute;
  top: 38px;
  right: 35px;
  background: linear-gradient(135deg, #f6bdac 0 29%, #18382e 29% 82%, #f5c85b 82%);
  border: 8px solid var(--white);
  border-radius: 9px;
  box-shadow: 12px 18px 28px rgba(24, 48, 57, 0.17);
  transform: rotate(4deg);
}

.inline-page small {
  color: var(--coral-dark);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.inline-page strong {
  max-width: 300px;
  margin-top: 16px;
  color: var(--ink-deep);
  font-family: "Newsreader", serif;
  font-size: 31px;
  line-height: 1;
}

.inline-page span {
  margin-top: 13px;
  color: #73847f;
  font-size: 9px;
}

.inline-page b {
  margin-top: 23px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--coral);
  border-radius: 6px;
  font-size: 8px;
}

.inline-page i {
  position: absolute;
  top: 73px;
  left: 37px;
  width: 50%;
  height: 70px;
  border: 1px dashed var(--coral);
  border-radius: 4px;
  pointer-events: none;
}

.source-list {
  margin-top: 24px;
}

.source-list > div {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  color: #536b72;
  font-size: 9px;
  font-weight: 700;
}

.source-list > i {
  width: 100%;
  height: 7px;
  display: block;
  position: relative;
  margin-top: 5px;
  overflow: hidden;
  background: rgba(24, 48, 57, 0.09);
  border-radius: 999px;
}

.source-list > i::after {
  content: "";
  width: var(--size);
  height: 100%;
  display: block;
  background: var(--sage-deep);
  border-radius: inherit;
}

.check-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.check-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  color: #526970;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
}

.check-list i {
  width: 14px;
  height: 14px;
  display: block;
  position: relative;
  background: var(--sage-deep);
  border-radius: 50%;
}

.check-list i::after {
  content: "";
  width: 5px;
  height: 3px;
  position: absolute;
  top: 4px;
  left: 4px;
  border-bottom: 1px solid var(--white);
  border-left: 1px solid var(--white);
  transform: rotate(-45deg);
}

.check-list i.warning {
  background: var(--yellow);
}

.check-list i.warning::after {
  content: "!";
  width: auto;
  height: auto;
  top: -1px;
  left: 5px;
  color: var(--ink);
  border: 0;
  font-size: 9px;
  font-style: normal;
  transform: none;
}

.feature-card-delivery .feature-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.delivery-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
}

.delivery-row span {
  padding: 11px 14px;
  color: var(--ink-deep);
  background: var(--white);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
}

.delivery-row span:last-child {
  color: var(--white);
  background: var(--coral);
}

.delivery-row i {
  color: #788d92;
  font-style: normal;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background: #f4eee3;
}

.pricing-accent {
  width: 450px;
  height: 450px;
  position: absolute;
  right: -180px;
  bottom: -250px;
  background: rgba(240, 101, 79, 0.17);
  border-radius: 50%;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 78px;
  position: relative;
  z-index: 2;
}

.pricing-copy > p {
  margin-top: 22px;
}

.pricing-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 33px;
  padding-top: 25px;
  border-top: 1px solid rgba(24, 48, 57, 0.13);
}

.pricing-note > span {
  color: var(--coral-dark);
  font-family: "Newsreader", serif;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing-note p {
  margin: 0;
  color: #697d82;
  font-size: 12px;
  line-height: 1.45;
}

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

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

.price-card {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(24, 48, 57, 0.11);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.pro-card {
  padding-top: 41px;
  color: var(--white);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
  box-shadow: 0 28px 65px rgba(16, 38, 45, 0.24);
}

.price-ribbon {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 8px 13px 9px;
  color: var(--ink-deep);
  background: var(--yellow);
  border-radius: 0 0 9px 9px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-label {
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pro-card .price-label {
  color: var(--yellow);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 14px;
}

.price strong {
  font-family: "Newsreader", serif;
  font-size: 54px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price span {
  color: #75878c;
  font-size: 10px;
  font-weight: 700;
}

.pro-card .price span {
  color: #9eb0b4;
}

.price-card > p {
  min-height: 66px;
  margin: 17px 0 0;
  color: #718388;
  font-size: 12px;
  line-height: 1.55;
}

.pro-card > p {
  color: #a9b8bb;
}

.price-card ul {
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 22px 0 27px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(24, 48, 57, 0.1);
  list-style: none;
}

.pro-card ul {
  border-color: rgba(255, 255, 255, 0.11);
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #526970;
  font-size: 11px;
  font-weight: 600;
}

.pro-card li {
  color: #d4dddf;
}

.price-card li i {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  position: relative;
  background: #e4f2e9;
  border-radius: 50%;
}

.price-card li i::after {
  content: "";
  width: 5px;
  height: 3px;
  border-bottom: 1px solid var(--sage-deep);
  border-left: 1px solid var(--sage-deep);
  transform: rotate(-45deg) translateY(-1px);
}

.pro-card li i {
  background: rgba(174, 213, 191, 0.16);
}

.pro-card li i::after {
  border-color: var(--sage);
}

.price-card .button-primary {
  width: 100%;
  min-height: 48px;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p {
  margin-top: 22px;
}

.faq-intro > a {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 700;
}

.faq-list details {
  border-top: 1px solid #dfe6e4;
}

.faq-list details:last-child {
  border-bottom: 1px solid #dfe6e4;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: var(--ink-deep);
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  position: relative;
  background: var(--cream);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  top: 14px;
  left: 9px;
  background: var(--ink);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 700px;
  margin: -8px 0 27px;
  padding-right: 50px;
  color: #63777d;
  font-size: 14px;
  line-height: 1.72;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--coral-dark);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.final-cta::before {
  width: 380px;
  height: 380px;
  top: -180px;
  left: -130px;
  background: rgba(245, 200, 91, 0.28);
}

.final-cta::after {
  width: 460px;
  height: 460px;
  right: -180px;
  bottom: -300px;
  background: rgba(16, 38, 45, 0.18);
}

.final-cta-grid {
  opacity: 0.25;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 76%);
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  padding-top: 104px;
  padding-bottom: 104px;
  text-align: center;
}

.final-cta h2 {
  margin-top: 15px;
  font-size: clamp(50px, 5vw, 70px);
}

.final-cta p {
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.hero-actions-centered {
  justify-content: center;
  margin-top: 30px;
}

.button-light {
  color: var(--ink-deep);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 16px 35px rgba(100, 32, 21, 0.2);
}

.button-dark-quiet {
  color: var(--white);
  background: rgba(16, 38, 45, 0.17);
  border-color: rgba(255, 255, 255, 0.25);
}

.final-cta small {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .page-shell {
    width: min(100% - 42px, 1040px);
  }

  .primary-nav {
    gap: 20px;
  }

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

  .hero-layout {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-product {
    min-height: 520px;
  }

  .editor-window {
    width: 570px;
  }

  .editor-body {
    height: 380px;
  }

  .campaign-preview {
    min-height: 315px;
  }

  .mobile-card {
    right: -4px;
  }

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

  .workflow-path {
    grid-template-columns: 1fr 58px 1fr 58px 1fr;
  }

  .outcome-card {
    min-height: 560px;
  }

  .feature-card-delivery {
    grid-template-columns: auto 0.8fr 1.1fr;
  }

  .pricing-layout {
    gap: 42px;
  }

  .price-card {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 21px;
    left: 21px;
    display: none;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .primary-nav > a {
    padding: 8px;
  }

  .nav-actions {
    margin: 5px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .nav-login {
    padding: 8px;
  }

  .nav-actions .button {
    margin-left: auto;
  }

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

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

  .hero-copy h1 {
    font-size: clamp(56px, 9vw, 75px);
  }

  .hero-product {
    width: min(680px, 100%);
    min-height: 580px;
    margin: 20px auto 0;
  }

  .editor-window {
    width: 630px;
    max-width: calc(100% - 12px);
  }

  .capability-strip {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .capability-strip ul {
    flex-wrap: wrap;
    gap: 12px 24px;
  }

  .section-heading,
  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    max-width: 680px;
  }

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

  .workflow-path {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .workflow-step {
    min-height: 0;
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 0 20px;
  }

  .workflow-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .workflow-connector {
    display: none;
  }

  .workflow-proof {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .outcome-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .outcome-art {
    height: 410px;
  }

  .outcome-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .feature-bento {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-row: auto;
  }

  .feature-card-delivery {
    grid-column: auto;
    grid-template-columns: auto 1fr;
  }

  .delivery-row {
    grid-column: 1 / -1;
  }

  .pricing-layout {
    gap: 45px;
  }

  .pricing-copy {
    max-width: 680px;
  }

  .faq-layout {
    gap: 45px;
  }

  .faq-intro {
    position: static;
    max-width: 650px;
  }

}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 32px);
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .primary-nav {
    top: 64px;
    right: 16px;
    left: 16px;
  }

  .hero {
    padding-top: 116px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero-copy h1 {
    margin-top: 17px;
    font-size: clamp(46px, 13.6vw, 63px);
    line-height: 0.98;
  }

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

  .hero-intro {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-product {
    min-height: 480px;
    margin-top: 3px;
  }

  .product-halo {
    inset: 55px -60px 40px 30px;
  }

  .editor-window {
    top: 48px;
    right: -48px;
    width: 570px;
    max-width: none;
    transform: scale(0.77) rotate(1.1deg);
    transform-origin: top right;
  }

  .results-card {
    bottom: 58px;
    left: -7px;
    transform: scale(0.9) rotate(-2deg);
    transform-origin: bottom left;
  }

  .mobile-card {
    right: 1px;
    bottom: 20px;
    transform: rotate(5deg) scale(0.88);
    transform-origin: bottom right;
  }

  .capability-strip {
    margin-top: 0;
    border-radius: 18px 18px 0 0;
  }

  .capability-strip ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .section-heading h2,
  .workflow-heading h2,
  .pricing-copy h2,
  .faq-intro h2 {
    font-size: 42px;
  }

  .section-heading > p,
  .workflow-heading p,
  .pricing-copy > p,
  .faq-intro > p {
    font-size: 15px;
  }

  .template-filters {
    margin-right: -16px;
    padding-right: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .template-filters::-webkit-scrollbar {
    display: none;
  }

  .template-filters button {
    flex: 0 0 auto;
  }

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

  .template-card-body {
    min-height: 106px;
  }

  .templates-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-step {
    display: block;
    padding: 23px;
  }

  .workflow-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 19px;
  }

  .workflow-proof {
    margin-top: 50px;
    padding-top: 50px;
  }

  .funnel-stats {
    gap: 7px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .funnel-stats > div {
    padding: 10px;
  }

  .funnel-stats strong {
    font-size: 18px;
  }

  .funnel-flow {
    grid-template-columns: 1fr;
    padding-right: 13px;
    padding-left: 13px;
  }

  .funnel-flow svg {
    width: 35px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .outcome-card {
    display: flex;
  }

  .outcome-art {
    height: 325px;
  }

  .outcome-art-test > div {
    min-width: 128px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card-large {
    min-height: 610px;
  }

  .inline-editor-demo {
    width: calc(100% + 24px);
    transform: translate(12px, 26px) rotate(-1deg);
  }

  .inline-page {
    min-height: 315px;
    padding-right: 35%;
    padding-left: 25px;
  }

  .inline-page::after {
    width: 115px;
    height: 180px;
    right: 18px;
  }

  .inline-page strong {
    max-width: 210px;
    font-size: 26px;
  }

  .inline-page i {
    left: 20px;
    width: 56%;
  }

  .feature-card-delivery {
    display: block;
  }

  .feature-card-delivery .feature-icon {
    margin-bottom: 20px;
  }

  .delivery-row {
    margin-top: 25px;
    gap: 7px;
    padding: 12px 8px;
  }

  .delivery-row span {
    padding: 9px 8px;
    font-size: 8px;
  }

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

  .free-card {
    order: 2;
  }

  .pro-card {
    order: 1;
  }

  .price-card > p,
  .price-card ul {
    min-height: 0;
  }

  .faq-list summary {
    font-size: 20px;
  }

  .faq-list details p {
    padding-right: 8px;
  }

  .final-cta-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .final-cta h2 {
    font-size: 47px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
