:root {
  --cream: #f3ede2;
  --cream-2: #ece2d4;
  --sand: #e1d3bf;
  --paper: #fbf8f2;
  --espresso: #2c2620;
  --espresso-2: #39322b;
  --brown: #87644c;
  --brown-deep: #5e4636;
  --clay: #b98e6c;
  --ink: #2a241f;
  --muted: #6f665b;
  --line: rgba(44, 38, 32, .12);
  --shadow-sm: 0 1px 2px rgba(44, 38, 32, .06), 0 4px 16px rgba(44, 38, 32, .06);
  --shadow-md: 0 8px 40px rgba(44, 38, 32, .14);
  --shadow-lg: 0 30px 80px rgba(44, 38, 32, .22);
  --r: 18px;
  --maxw: 1160px;
  --display: 'Newsreader', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
}

p {
  margin: 0;
}

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

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

ul {
  margin: 0;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(243, 237, 226, .84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--brown-deep);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brown), var(--brown-deep));
  color: #fff;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(94, 70, 54, .18);
}

.brand-text {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: .16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color .16s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

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

.btn-dark {
  background: var(--espresso);
  color: var(--cream);
}

.btn-dark:hover {
  box-shadow: var(--shadow-md);
}

.btn-brown {
  background: var(--brown);
  color: #fff;
}

.btn-brown:hover {
  background: var(--brown-deep);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.btn-light {
  background: var(--paper);
  color: var(--espresso);
}

.btn-light:hover {
  box-shadow: var(--shadow-md);
}

.btn-lg {
  min-height: 54px;
  padding: 16px 32px;
  font-size: 16px;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

:focus-visible {
  outline: 3px solid rgba(185, 142, 108, .7);
  outline-offset: 3px;
  border-radius: 8px;
}

section {
  padding: 96px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 88% 8%, rgba(185, 142, 108, .22), transparent 70%),
    radial-gradient(50% 50% at 6% 90%, rgba(135, 100, 76, .14), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-deep);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 11em;
  font-size: clamp(42px, 6vw, 72px);
}

.hero-sub {
  max-width: 34em;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13.5px;
}

.check-dot {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(63, 166, 106, .14);
  color: #2d8c55;
  font-weight: 800;
  flex: 0 0 auto;
}

.stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.post-preview {
  position: relative;
  width: min(370px, 92%);
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(155deg, #6c5d4f 0%, #4b4138 55%, #332c25 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 38px;
}

.post-preview.small {
  flex: 0 0 auto;
  width: 268px;
  box-shadow: var(--shadow-md);
}

.post-preview.alt-1 {
  background: linear-gradient(155deg, #3a4a3f, #2a342c);
}

.post-preview.alt-2 {
  background: linear-gradient(155deg, #6e5640, #3d3026);
}

.post-preview.alt-3 {
  background: linear-gradient(155deg, #4a4452, #2c2832);
}

.post-preview .blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.post-preview .b1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: -20px;
}

.post-preview .b2 {
  width: 200px;
  height: 200px;
  right: -40px;
  bottom: -50px;
}

.post-preview .frame {
  position: absolute;
  inset: 16px;
  border: 1.5px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  pointer-events: none;
}

.post-quote {
  position: relative;
  color: #f4eee4;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.28;
  text-align: center;
}

.post-preview.small .post-quote {
  font-size: 21px;
}

.post-sign {
  position: relative;
  margin-top: auto;
  padding-top: 28px;
  text-align: center;
  color: #e7decf;
  font-size: 13px;
  line-height: 1.7;
}

.post-sign b {
  font-weight: 700;
}

.stage .float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.float .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3fa66a;
}

.f-top {
  top: 6%;
  left: -6%;
}

.f-bot {
  right: -4%;
  bottom: 8%;
}

.sw {
  display: flex;
  gap: 5px;
}

.sw i {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  display: block;
}

.strip {
  padding: 30px 0;
  background: var(--espresso);
  color: var(--cream);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.strip .n {
  font-family: var(--display);
  color: #fff;
  font-size: 35px;
  line-height: 1;
}

.strip .l {
  margin-top: 6px;
  color: rgba(243, 237, 226, .66);
  font-size: 13px;
}

.sec-head {
  max-width: 690px;
  margin: 0 auto 56px;
  text-align: center;
}

.sec-head h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4.4vw, 48px);
}

.sec-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.problem,
.features,
.roadmap,
.plans {
  background: var(--cream-2);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.problem-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 15.5px;
}

.problem-list .x {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9d9d2;
  color: #9a4b3a;
  font-weight: 800;
  font-size: 14px;
}

.problem-after {
  padding: 40px 36px;
  border-radius: var(--r);
  background: var(--espresso);
  box-shadow: var(--shadow-md);
  color: var(--cream);
}

.problem-after h3 {
  color: #fff;
  font-size: 30px;
  font-style: italic;
}

.problem-after p {
  margin-top: 14px;
  color: rgba(243, 237, 226, .8);
  font-size: 16px;
}

.problem-after .check {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.problem-after .check b {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--clay);
  color: #fff;
  font-size: 13px;
}

.steps,
.roadmap-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.step,
.feature,
.road,
.niche,
.format,
.plan,
.compare-card,
details {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.step {
  border-radius: var(--r);
  padding: 34px 28px;
  transition: transform .24s ease, box-shadow .24s ease;
}

.step:hover,
.feature:hover,
.niche:hover,
.format:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step .num {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brown);
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
}

.step h3,
.feature h3,
.road h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.step p,
.feature p,
.road li,
.niche small,
.format small {
  color: var(--muted);
  font-size: 14.8px;
}

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

.feature {
  position: relative;
  min-height: 242px;
  border-radius: var(--r);
  padding: 30px 26px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.feature:hover {
  border-color: rgba(185, 142, 108, .55);
}

.feature .ic {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--brown);
  font-family: var(--display);
  font-size: 21px;
}

.feature .tag {
  display: inline-flex;
  margin-top: 16px;
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(135, 100, 76, .1);
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.compare {
  background: var(--espresso);
  color: var(--cream);
}

.compare .sec-head h2 {
  color: #fff;
}

.compare .sec-head p {
  color: rgba(243, 237, 226, .72);
}

.compare-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

.compare-card {
  border-radius: 24px;
  padding: 34px 30px;
}

.compare-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.compare-card ul,
.road ul,
.plan ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.compare-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0;
}

.muted-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(243, 237, 226, .8);
}

.muted-card li::before {
  content: "–";
  color: rgba(243, 237, 226, .55);
}

.strong-card {
  background: var(--paper);
  color: var(--ink);
}

.strong-card li::before {
  content: "✓";
  color: #3fa66a;
  font-weight: 800;
}

.road {
  border-radius: 22px;
  padding: 32px 28px;
}

.road-label {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(135, 100, 76, .1);
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.road li {
  position: relative;
  padding-left: 20px;
}

.road li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brown);
  font-weight: 800;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.niche {
  min-height: 162px;
  border-radius: 17px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.niche:hover {
  background: var(--espresso);
  color: var(--cream);
}

.niche:hover small {
  color: rgba(243, 237, 226, .72);
}

.niche span {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--brown);
  font-family: var(--display);
  font-size: 20px;
}

.niche strong {
  font-size: 16px;
}

.gallery {
  overflow: hidden;
  background: var(--espresso);
  color: var(--cream);
}

.gallery .sec-head h2 {
  color: #fff;
}

.gallery .sec-head p {
  color: rgba(243, 237, 226, .72);
}

.gallery .eyebrow {
  color: var(--clay);
}

.gallery-viewport {
  max-width: var(--maxw);
  margin: 0 auto;
  overflow-x: auto;
  padding: 10px 24px 28px;
  scroll-snap-type: x mandatory;
}

.gallery-viewport::-webkit-scrollbar {
  height: 8px;
}

.gallery-viewport::-webkit-scrollbar-thumb {
  background: rgba(243, 237, 226, .25);
  border-radius: 8px;
}

.gallery-row {
  display: flex;
  gap: 22px;
  justify-content: safe center;
}

.gallery-row .post-preview {
  scroll-snap-align: center;
}

.gallery-hint {
  text-align: center;
  color: rgba(243, 237, 226, .55);
  font-size: 13px;
  margin-top: 6px;
}

.format-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.format {
  min-width: 140px;
  border-radius: 16px;
  padding: 22px 26px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.format:hover {
  border-color: var(--brown);
}

.format .ph {
  margin: 0 auto 14px;
  border: 2px solid var(--brown);
  border-radius: 7px;
  background: var(--cream-2);
}

.format .square {
  width: 46px;
  height: 46px;
}

.format .feed {
  width: 42px;
  height: 52px;
}

.format .story {
  width: 32px;
  height: 56px;
}

.format .horizontal {
  width: 58px;
  height: 32px;
}

.format strong {
  display: block;
  font-size: 15px;
}

.plan-grid {
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.plan {
  position: relative;
  border-radius: 24px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}

.plan.featured {
  z-index: 2;
  background: var(--espresso);
  color: var(--cream);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.plan h3 {
  font-size: 26px;
}

.plan .ptag {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
}

.plan.featured .ptag,
.plan.featured li {
  color: rgba(243, 237, 226, .78);
}

.price {
  margin: 24px 0 20px;
}

.amount {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 14.5px;
}

.plan li b {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brown);
  color: #fff;
  font-size: 11px;
}

.plan.featured li b {
  background: var(--clay);
}

.plan .btn {
  margin-top: auto;
  width: 100%;
}

.badge-pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 5px 14px;
  background: var(--clay);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  border-radius: 15px;
  padding: 0 24px;
  transition: box-shadow .2s ease;
}

details[open] {
  box-shadow: var(--shadow-md);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16.5px;
  font-weight: 700;
}

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

.pm {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--brown);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

details[open] .pm {
  transform: rotate(45deg);
  background: var(--brown);
  color: #fff;
  border-color: transparent;
}

.ans {
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.final {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(185, 142, 108, .28), transparent 70%);
}

.final .wrap {
  position: relative;
  z-index: 1;
}

.final h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
}

.final p {
  max-width: 36em;
  margin: 20px auto 34px;
  color: rgba(243, 237, 226, .78);
  font-size: 19px;
}

footer {
  padding: 54px 0 34px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 14px;
}

.foot-text {
  max-width: 27em;
  color: var(--muted);
  font-size: 14px;
}

.foot-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.foot-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.foot-col h4 {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.foot-col a {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14.5px;
  transition: color .15s ease;
}

.foot-col a:hover {
  color: var(--brown);
}

.foot-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1060px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 13.5px;
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stage {
    order: -1;
  }

  .problem-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

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

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

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 470px;
  }

  .plan.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .desk-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-cta .btn-brown {
    padding-inline: 17px;
    font-size: 13.5px;
  }

  section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

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

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

  .steps,
  .feature-grid,
  .roadmap-grid,
  .niche-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stage .float {
    display: none;
  }

  .post-preview {
    width: min(340px, 96%);
  }

  .foot-links {
    gap: 36px;
  }
}

@media (max-width: 460px) {
  .wrap {
    padding-inline: 18px;
  }

  .brand-text {
    font-size: 18px;
    letter-spacing: .12em;
  }

  .nav {
    height: 68px;
  }

  .nav-links {
    top: 68px;
  }

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

  .post-preview {
    padding: 42px 30px;
  }

  .post-quote {
    font-size: 24px;
  }

  .sec-head {
    margin-bottom: 42px;
  }

  .problem-after,
  .compare-card,
  .plan {
    padding: 30px 24px;
  }

  .foot-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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