:root {
  color-scheme: light;
  --paper: #f7f2e8;
  --paper-strong: #fffaf0;
  --ink: #15120f;
  --ink-soft: #4f4942;
  --muted: #766d63;
  --line: rgba(21, 18, 15, 0.14);
  --line-strong: rgba(21, 18, 15, 0.26);
  --citrus: #c8f04f;
  --coral: #e56b5d;
  --aqua: #50b6b2;
  --plum: #6b4c7a;
  --shadow: 0 24px 70px rgba(21, 18, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #101623;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(16, 22, 35, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  display: inline-block;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px 4px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  color: rgba(16, 22, 35, 0.66);
}

.nav-links a,
.header-cta,
.button {
  text-decoration: none;
}

.nav-links a:hover,
.header-cta:hover {
  color: #0d766f;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #ff3158;
  border-radius: 999px;
  background: #ff3158;
  color: #ffffff;
  font-weight: 850;
  font-size: 0.9rem;
}

.header-cta:hover {
  background: #e8234c;
  border-color: #e8234c;
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: center;
  gap: clamp(34px, 5vw, 64px);
  padding: 112px clamp(18px, 4vw, 56px) clamp(44px, 7vh, 76px);
  background: #fbfbfd;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -34vw;
  height: 48vw;
  z-index: -3;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.12), transparent 66%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 58%, #f4f7fb 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 7%, rgba(255, 45, 85, 0.1), transparent 18%);
}

.hero-content {
  width: min(1500px, 100%);
  color: #1d1d1f;
  text-align: center;
}

.hero-product {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: start;
  justify-self: center;
  width: min(1180px, 94vw);
}

.hero-product img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  object-position: 50% 42%;
  border: 1px solid rgba(29, 29, 31, 0.12);
  box-shadow: 0 34px 90px rgba(29, 29, 31, 0.16);
}

.hero-badge {
  display: inline-grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: clamp(28px, 4vw, 44px);
  color: #ff3158;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 850;
}

.hero-app-icon {
  display: grid;
  place-items: center;
  width: clamp(86px, 9vw, 124px);
  height: clamp(86px, 9vw, 124px);
  border-radius: 28%;
  background: #ffffff;
  color: #ff3158;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 18px 58px rgba(29, 29, 31, 0.11);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #0d766f;
}

.hero h1 {
  max-width: 1240px;
  margin: 0 auto 28px;
  font-size: clamp(3.45rem, 5.8vw, 6.2rem);
  line-height: 0.98;
  font-weight: 900;
  color: #1d1d1f;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto 28px;
  color: rgba(29, 29, 31, 0.68);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 850;
  box-shadow: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: #ff3158;
  color: #ffffff;
  border-color: #ff3158;
}

.button-secondary {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.46);
  background: rgba(255, 250, 240, 0.08);
}

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

.pain-band,
.workflow-section,
.features-section,
.examples-section,
.audience-section,
.pricing-section,
.download-section,
.turn-section,
.faq-section,
.closing-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 86px;
  padding: clamp(72px, 10vw, 132px) 0;
}

.pain-band {
  background:
    repeating-linear-gradient(0deg, rgba(21, 18, 15, 0.045) 0 1px, transparent 1px 34px),
    #fffdf7;
  padding-top: clamp(34px, 4vw, 48px);
  border-top: 7px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.pain-band::before {
  content: "News Desk";
  position: absolute;
  top: clamp(24px, 4vw, 42px);
  right: clamp(18px, 4vw, 52px);
  color: rgba(21, 18, 15, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 11vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
  z-index: -1;
}

.pain-band .section-intro {
  max-width: 1020px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.pain-band h2 {
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  font-weight: 800;
  line-height: 0.92;
}

.section-intro {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-intro p,
.large-copy p,
.closing-inner p {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: transparent;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.pain-item {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 253, 247, 0.84);
  border-right: 1px solid rgba(21, 18, 15, 0.32);
  border-bottom: 1px solid rgba(21, 18, 15, 0.24);
}

.pain-item:nth-child(1),
.pain-item:nth-child(2) {
  grid-column: span 3;
}

.pain-item:nth-child(n + 3) {
  grid-column: span 2;
}

.pain-number {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 900;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 0.8;
}

.pain-item h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.pain-item p,
.steps p,
.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.turn-section {
  background:
    linear-gradient(120deg, rgba(200, 240, 79, 0.08), transparent 34%),
    #191510;
  color: var(--paper-strong);
}

.turn-section::before {
  content: "Review";
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  bottom: -0.16em;
  color: rgba(255, 250, 240, 0.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 20vw, 19rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.turn-section .split {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 240, 0.22);
}

.turn-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

.turn-section .large-copy p {
  color: rgba(255, 250, 240, 0.78);
}

.turn-section .large-copy p:first-child::first-letter {
  float: left;
  margin: 0.1em 0.12em 0 0;
  color: var(--citrus);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6em;
  line-height: 0.72;
}

.workflow-section {
  background:
    linear-gradient(90deg, rgba(21, 18, 15, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 18, 15, 0.08) 1px, transparent 1px),
    #e8f0ec;
  background-size: 72px 72px;
}

.workflow-section::before {
  content: "";
  position: absolute;
  top: clamp(42px, 8vw, 96px);
  right: clamp(18px, 5vw, 78px);
  width: clamp(88px, 13vw, 180px);
  aspect-ratio: 1;
  border: 14px solid #f2c84b;
  z-index: -1;
}

.workflow-section h2 {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(21, 18, 15, 0.2);
}

.steps article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 250, 240, 0.76);
  border-right: 1px solid rgba(21, 18, 15, 0.18);
  box-shadow: none;
}

.steps article:nth-child(2n) {
  background: rgba(242, 200, 75, 0.14);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  background: var(--ink);
  color: var(--paper-strong);
  font-weight: 900;
}

.features-section {
  background:
    linear-gradient(135deg, rgba(200, 240, 79, 0.36) 0 24%, transparent 24% 100%),
    #f4f0ff;
  color: #111014;
}

.features-section::before {
  content: "Special Package";
  position: absolute;
  top: clamp(28px, 5vw, 58px);
  left: clamp(18px, 4vw, 58px);
  color: rgba(17, 16, 20, 0.12);
  font-size: clamp(3.8rem, 10vw, 10rem);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  pointer-events: none;
  z-index: -1;
}

.features-section h2 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 8.2rem);
  line-height: 0.86;
  font-weight: 950;
  text-transform: uppercase;
}

.faq-section {
  background: #fffdf7;
  border-top: 1px solid var(--line-strong);
}

.faq-section h2 {
  max-width: 980px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-grid article {
  min-height: 285px;
  padding: 28px;
  background: #fffaf0;
  border: 3px solid #111014;
}

.feature-grid article:nth-child(2n) {
  background: #c8f04f;
}

.feature-grid article:nth-child(3n) {
  background: #50b6b2;
  color: #071412;
}

.feature-grid article:nth-child(4n) {
  background: #e56b5d;
  color: #111014;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border: 2px solid currentColor;
  color: inherit;
  font-weight: 900;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.examples-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 250, 240, 0.06) 1px, transparent 1px),
    #24342f;
  background-size: 88px 88px;
  color: var(--paper-strong);
}

.examples-section::before {
  content: "Proof";
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  top: clamp(40px, 7vw, 88px);
  color: rgba(255, 250, 240, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 900;
  line-height: 0.76;
  pointer-events: none;
  z-index: -1;
}

.examples-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 62px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.26);
}

.examples-masthead .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--citrus);
}

.examples-masthead h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6.2vw, 6.8rem);
  font-weight: 900;
  line-height: 0.92;
}

.examples-masthead p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.example-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 240, 0.24);
  border: 1px solid rgba(255, 250, 240, 0.24);
}

.example-card {
  display: flex;
  min-height: 640px;
  flex-direction: column;
  padding: 0;
  background: #24342f;
  overflow: hidden;
}

.example-card:nth-child(2) {
  background: #fffaf0;
  color: var(--ink);
}

.example-card:nth-child(3) {
  background: #c8f04f;
  color: var(--ink);
}

.example-card:nth-child(4),
.example-card:nth-child(7) {
  background: #15120f;
  color: var(--paper-strong);
}

.example-card:nth-child(5),
.example-card:nth-child(8) {
  background: #f4d7cb;
  color: var(--ink);
}

.example-card:nth-child(6),
.example-card:nth-child(9) {
  background: #e8f0ec;
  color: var(--ink);
}

.example-cover {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 250, 240, 0.24);
}

.example-body {
  display: flex;
  min-height: 330px;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 32px);
}

.example-kicker {
  margin-bottom: 38px;
  color: var(--citrus);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.example-card:nth-child(n + 2) .example-kicker {
  color: var(--coral);
}

.example-card:nth-child(3) .example-kicker,
.example-card:nth-child(6) .example-kicker,
.example-card:nth-child(9) .example-kicker {
  color: var(--plum);
}

.example-card h3 {
  max-width: 360px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 0.95;
}

.example-card p {
  color: rgba(255, 250, 240, 0.72);
}

.example-card:nth-child(2) p,
.example-card:nth-child(3) p,
.example-card:nth-child(5) p,
.example-card:nth-child(6) p,
.example-card:nth-child(8) p,
.example-card:nth-child(9) p {
  color: var(--ink-soft);
}

.example-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.example-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid currentColor;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.example-actions a:hover {
  background: var(--paper-strong);
  color: var(--ink);
}

.example-card:nth-child(n + 2) .example-actions a:hover {
  background: var(--ink);
  color: var(--paper-strong);
}

.audience-section {
  background:
    linear-gradient(90deg, rgba(107, 76, 122, 0.08) 0 50%, transparent 50% 100%),
    #f8e6ec;
}

.audience-section .split {
  align-items: stretch;
}

.audience-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  line-height: 1.04;
}

.audience-section .large-copy {
  padding-left: clamp(22px, 4vw, 48px);
  border-left: 1px solid rgba(21, 18, 15, 0.3);
}

.pricing-section {
  background:
    repeating-linear-gradient(90deg, rgba(21, 18, 15, 0.045) 0 1px, transparent 1px 80px),
    #f4d7cb;
  border-top: 1px solid rgba(21, 18, 15, 0.34);
  border-bottom: 1px solid rgba(21, 18, 15, 0.34);
}

.pricing-section .section-intro {
  max-width: 980px;
  padding-bottom: 28px;
  border-bottom: 3px double rgba(21, 18, 15, 0.54);
}

.pricing-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 0.95;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(21, 18, 15, 0.38);
}

.price-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 28px;
  background: rgba(255, 250, 240, 0.78);
  border: 0;
  border-right: 1px solid rgba(21, 18, 15, 0.38);
}

.featured-price {
  background: #15120f;
  color: var(--paper-strong);
  box-shadow: none;
}

.team-price {
  background: rgba(232, 240, 236, 0.82);
  border-right: 0;
}

.price-label {
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-price .price-label {
  color: var(--citrus);
}

.price-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 0.95;
}

.price-card h3 span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.featured-price h3 span,
.featured-price .expected-price,
.featured-price .price-fit,
.featured-price li {
  color: rgba(255, 250, 240, 0.74);
}

.expected-price {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.price-fit {
  min-height: 112px;
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--aqua);
}

.featured-price li::before {
  background: var(--citrus);
}

.price-button {
  width: 100%;
  background: var(--ink);
  color: var(--paper-strong);
  border-color: var(--ink);
}

.featured-price .price-button {
  background: var(--citrus);
  color: var(--ink);
  border-color: var(--citrus);
}

.download-section {
  background:
    repeating-linear-gradient(0deg, rgba(21, 18, 15, 0.045) 0 1px, transparent 1px 38px),
    #fffaf0;
  border-bottom: 1px solid rgba(21, 18, 15, 0.18);
}

.download-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.download-inner .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.download-inner h2 {
  max-width: 840px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  font-weight: 900;
  line-height: 0.95;
}

.download-inner p {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.download-actions {
  display: grid;
  gap: 12px;
}

.dark-button {
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
}

.closing-section {
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.07) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, rgba(200, 240, 79, 0.16) 0 28%, transparent 28% 100%),
    #15120f;
  color: var(--paper-strong);
  min-height: 72svh;
  display: grid;
  align-items: center;
}

.closing-inner {
  max-width: 1040px;
  text-align: center;
}

.closing-inner .eyebrow {
  color: var(--citrus);
}

.closing-inner p {
  width: min(760px, 100%);
  margin: 0 auto 30px;
  color: rgba(255, 250, 240, 0.78);
}

.closing-inner h2 {
  font-size: clamp(3rem, 8vw, 8.4rem);
  line-height: 0.9;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 48px);
  background: #15120f;
  color: rgba(255, 250, 240, 0.7);
  border-top: 1px solid rgba(255, 250, 240, 0.14);
}

.site-footer span:first-child {
  color: var(--paper-strong);
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-image {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 58%, #f4f7fb 100%);
    mask-image: none;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 60%);
  }

  .hero-product {
    width: min(920px, 94vw);
    justify-self: center;
  }

  .hero-product img {
    width: 100%;
  }

  .pain-item:nth-child(n) {
    grid-column: span 3;
  }

  .split,
  .steps,
  .feature-grid,
  .example-list,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .price-card {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 92px 18px 34px;
    gap: 28px;
  }

  .hero-product {
    display: block;
    width: min(620px, 100%);
  }

  .hero-product img {
    aspect-ratio: 1.45;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .hero-badge {
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 11vw, 4.25rem);
  }

  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .button {
    width: 100%;
  }

  .pain-grid {
    display: block;
  }

  .pain-item {
    min-height: auto;
    border-bottom: 1px solid var(--line);
  }

  .split,
  .steps,
  .feature-grid,
  .example-list,
  .pricing-grid,
  .download-inner {
    grid-template-columns: 1fr;
  }

  .steps article,
  .feature-grid article,
  .example-card,
  .price-card {
    min-height: auto;
  }

  .price-fit {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
