:root {
  --bg: #fbfaf7;
  --alt: #f4f1eb;
  --panel: #ffffff;
  --text: #13252f;
  --muted: #5d6c75;
  --line: #dfe7e4;
  --brand-ink: #13252f;
  --brand-blue: #1769e8;
  --brand-blue-dark: #0d4ea3;
  --brand-blue-soft: #eaf2ff;
  --brand-line: #bfd3f2;
  --brand-gradient: linear-gradient(150deg, #13252f 0%, #0d4ea3 56%, #2f8cff 100%);
  --brand-blue-rgb: 23, 105, 232;
  --brand-blue-dark-rgb: 13, 78, 163;
  --accent: var(--brand-blue);
  --accent-dark: var(--brand-blue-dark);
  --shadow: 0 16px 36px rgba(18, 37, 47, .09);
  --soft-shadow: 0 8px 20px rgba(18, 37, 47, .045);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
main > section,
.page-hero {
  scroll-margin-top: 88px;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { color: var(--muted); margin: 0; }
.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: #fff; padding: 10px 12px; border-radius: 10px; z-index: 100; }
.skip-link:focus { left: 10px; }

.site-header {
  position: relative;
  top: auto;
  z-index: 50;
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 231, 228, .9);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { width: 150px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 760;
  color: var(--muted);
  font-size: .94rem;
}
.nav-links a:hover { color: var(--text); }
.nav-store-icons {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 2px;
}
.nav-store-icons a {
  display: inline-flex;
  padding: 0;
  opacity: .82;
  transition: opacity .16s ease, transform .16s ease;
}
.nav-store-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.nav-store-icons img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  border-radius: 999px;
}
.nav-cta,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: 850;
}
.nav-cta {
  background: var(--brand-gradient);
  color: #fff !important;
  padding: 10px 16px;
  box-shadow: 0 10px 20px rgba(var(--brand-blue-rgb), .2);
  transition: box-shadow .16s ease, transform .16s ease;
}
.nav-cta:hover {
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(var(--brand-blue-rgb), .25);
  transform: translateY(-1px);
}
.mobile-menu-button {
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 850;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.85rem, 5vw, 4.7rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
h3 { font-size: 1.18rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  border: 1px solid var(--brand-line);
  color: var(--brand-blue-dark);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 64px;
  background:
    linear-gradient(90deg, rgba(var(--brand-blue-rgb), .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(var(--brand-blue-rgb), .045) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf7 0%, #f7f4ef 100%);
  background-size: 56px 56px, 56px 56px, auto;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, transparent 0 46%, rgba(var(--brand-blue-dark-rgb), .08) 47% 53%, transparent 54%),
    linear-gradient(45deg, transparent 0 46%, rgba(var(--brand-blue-dark-rgb), .08) 47% 53%, transparent 54%);
  background-size: 92px 92px;
  background-position: 18px 24px, 31px 24px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .2) 42%, transparent 78%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 250, 247, .12), rgba(251, 250, 247, .74));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
  gap: 46px;
  align-items: center;
}
.hero-copy-block { max-width: 560px; }
.hero-eyebrow {
  margin: 0 0 16px;
  color: var(--brand-blue-dark);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 34rem;
  margin-top: 16px;
  font-size: 1.16rem;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 16px; }
.hero-secondary-link {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand-blue-dark);
  font-size: .96rem;
  font-weight: 850;
}
.hero-secondary-link:hover {
  color: var(--text);
}
.hero-trust {
  max-width: 34rem;
  color: var(--brand-blue-dark);
  font-size: .95rem;
  font-weight: 820;
}
.button {
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  background: #fff;
}
.button.primary {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(var(--brand-blue-rgb), .2);
}
.button.secondary { color: var(--text); }
.hero-media {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 430px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-stage {
  position: relative;
  width: min(100%, 360px);
  isolation: isolate;
}
.hero-phone-stage::before {
  content: '';
  position: absolute;
  inset: 8% -13% 5%;
  z-index: -1;
  border-radius: 34px;
  background: var(--brand-gradient);
  box-shadow: 0 26px 64px rgba(var(--brand-blue-dark-rgb), .2);
  transform: rotate(-2deg);
}
.hero-phone-stage::after {
  content: '';
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -5%;
  z-index: -2;
  height: 18%;
  border-radius: 50%;
  background: rgba(var(--brand-blue-dark-rgb), .28);
  filter: blur(26px);
}
.hero-phone-stage img {
  width: 100%;
  border-radius: 36px;
  filter: drop-shadow(0 22px 30px rgba(18, 37, 47, .24));
}

.section { padding: 68px 0; }
.section.compact { padding: 56px 0; }
.section.alt { background: var(--alt); }
.section-header { margin-bottom: 28px; }
.section-header.center { text-align: center; }
.section-header.center p { max-width: 680px; margin: 10px auto 0; }
.section-header .kicker { margin-bottom: 14px; }
.section-header p { margin-top: 12px; font-size: 1.06rem; }

.pain-section {
  padding: 58px 0 62px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f4f1eb 100%);
}
.pain-header {
  max-width: 860px;
}
.pain-header p {
  max-width: 650px;
}
.pain-scenarios {
  display: grid;
  grid-template-columns: .98fr .94fr 1.08fr;
  gap: 12px;
  margin: 0 0 24px;
}
.pain-scenarios p {
  min-height: 86px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(var(--brand-blue-rgb), .14);
  box-shadow: var(--soft-shadow);
  color: var(--brand-ink);
  font-weight: 760;
  line-height: 1.35;
}
.pain-grid {
  display: grid;
  grid-template-columns: .98fr .94fr 1.08fr;
  gap: 12px;
  align-items: stretch;
}
.pain-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--brand-ink);
  box-shadow: 0 22px 46px rgba(18, 37, 47, .13);
}
.pain-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.pain-card:nth-child(1) img {
  object-position: 42% 50%;
  filter: brightness(1.03) contrast(.96) saturate(.96);
}
.pain-card:nth-child(2) img {
  object-position: 58% 48%;
  filter: brightness(1.05) contrast(.96) saturate(.94);
}
.pain-card:nth-child(3) img {
  object-position: 58% 50%;
}

.admin-section {
  padding: 82px 0 70px;
  background:
    linear-gradient(180deg, #f4f1eb 0%, rgba(244, 241, 235, 0) 70px),
    radial-gradient(circle at 12% 0%, rgba(var(--brand-blue-rgb), .12), transparent 34%),
    linear-gradient(180deg, #eef6ff 0%, #f8fbff 100%);
  border-bottom: 1px solid rgba(var(--brand-blue-rgb), .12);
}
.admin-header {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.admin-header p {
  max-width: 760px;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.admin-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(var(--brand-blue-rgb), .18);
  box-shadow: 0 16px 34px rgba(18, 37, 47, .07);
}
.admin-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1;
}
.admin-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.16;
}
.admin-card p {
  margin-top: 12px;
  font-size: .98rem;
}
.admin-closing {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--brand-blue-dark);
  font-size: 1.02rem;
  font-weight: 760;
  text-align: center;
}

.wider-renewals-section {
  padding: 68px 0;
  background:
    linear-gradient(135deg, rgba(var(--brand-blue-rgb), .07) 0%, transparent 42%),
    linear-gradient(180deg, #fbfaf7 0%, #eef5fb 100%);
}
.wider-renewals-layout,
.scope-layout {
  display: grid;
  grid-template-columns: minmax(0, .56fr) minmax(280px, .44fr);
  gap: 34px;
  align-items: center;
}
.wider-renewals-copy {
  max-width: 620px;
}
.wider-renewals-copy h2,
.scope-copy h2 {
  margin-top: 12px;
}
.wider-renewals-copy p,
.scope-copy > p {
  margin-top: 12px;
  max-width: 38rem;
  font-size: 1.04rem;
}
.wider-renewals-emphasis {
  color: var(--brand-blue-dark);
  font-weight: 850;
}
.wider-renewals-list {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}
.wider-renewals-list article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 14px 18px 14px 52px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--brand-line);
  box-shadow: var(--soft-shadow);
}
.wider-renewals-list article::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 18px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--brand-gradient);
}
.wider-renewals-list article::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 25px;
  width: 10px;
  height: 6px;
  border: solid #fff;
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg) translate(1px, -1px);
}
.wider-renewals-list h3,
.scope-tile h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.16;
}
.wider-renewals-list p,
.scope-tile p {
  margin-top: 5px;
  font-size: .94rem;
}
.screenshot-proof {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
}
.screenshot-proof-add {
  justify-self: center;
}
.phone-frame {
  position: relative;
  isolation: isolate;
  width: min(100%, 310px);
  padding: 0;
  overflow: visible;
  border-radius: 38px;
  background: transparent;
  filter: drop-shadow(0 22px 30px rgba(18, 37, 47, .24));
}
.phone-frame::after {
  content: '';
  position: absolute;
  inset: 9% -16% 4%;
  z-index: -1;
  border-radius: 34px;
  background: var(--brand-gradient);
  opacity: .18;
  filter: blur(18px);
}
.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}
.screenshot-caption {
  max-width: 19rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.35;
  text-align: center;
}

.scope-section {
  padding: 76px 0;
  background: #fff;
}
.scope-layout {
  grid-template-columns: minmax(280px, .74fr) minmax(0, .96fr);
}
.scope-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.scope-tile {
  min-height: 180px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbfdfc);
  border: 1px solid var(--brand-line);
  box-shadow: var(--soft-shadow);
}
.scope-tile-accent {
  background: var(--brand-gradient);
  color: #fff;
  border-color: rgba(19, 37, 47, .72);
}
.scope-tile-accent p {
  color: rgba(255, 255, 255, .76);
}
.scope-tile-accent .note-label {
  color: #b9d7ff;
}

.founder-section {
  padding: 54px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(var(--brand-blue-rgb), .1), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #fbfaf7 100%);
  border-top: 1px solid rgba(var(--brand-blue-rgb), .1);
}
.founder-panel {
  display: grid;
  grid-template-columns: minmax(200px, .36fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--brand-line);
  box-shadow: var(--soft-shadow);
}
.founder-identity {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: 8px;
  min-height: 100%;
  padding: 8px 12px;
}
.founder-photo {
  width: 124px;
  height: 124px;
  margin: 0 auto 12px;
  border-radius: 999px;
  object-fit: cover;
  object-position: 50% 38%;
  border: 5px solid #fff;
  box-shadow: 0 14px 30px rgba(18, 37, 47, .16);
}
.founder-identity strong {
  color: var(--brand-ink);
  font-size: 1.28rem;
  line-height: 1.15;
}
.founder-identity span {
  color: var(--brand-blue-dark);
  font-weight: 850;
}
.founder-identity p {
  margin-top: 4px;
  font-size: .96rem;
}
.founder-note h2 {
  max-width: 44rem;
  margin-top: 12px;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}
.founder-note p {
  max-width: 46rem;
  margin-top: 12px;
  font-size: 1.03rem;
}
.founder-note .founder-signature {
  color: var(--brand-blue-dark);
  font-weight: 850;
}
.founder-signoff {
  display: grid;
  justify-items: start;
  gap: 2px;
  margin-top: 14px;
}
.founder-signoff img {
  width: min(100%, 190px);
  height: auto;
}
.founder-signoff .founder-signature {
  margin-top: 0;
}

.cta-band {
  padding: 40px 0;
  background: #fff;
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  border-radius: 22px;
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-panel h2 {
  margin-top: 10px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}
.cta-panel p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
}
.cta-panel .kicker {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .24);
  color: #d7e9ff;
}
.cta-panel .button.primary {
  flex: 0 0 auto;
  background: #fff;
  color: var(--brand-blue-dark);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
}
.card,
.content,
details,
.pricing-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
.card { padding: 22px; }

.renewal-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.renewal-note {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fbfdfc);
  border: 1px solid var(--brand-line);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}
.renewal-note h3 {
  max-width: 18rem;
  margin-top: 18px;
  font-size: 1.35rem;
  line-height: 1.12;
}
.renewal-note p {
  margin-top: 12px;
  max-width: 22rem;
}
.note-label {
  display: inline-flex;
  color: var(--brand-blue-dark);
  font-size: .74rem;
  font-weight: 850;
  text-transform: uppercase;
}
.note-reminder {
  background: var(--brand-gradient);
  border-color: rgba(19, 37, 47, .72);
  color: #fff;
}
.note-reminder p { color: rgba(255, 255, 255, .74); }
.note-reminder .note-label { color: #b9d7ff; }

.workflow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.step-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  padding: 26px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.step-card + .step-card {
  border-top: 1px solid rgba(var(--brand-blue-rgb), .14);
}
.step-card h3 {
  grid-column: 2;
  margin-top: 0;
}
.step-card p {
  grid-column: 2;
  margin-top: 2px;
  font-size: .96rem;
}
.step-check {
  grid-row: 1 / span 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-gradient);
}
.step-check::before {
  content: '';
  width: 12px;
  height: 7px;
  border: solid #fff;
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg) translate(1px, -1px);
}
.step-label {
  grid-column: 2;
  color: var(--brand-blue-dark);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-section {
  padding: 74px 0 62px;
  background: var(--bg);
}
.proof-grid {
  display: grid;
  grid-template-columns: minmax(250px, .58fr) minmax(0, 1.42fr);
  gap: 34px;
  align-items: center;
}
.proof-grid .section-header {
  margin-bottom: 0;
}
.proof-images {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items: end;
}
.proof-image {
  position: relative;
  aspect-ratio: 941 / 1672;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #d7e5e2;
  background: #fff;
  box-shadow: 0 24px 54px rgba(18, 37, 47, .12);
}
.proof-image-secondary {
  transform: translateY(28px);
}
.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-image-primary img {
  filter: brightness(.9) contrast(.9) saturate(.94);
}

.faq-section {
  background: var(--alt);
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1.26fr);
  gap: 34px;
  align-items: start;
}
.faq-grid .section-header {
  margin-bottom: 0;
}
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand-blue-dark);
  font-weight: 850;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  margin-bottom: 0;
  border-color: var(--brand-line);
}
.faq-list p {
  margin-top: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  padding: 26px;
}
.pricing-card.featured {
  border-color: var(--brand-line);
  box-shadow: var(--shadow);
}
.pricing-card.featured::before {
  content: 'Best for larger lists';
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}
.plan-label {
  color: var(--brand-blue-dark);
  text-transform: uppercase;
  font-weight: 850;
  font-size: .76rem;
}
.price {
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 900;
  margin: 12px 0;
}
.price span {
  display: block;
  font-size: .94rem;
  margin-top: 7px;
}
.plan-summary {
  max-width: 24rem;
  margin-top: 12px;
  font-size: .98rem;
}
.features {
  padding-left: 1.1rem;
  color: var(--muted);
  margin: 14px 0 0;
}
.features li { margin: .45rem 0; }
.pricing-value {
  max-width: 42rem;
  margin: 10px auto 0;
  color: var(--brand-blue-dark);
  font-size: .98rem !important;
  font-weight: 760;
}
.pricing-risk {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue-dark);
  font-size: .94rem;
  font-weight: 760;
}
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--brand-line);
  box-shadow: var(--soft-shadow);
  text-align: center;
}
.pricing-cta span {
  color: var(--muted);
  font-weight: 760;
}
.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--brand-blue-soft);
  border: 1px solid var(--brand-line);
}
.pricing-note strong {
  color: var(--brand-blue-dark);
  font-size: 1.02rem;
}
.pricing-note span {
  color: var(--muted);
}

.download-section {
  background: linear-gradient(180deg, #f7f4ef, #fbfaf7);
}
.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, .86fr);
  column-gap: 24px;
  row-gap: 18px;
  align-items: stretch;
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #d7e5e2;
  box-shadow: var(--shadow);
}
.download-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.download-copy .kicker {
  align-self: flex-start;
}
.download-panel h2 { margin-top: 12px; }
.download-panel p { margin-top: 12px; max-width: 42rem; }
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 26px;
}
.store-action {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
}
.store-action img {
  display: block;
  width: auto;
  height: 32px;
  flex: 0 0 auto;
}
.store-action.store-action-badge {
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.store-action.store-action-badge img {
  width: auto;
  height: 54px;
  border-radius: 7px;
}
.store-action.store-action-badge span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.store-action.store-action-ios {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.store-action.store-action-ios img {
  width: auto;
  height: 54px;
  border-radius: 7px;
}
.store-action.store-action-ios span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.download-card {
  display: grid;
  gap: 10px;
  align-self: center;
  padding: 24px;
  border-radius: 18px;
  background: var(--brand-gradient);
  color: #fff;
}
.download-card strong { font-size: 1.28rem; }
.download-card span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .88);
  font-weight: 760;
}

.page-hero { padding: 40px 0 12px; }
.page-hero h1 {
  font-size: clamp(2.35rem, 4.5vw, 3.8rem);
  margin-top: 10px;
}
.page-hero .hero-copy {
  margin-top: 14px;
  max-width: 54rem;
}
.content {
  padding: 32px;
  margin-bottom: 64px;
}
.content p,
.content li { color: var(--muted); }
.content p + p { margin-top: 10px; }
.content h2 {
  font-size: 1.65rem;
  margin-top: 28px;
}
.content h2:first-child { margin-top: 0; }
details {
  padding: 18px 20px;
  margin-bottom: 12px;
}
summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--text);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 34px 0 36px;
  background:
    linear-gradient(90deg, rgba(47, 140, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 140, 255, .04) 1px, transparent 1px),
    linear-gradient(180deg, #191f24 0%, #151b20 100%);
  background-size: 54px 54px, 54px 54px, auto;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, transparent 0 46%, rgba(47, 140, 255, .08) 47% 53%, transparent 54%),
    linear-gradient(45deg, transparent 0 46%, rgba(47, 140, 255, .08) 47% 53%, transparent 54%);
  background-size: 88px 88px;
  background-position: 16px 24px, 29px 24px;
  opacity: .45;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .18) 54%, transparent 86%);
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: 34px;
  align-items: start;
  padding: 34px;
  border-radius: 24px;
  background: #263038;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .22);
}
.footer img {
  width: 142px;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  background: #fff;
}
.footer p { margin: 0; }
.footer-brand p,
.footer-grid > div:first-child p { color: rgba(255, 255, 255, .78); }
.footer-lead {
  margin-bottom: 4px !important;
  color: #fff !important;
  font-weight: 850;
}
.footer-trust {
  margin-top: 14px !important;
  max-width: 680px;
  font-size: .72rem;
  color: rgba(255, 255, 255, .52) !important;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-end;
  font-weight: 760;
  color: rgba(255, 255, 255, .74);
}
.footer-links a:hover { color: #fff; }
.mobile-sticky-cta { display: none; }

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-compensation, 0px);
}

.launch-modal[hidden] {
  display: none;
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.launch-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 37, 47, .58);
}

.launch-modal-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 38px 36px 34px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(18, 37, 47, .26);
}

.launch-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  padding: 8px 11px;
  font-weight: 850;
  cursor: pointer;
}

.launch-modal h2 {
  max-width: 360px;
  margin: 0;
  padding-right: 70px;
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  line-height: 1.08;
}

.launch-form {
  margin-top: 28px;
}

.launch-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 850;
}

.launch-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
}

.launch-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
}

.launch-form-row .button {
  min-height: 52px;
  white-space: nowrap;
}

.launch-form input[type="email"]:focus {
  outline: 3px solid rgba(var(--brand-blue-rgb), .18);
  border-color: var(--brand-blue);
}

.launch-form-status {
  margin-top: 12px;
  font-size: .9rem;
}

.launch-form-status {
  min-height: 1.4em;
  color: var(--brand-blue-dark);
  font-weight: 760;
}

.hidden-field {
  display: none;
}

@media (max-width: 980px) {
  .mobile-menu-button { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; border-radius: 12px; }
  .nav-cta { text-align: center; }
  .hero-grid,
  .grid-2,
  .pricing-grid,
  .proof-grid,
  .founder-panel,
  .scope-layout,
  .split-section,
  .wider-renewals-layout,
  .workflow-steps,
  .faq-grid,
  .download-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 42px 0 52px; }
  .hero-grid { gap: 30px; }
  .hero-media {
    max-width: 360px;
    min-height: auto;
    justify-self: center;
  }
  .hero-phone-stage { width: min(100%, 300px); }
  .pain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pain-scenarios {
    grid-template-columns: 1fr;
  }
  .pain-scenarios p {
    min-height: 0;
  }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-card { min-height: 0; }
  .scope-layout,
  .wider-renewals-layout { gap: 28px; }
  .wider-renewals-copy {
    max-width: 100%;
  }
  .scope-tiles { grid-template-columns: 1fr; }
  .screenshot-proof-dashboard { order: 2; }
  .scope-copy { order: 1; }
  .phone-frame { width: min(100%, 290px); }
  .proof-section { padding: 56px 0 48px; }
  .proof-images {
    max-width: 680px;
    margin: 0 auto;
  }
  .proof-image-secondary { transform: translateY(18px); }
  .download-panel { min-height: 0; }
  .download-copy { min-height: 0; }
  .pricing-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .store-buttons {
    gap: 12px;
    margin-top: 22px;
  }
  .cta-panel,
  .pricing-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .pricing-cta {
    align-items: center;
  }
  .footer-links {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 68px; }
  .brand img { width: 136px; }
  h1 { font-size: clamp(2.4rem, 10vw, 3.15rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.35rem); }
  .hero-copy,
  .section-header p { font-size: 1rem; }
  .button,
  .hero-actions .button,
  .store-action { width: auto; }
  .store-buttons {
    gap: 10px;
    justify-content: center;
  }
  .hero-actions { gap: 10px; }
  main > section,
  .page-hero {
    scroll-margin-top: 82px;
  }
  .section { padding: 54px 0; }
  .section.compact { padding: 46px 0; }
  .pain-section { padding: 48px 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 260px; }
  .admin-section { padding: 58px 0 50px; }
  .admin-card { padding: 20px; }
  .founder-section { padding: 42px 0; }
  .founder-panel,
  .founder-identity {
    padding: 20px;
  }
  .cta-band { padding: 30px 0; }
  .cta-panel { padding: 22px; }
  .cta-panel .button,
  .pricing-cta .button {
    width: 100%;
  }
  .wider-renewals-section { padding: 50px 0; }
  .wider-renewals-list article,
  .scope-tile { padding: 16px; }
  .wider-renewals-list article {
    padding: 16px 18px 16px 54px;
  }
  .wider-renewals-list article::before {
    top: 18px;
    left: 18px;
    width: 30px;
    height: 30px;
  }
  .wider-renewals-list article::after {
    top: 28px;
    left: 27px;
  }
  .phone-frame {
    width: min(100%, 270px);
    padding: 0;
    border-radius: 38px;
  }
  .phone-frame img {
    height: auto;
    border-radius: 34px;
  }
  .proof-images { grid-template-columns: 1fr; }
  .proof-image { border-radius: 14px; }
  .proof-image-secondary { transform: none; }
  .card,
  .content,
  .download-panel,
  .footer-grid,
  .pricing-card,
  details { padding: 20px; }
  .scope-section { padding: 50px 0; }
  .scope-tile { min-height: 0; }
  .pricing-card.featured::before {
    position: static;
    display: inline-flex;
    margin-bottom: 10px;
  }
  .page-hero { padding-top: 30px; }
  .content { margin-bottom: 52px; }
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    min-height: 52px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: var(--brand-gradient);
    color: #fff;
    font-weight: 850;
    box-shadow: 0 16px 30px rgba(18, 37, 47, .22);
  }
  .launch-modal { padding: 16px; }
  .launch-modal-panel { padding: 34px 22px 24px; }
  .launch-modal-close { top: 12px; right: 12px; }
  .launch-modal h2 {
    max-width: 100%;
    padding-right: 62px;
    font-size: 1.55rem;
  }
  .launch-form { margin-top: 22px; }
  .launch-form-row { grid-template-columns: 1fr; }
  .launch-form-row .button { width: 100%; }
}
