:root {
  --pace-blue: #1769ff;
  --pace-blue-deep: #074ce7;
  --pace-cyan: #04befe;
  --pace-navy: #07152f;
  --pace-ink: #101828;
  --pace-muted: #5d6b82;
  --pace-bg: #f5faff;
  --pace-card: rgba(255, 255, 255, 0.84);
  --pace-line: rgba(7, 21, 47, 0.1);
  --pace-success: #16b364;
  --white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(7, 21, 47, 0.08);
  --shadow-blue: 0 22px 60px rgba(23, 105, 255, 0.24);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pace-ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(23, 105, 255, 0.18), transparent 26%),
    radial-gradient(circle at 92% 16%, rgba(4, 190, 254, 0.18), transparent 28%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 42%, #f4f9ff 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(23, 105, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 62%);
}

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

img {
  height: auto;
}

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

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 11.8vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

h1 span {
  color: transparent;
  background: linear-gradient(110deg, var(--pace-blue), var(--pace-cyan) 72%);
  background-clip: text;
  -webkit-background-clip: text;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 7vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  letter-spacing: -0.035em;
}

p {
  color: var(--pace-muted);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}


.section-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 64px 0;
}

.narrow {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pace-blue-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  gap: 18px;
  align-items: center;
  min-height: 100svh;
  padding-top: 38px;
}

.hero-copy {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero-kicker .eyebrow {
  margin: 0;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0b3f24;
  background: rgba(22, 179, 100, 0.12);
  border: 1px solid rgba(22, 179, 100, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.platform-badge-dark {
  color: #eafff3;
  background: rgba(22, 179, 100, 0.2);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 0;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 0;
  color: #435168;
  font-size: 1.08rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-badges span,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(23, 105, 255, 0.14);
  border-radius: 999px;
  color: #14396f;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(7, 21, 47, 0.04);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.button {
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
}

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

.button:focus-visible,
summary:focus-visible {
  outline: 4px solid rgba(23, 105, 255, 0.26);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pace-blue), var(--pace-cyan));
  box-shadow: var(--shadow-blue);
}

.button-secondary {
  color: var(--pace-navy);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--pace-line);
}

.hero-actions .button-secondary {
  display: none;
}

.button-light {
  color: var(--pace-blue-deep);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.microcopy {
  margin: 2px 0 0;
  color: #69758b;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.hero-proof-stack {
  position: relative;
  display: flex;
  justify-content: center;
  isolation: isolate;
}

.hero-mockup-stack {
  width: min(92vw, 360px);
  max-height: 440px;
  margin: 4px auto 0;
}

.hero-mockup-img {
  display: block;
  width: 100%;
  max-height: 440px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(7, 21, 47, 0.12));
}


.phone-cluster {
  position: relative;
  width: min(100%, 350px);
  min-height: 600px;
  display: grid;
  place-items: center;
}

.phone-frame,
.mini-phone {
  overflow: hidden;
  margin: 0;
  background: #08111f;
  box-shadow: 0 34px 90px rgba(7, 21, 47, 0.28), 0 18px 70px rgba(23, 105, 255, 0.2);
}

.main-phone {
  position: relative;
  z-index: 2;
  width: min(100%, 312px);
  padding: 10px;
  border-radius: 44px;
}

.phone-frame img,
.mini-phone img {
  display: block;
  width: 100%;
  aspect-ratio: 720 / 1640;
  object-fit: cover;
  object-position: top center;
  border-radius: 34px;
}

.mini-phone {
  position: absolute;
  display: none;
  width: 150px;
  padding: 7px;
  border-radius: 30px;
  opacity: 0.92;
}

.mini-phone img {
  border-radius: 23px;
}

.floating-proof {
  position: absolute;
  z-index: 4;
  display: none;
  max-width: 190px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  color: var(--pace-navy);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(7, 21, 47, 0.12);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
}

.benefit-strip {
  display: grid;
  gap: 14px;
  padding-top: 0;
}

.benefit-infographic {
  padding-top: 0;
}

.benefit-infographic-mobile {
  display: none;
}

.benefit-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(18px, 3vw, 34px);
  box-shadow: 0 30px 90px rgba(7, 21, 47, 0.16);
}

@media (max-width: 979px) {
  .benefit-infographic-desktop {
    display: none !important;
  }

  .benefit-infographic-mobile {
    display: grid !important;
    gap: 14px;
  }
}

.benefit-image {
  position: relative;
  min-height: clamp(360px, 48vw, 520px);
  align-items: end;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(7, 21, 47, 0.78), rgba(7, 21, 47, 0.32) 48%, rgba(7, 21, 47, 0.06)),
    url("./assets/paceup-real/optimized/benefit-clarity.jpg") center / cover no-repeat;
  box-shadow: 0 30px 90px rgba(7, 21, 47, 0.16);
}

.benefit-image-copy {
  max-width: 520px;
  color: #fff;
}

.benefit-image-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-image-copy strong {
  display: block;
  max-width: 12ch;
  font-size: clamp(2.2rem, 5.4vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.benefit-image-points {
  display: grid;
  gap: 12px;
  margin-top: clamp(22px, 4vw, 44px);
}

.benefit-strip article,
.card,
.audience-card,
.comparison-card,
details,
.screen-card {
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: var(--pace-card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.benefit-strip article {
  padding: 20px;
  border-radius: 24px;
}

.benefit-strip strong,
.benefit-strip span {
  display: block;
}

.benefit-strip strong {
  margin-bottom: 6px;
  font-size: 1.03rem;
  letter-spacing: -0.04em;
}

.benefit-strip span {
  color: var(--pace-muted);
  font-size: 0.94rem;
}

.benefit-image .benefit-image-points article {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.9);
}

.problem {
  text-align: center;
}

.problem-lead,
.transition-copy,
.section-heading p:not(.eyebrow),
.final-cta p,
.offer-card p {
  font-size: 1.05rem;
}

.visual-pain-grid {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  text-align: left;
}

.visual-pain-card {
  overflow: hidden;
  border: 1px solid var(--pace-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.visual-pain-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.visual-pain-card figcaption {
  display: grid;
  gap: 7px;
  padding: 16px 18px 18px;
}

.visual-pain-card strong {
  color: var(--pace-navy);
  font-weight: 850;
}

.visual-pain-card span {
  color: #536070;
  font-size: 0.95rem;
  line-height: 1.45;
}

.transition-copy {
  margin-bottom: 0;
  color: var(--pace-navy);
  font-weight: 850;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cards {
  display: grid;
  gap: 16px;
}

.method-visual-section {
  max-width: 1180px;
}

.method-infographic {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(112, 175, 64, 0.22);
  border-radius: 24px;
  background: #07100e;
  box-shadow: 0 24px 70px rgba(17, 26, 38, 0.18);
}

.method-infographic img {
  display: block;
  width: 100%;
  height: auto;
}

.method-mobile-stack {
  display: none;
}

.method-mobile-stack img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(112, 175, 64, 0.22);
  border-radius: 22px;
  background: #07100e;
  box-shadow: 0 18px 54px rgba(17, 26, 38, 0.16);
}

.method-mobile-stack img + img {
  margin-top: 16px;
}

.method-visual-section .section-cta {
  margin-top: 22px;
}

.card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.card p {
  margin-bottom: 0;
}

.step-card {
  min-height: 210px;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pace-blue), var(--pace-cyan));
  font-weight: 900;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.app-proof-section {
  width: min(calc(100% - 16px), 1240px);
  padding-right: 8px;
  padding-left: 8px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(234, 243, 255, 0.82), rgba(255, 255, 255, 0.9));
}

.app-proof-grid {
  display: grid;
  gap: 18px;
}

.screen-card {
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0;
  padding: 13px;
  border-radius: 28px;
}

.screen-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  background: linear-gradient(180deg, #eef7ff, #d9ecff);
}

.screen-card figcaption {
  display: grid;
  gap: 5px;
  padding: 16px 4px 4px;
}

.screen-card figcaption strong {
  font-size: 1.04rem;
  letter-spacing: -0.04em;
}

.screen-card figcaption span {
  color: var(--pace-muted);
  font-size: 0.92rem;
}

.comparison-grid,
.audience-grid {
  display: grid;
  gap: 16px;
}

.comparison-card,
.audience-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.comparison-card ul,
.check-list,
.x-list,
.included-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-card li,
.check-list li,
.x-list li,
.included-list li {
  position: relative;
  padding: 14px 14px 14px 44px;
  border: 1px solid var(--pace-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  color: #26334b;
  font-weight: 760;
}

.comparison-card li::before,
.check-list li::before,
.x-list li::before,
.included-list li::before {
  position: absolute;
  left: 14px;
  top: 13px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.improviso li::before,
.x-list li::before {
  content: "–";
  color: #9b2c2c;
  background: #fff1f1;
}

.paceup-card,
.yes-card {
  border-color: rgba(23, 105, 255, 0.28);
  background:
    radial-gradient(circle at 90% 0%, rgba(4, 190, 254, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.9);
}

.paceup-card li::before,
.check-list li::before,
.included-list li::before {
  content: "✓";
  color: var(--white);
  background: var(--pace-blue);
}

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

.included-section .card h3::before {
  content: "✓";
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pace-success);
  font-size: 0.75rem;
  vertical-align: 2px;
}


.offer {
  position: relative;
}

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

.offer-heading p {
  max-width: 640px;
  margin-inline: auto;
}

.offer-layout {
  display: grid;
  gap: 18px;
}

.offer-benefits-card,
.price-card {
  border: 1px solid rgba(23, 105, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(7, 21, 47, 0.1);
  backdrop-filter: blur(16px);
}

.offer-benefits-card {
  padding: 24px;
}

.offer-mini-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--pace-blue-deep);
  background: rgba(23, 105, 255, 0.08);
  border: 1px solid rgba(23, 105, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

.offer-benefits-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.05;
}

.offer-included-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.offer-included-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border-radius: 16px;
  color: #26334b;
  background: #f7fbff;
  border: 1px solid rgba(23, 105, 255, 0.09);
  font-weight: 780;
}

.offer-included-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 13px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--pace-success);
  font-size: 0.72rem;
  font-weight: 900;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(4, 190, 254, 0.2), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.price-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.trust-badge-light {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0b3f24;
  background: rgba(22, 179, 100, 0.12);
  border: 1px solid rgba(22, 179, 100, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-overline {
  margin: 0 0 4px;
  color: var(--pace-muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-main {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--pace-navy);
}

.price-main .currency {
  margin-top: 10px;
  color: var(--pace-blue-deep);
  font-size: 1.45rem;
  font-weight: 900;
}

.price-main .price {
  font-size: clamp(4rem, 18vw, 5.7rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.075em;
}

.price-note {
  margin: 0 0 18px;
  color: #435168;
  font-size: 1rem;
  font-weight: 800;
}

.price-cta {
  width: 100%;
  min-height: 58px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  box-shadow: 0 22px 56px rgba(23, 105, 255, 0.3);
}

.price-microcopy {
  margin: 0 0 18px;
  color: #69758b;
  font-size: 0.9rem;
  font-weight: 750;
  text-align: center;
}

.price-trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.price-trust-row span {
  padding: 10px 12px;
  border-radius: 14px;
  color: #26334b;
  background: rgba(23, 105, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

@media (min-width: 720px) {
  .offer-layout {
    grid-template-columns: 1fr 0.82fr;
    align-items: stretch;
    gap: 22px;
  }

  .offer-benefits-card,
  .price-card {
    padding: 34px;
  }

  .price-card {
    position: sticky;
    top: 104px;
  }

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

.accordion {
  display: grid;
  gap: 12px;
}

details {
  border-radius: 20px;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.03em;
  list-style: none;
}

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

summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--pace-blue);
  background: rgba(23, 105, 255, 0.1);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: -4px 20px 20px;
}

.final-cta {
  text-align: center;
}

.final-cta .button {
  margin-top: 8px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 26px 0 46px;
  text-align: center;
}

.footer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.footer-note {
  max-width: 760px;
  color: #7a869a;
  font-size: 0.82rem !important;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  color: var(--pace-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--pace-blue-deep);
}

@media (max-width: 639px) {
  .method-infographic {
    display: none;
  }

  .method-mobile-stack {
    display: block;
  }
}

@media (min-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .button {
    width: auto;
    min-width: 250px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-items: start;
  }

  .hero-actions .microcopy {
    flex-basis: 100%;
    text-align: left;
  }

  .microcopy {
    text-align: left;
  }


  .hero-actions .button-secondary {
    display: inline-flex;
  }

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

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

@media (min-width: 760px) {
  .benefit-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-image {
    grid-template-columns: 1.05fr 1fr;
  }

  .benefit-image-points {
    align-self: end;
  }

  .app-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }

  .screen-card img {
    max-height: 540px;
  }

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

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

@media (min-width: 980px) {
  .section-shell {
    padding: 96px 0;
  }

  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
    grid-template-areas:
      "copy visual"
      "actions visual";
    column-gap: 44px;
    row-gap: 14px;
    padding-top: 54px;
  }

  .hero-copy {
    grid-area: copy;
    align-self: end;
    justify-items: start;
    padding-bottom: 0;
    text-align: left;
  }

  .hero-kicker {
    justify-content: flex-start;
  }

  .hero-actions {
    grid-area: actions;
    align-self: start;
  }

  .hero-proof-stack {
    grid-area: visual;
    justify-self: center;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 4.75vw, 5rem);
  }

  .hero-mockup-stack {
    width: min(100%, 460px);
    max-height: 640px;
    margin: 0;
  }

  .hero-mockup-img {
    max-height: 640px;
  }

  .phone-cluster {
    width: 460px;
    min-height: 660px;
  }

  .main-phone {
    width: 350px;
    transform: rotate(1.4deg);
  }

  .mini-phone {
    display: block;
  }

  .mini-phone-plan {
    left: -6px;
    top: 58px;
    transform: rotate(-8deg);
  }

  .mini-phone-progress {
    right: -2px;
    bottom: 70px;
    transform: rotate(7deg);
  }

  .floating-proof {
    display: block;
  }

  .proof-left {
    left: 0;
    top: 31%;
  }

  .proof-right {
    right: -8px;
    top: 20%;
  }

  .proof-bottom {
    right: 38px;
    bottom: 14%;
  }

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

  .app-proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }

  .featured-screen {
    grid-row: auto;
  }

  .screen-card img,
  .featured-screen img {
    max-height: 520px;
  }

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

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

  .offer-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  }

  .offer-benefits-card,
  .price-card {
    padding: 42px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: clamp(4.6rem, 5.9vw, 5.85rem);
  }

  .hero h1 {
    font-size: clamp(4rem, 4.8vw, 5.25rem);
  }

  .hero-mockup-stack {
    width: min(100%, 480px);
    max-height: 640px;
    margin-right: 0;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.55rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Final visual polish */

.hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.58;
}



.card,
.audience-card,
.comparison-card,
.screen-card,
.benefit-strip article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover: hover) {
  .card:hover,
  .audience-card:hover,
  .comparison-card:hover,
  .screen-card:hover,
  .benefit-strip article:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 72px rgba(7, 21, 47, 0.11);
    border-color: rgba(23, 105, 255, 0.16);
  }
}

.offer {
  width: min(calc(100% - 16px), 1240px);
  padding: 72px 16px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(23,105,255,0.16), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(4,190,254,0.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(239,247,255,0.92));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 34px 100px rgba(7,21,47,0.11);
}

.price-card {
  border-color: rgba(23, 105, 255, 0.22);
  box-shadow:
    0 30px 90px rgba(23, 105, 255, 0.18),
    0 12px 34px rgba(7, 21, 47, 0.08);
}

@media (min-width: 980px) {
  .app-proof-grid {
    grid-template-columns: 1.15fr repeat(3, 1fr);
  }

  .featured-screen {
    transform: translateY(-10px);
  }

  .featured-screen img {
    max-height: 560px;
  }
}

/* Final conversion/performance polish */
.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 10px 8px 8px;
  border-radius: 999px;
  color: #08204a;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(23,105,255,.42), rgba(4,190,254,.55)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 42px rgba(23,105,255,.14);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.hero-premium-badge .badge-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--pace-blue), var(--pace-cyan));
  box-shadow: 0 10px 24px rgba(23,105,255,.28);
}

.hero-premium-badge strong {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--pace-blue-deep);
  background: rgba(23,105,255,.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pace-navy);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(7,21,47,.10);
}

.price-card::after {
  content: none;
}


.price-cta {
  width: 100%;
  min-height: 72px;
  margin-bottom: 12px;
  padding-inline: 28px;
  font-size: clamp(1.08rem, 4.8vw, 1.22rem);
  border-radius: 20px;
  text-transform: none;
  box-shadow:
    0 24px 60px rgba(23,105,255,.34),
    inset 0 -2px 0 rgba(0,0,0,.12);
}

.price-cta::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.15em;
}

.price-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 72px rgba(23,105,255,.4),
    inset 0 -2px 0 rgba(0,0,0,.12);
}


@media (min-width: 980px) {
  .brand-symbol {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

/* Human transformation layer in hero: desktop only to keep mobile fast */
.hero-human-composition {
  position: relative;
  isolation: isolate;
}

.hero-runner-card,
.hero-woman-card {
  display: none;
}

.hero-human-composition .hero-mockup-img {
  position: relative;
  z-index: 2;
}

@media (min-width: 980px) {
  .hero-human-composition {
    width: min(100%, 620px);
    min-height: 680px;
    max-height: 700px;
    display: grid;
    place-items: center;
  }

  .hero-runner-card {
    position: absolute;
    z-index: 1;
    right: 8px;
    top: 34px;
    display: block;
    width: 58%;
    height: 78%;
    margin: 0;
    overflow: hidden;
    border-radius: 34px;
    background:
      linear-gradient(180deg, rgba(7,21,47,0.02), rgba(7,21,47,0.18)),
      linear-gradient(135deg, rgba(23,105,255,0.16), transparent 58%),
      url("./assets/paceup-real/optimized/runner-hero.webp") center / cover no-repeat;
    box-shadow: 0 30px 80px rgba(7, 21, 47, 0.16);
    transform: rotate(3deg);
  }

  .hero-woman-card {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 64px;
    display: block;
    width: 46%;
    height: 74%;
    margin: 0;
    overflow: hidden;
    border-radius: 34px;
    background:
      linear-gradient(180deg, rgba(7,21,47,0.02), rgba(7,21,47,0.16)),
      linear-gradient(135deg, rgba(40,184,106,0.18), transparent 58%),
      url("./assets/paceup-real/optimized/woman-runner.jpg") center / cover no-repeat;
    box-shadow: 0 30px 80px rgba(7, 21, 47, 0.14);
    transform: rotate(-3deg);
  }

  .hero-human-composition .hero-mockup-img {
    width: 96%;
    max-height: 690px;
    transform: translateX(0) rotate(-1.2deg);
    filter: drop-shadow(0 28px 54px rgba(7, 21, 47, 0.18));
  }
}

@media (min-width: 1180px) {
  .hero-human-composition {
    width: 640px;
  }

  .hero-human-composition .hero-mockup-img {
    transform: translateX(0) rotate(-1.2deg);
  }
}

/* Mobile runner layer: compact emotional cue behind the app mockup */
@media (max-width: 979px) {
  .hero-human-composition {
    width: min(92vw, 390px);
    min-height: 430px;
    max-height: none;
    display: grid;
    place-items: center;
  }

  .hero-runner-card {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 20px;
    display: block;
    width: 48%;
    height: 72%;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(7,21,47,0.02), rgba(7,21,47,0.16)),
      linear-gradient(135deg, rgba(23,105,255,0.14), transparent 58%),
      url("./assets/paceup-real/optimized/runner-hero.webp") center / cover no-repeat;
    box-shadow: 0 22px 54px rgba(7, 21, 47, 0.14);
    transform: rotate(3deg);
  }

  .hero-woman-card {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 42px;
    display: block;
    width: 42%;
    height: 66%;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(7,21,47,0.02), rgba(7,21,47,0.14)),
      linear-gradient(135deg, rgba(40,184,106,0.16), transparent 58%),
      url("./assets/paceup-real/optimized/woman-runner.jpg") center / cover no-repeat;
    box-shadow: 0 18px 46px rgba(7, 21, 47, 0.12);
    transform: rotate(-3deg);
  }

  .hero-human-composition .hero-mockup-img {
    width: 88%;
    max-height: 450px;
    transform: translateX(0) rotate(-1deg);
    filter: drop-shadow(0 20px 38px rgba(7, 21, 47, 0.16));
  }
}

@media (max-width: 380px) {
  .hero-human-composition {
    min-height: 400px;
  }

  .hero-human-composition .hero-mockup-img {
    width: 88%;
    max-height: 400px;
    transform: translateX(0) rotate(-1deg);
  }
}

/* Mobile runner height-only adjustment */
@media (max-width: 979px) {
  .hero-runner-card {
    height: 86%;
  }
}

@media (max-width: 380px) {
  .hero-runner-card {
    height: 84%;
  }
}

/* Thank-you page */
.thank-you-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 10%, rgba(23,105,255,0.18), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(4,190,254,0.16), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.thank-you-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-block: 40px;
}

.thank-you-card {
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(28px, 6vw, 54px);
  border-radius: 38px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 34px 100px rgba(7, 21, 47, 0.12);
  text-align: center;
}

.thank-you-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--pace-blue), var(--pace-cyan));
  box-shadow: 0 22px 52px rgba(23,105,255,0.28);
  font-size: 2.4rem;
  font-weight: 900;
}

.thank-you-badge {
  margin: 0;
}

.thank-you-card h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.5rem, 10vw, 4.4rem);
}

.thank-you-lead {
  max-width: 620px;
  color: #435168;
  font-size: clamp(1rem, 3.8vw, 1.18rem);
}

.thank-you-steps {
  width: 100%;
  display: grid;
  gap: 12px;
  margin: 10px 0 6px;
}

.thank-you-steps article {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(247,251,255,0.92);
  border: 1px solid rgba(23,105,255,0.10);
}

.thank-you-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--pace-blue-deep);
  background: rgba(23,105,255,0.10);
  font-weight: 900;
}

.thank-you-steps strong {
  color: var(--pace-navy);
}

.thank-you-steps p {
  font-size: 0.94rem;
}

.thank-you-whatsapp {
  width: min(100%, 420px);
  min-height: 68px;
  margin-top: 4px;
  border-radius: 20px;
  font-size: 1.05rem;
}

.thank-you-whatsapp::after {
  content: "→";
  margin-left: 10px;
}

.thank-you-note {
  color: #69758b;
  font-size: 0.94rem;
  font-weight: 800;
}

.thank-you-home {
  color: var(--pace-blue-deep);
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 760px) {
  .thank-you-steps {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* Thank-you compact override */
.thank-you-card-compact {
  width: min(100%, 620px);
  gap: 16px;
  padding: clamp(30px, 7vw, 48px);
}

.thank-you-card-compact .thank-you-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  font-size: 2rem;
}

.thank-you-card-compact h1 {
  font-size: clamp(2.35rem, 9vw, 3.8rem);
}

.thank-you-card-compact .thank-you-lead {
  max-width: 480px;
}
