:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5f6b7a;
  --line: #d9e2ec;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --accent: #c2412d;
  --accent-2: #0f766e;
  --gold: #b7791f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 14px 20px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
  height: 34px;
  width: 34px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.hero {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  margin: 0 auto;
  max-width: 1120px;
  padding: 58px 20px 42px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.13rem;
  margin: 0;
  max-width: 720px;
}

.budget-hero {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 64px);
  padding: 76px 24px 54px;
}

.launch-hero h1 {
  font-size: clamp(2.8rem, 5.6vw, 5.25rem);
}

.budget-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  margin: 0 0 22px;
  max-width: 720px;
}

.budget-hero-copy > p {
  color: var(--muted);
  font-size: 1.15rem;
  margin: 0 0 28px;
  max-width: 560px;
}

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

.proof-list li {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 24px 1fr;
}

.proof-list li::before {
  align-items: center;
  background: var(--accent-2);
  border-radius: 999px;
  color: #fff;
  content: "✓";
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  height: 22px;
  justify-content: center;
  margin-top: 2px;
  width: 22px;
}

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

.budget-preview {
  min-height: 640px;
  position: relative;
}

.paper-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(31, 41, 51, 0.16);
  margin-left: auto;
  max-width: 560px;
  min-height: 620px;
  overflow: hidden;
  padding: 38px 44px;
}

.paper-bar {
  background: var(--accent-2);
  display: block;
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.paper-preview {
  position: relative;
}

.paper-preview h2 {
  color: var(--accent-2);
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.paper-preview > p {
  color: var(--muted);
  font-weight: 700;
  margin: 8px 0 30px;
  text-align: center;
}

.mini-task {
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 12px;
  grid-template-columns: 16px 1fr;
  padding: 22px 0;
}

.mini-task span,
.action-list li > span {
  border: 2px solid #9aa6b2;
  border-radius: 3px;
  display: block;
  height: 18px;
  width: 18px;
}

.browser-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  bottom: 36px;
  box-shadow: 0 20px 50px rgba(31, 41, 51, 0.18);
  padding: 22px;
  position: absolute;
  right: 0;
  width: min(260px, 48%);
}

.window-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.window-dots span {
  background: #d9e2ec;
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.browser-preview strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.browser-preview p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 16px;
}

.browser-preview a {
  background: var(--accent-2);
  border-radius: 6px;
  color: #fff;
  display: block;
  font-weight: 800;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
}

.help-strip {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  padding: 34px max(24px, calc((100vw - 1120px) / 2));
}

.help-strip strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.help-strip p {
  color: var(--muted);
  margin: 0;
}

.budget-layout {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.budget-checklist h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 10px;
}

.action-list {
  counter-reset: budget-step;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.action-list li {
  align-items: center;
  border-top: 1px solid var(--line);
  counter-increment: budget-step;
  display: grid;
  gap: 18px;
  grid-template-columns: 58px 1fr 22px;
  padding: 24px 0;
}

.action-list li::before {
  align-items: center;
  background: var(--accent-2);
  border-radius: 999px;
  color: #fff;
  content: counter(budget-step);
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.action-list strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.action-list p {
  color: var(--muted);
  margin: 0;
}

.budget-sidebar {
  display: grid;
  gap: 18px;
}

.checklist-library {
  background: var(--soft);
}

.checklist-library .checklist-card {
  background: #fff;
}

.tool-offer,
.disclosure-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.tool-offer h2,
.disclosure-box h2 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 10px;
}

.tool-offer p,
.disclosure-box p {
  color: var(--muted);
  margin: 0 0 14px;
}

.tool-offer ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.text-link {
  color: var(--accent-2);
  font-weight: 800;
  text-decoration: none;
}

.hero-media {
  align-self: end;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.section {
  border-top: 1px solid var(--line);
  padding: 46px 20px;
}

.section-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin: 0 0 12px;
}

.section-lede {
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 760px;
}

.guide-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.guide-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.guide-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}

.guide-card > div:not(.product-scene) {
  padding: 18px;
}

.guide-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 8px;
}

.guide-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.content-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 280px;
}

.article {
  max-width: 780px;
}

.article section {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  scroll-margin-top: 86px;
}

.article section:first-child {
  border-top: 0;
  padding-top: 0;
}

.article h2 {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  margin: 0 0 12px;
}

.article h3 {
  margin: 24px 0 8px;
}

.article ul,
.article ol {
  padding-left: 22px;
}

.article li {
  margin-bottom: 9px;
}

.callout {
  background: #fef7ed;
  border-left: 4px solid var(--gold);
  margin: 22px 0;
  padding: 16px 18px;
}

.affiliate-offer {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 8px;
  margin: 24px 0;
  padding: 18px;
}

.affiliate-offer h3 {
  margin-top: 0;
}

.affiliate-offer p {
  margin-bottom: 12px;
}

.affiliate-offer small {
  color: var(--muted);
  display: block;
  margin-top: 10px;
}

.conversion-strip {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin: 20px 0 24px;
  padding: 14px;
}

.quiz-panel,
.result-box,
.checklist-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.quiz-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.quiz-panel fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 16px;
}

.quiz-panel legend {
  font-weight: 800;
  padding: 0 6px;
}

.quiz-panel label {
  display: block;
  margin: 10px 0;
}

.email-lite {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.email-lite input {
  border: 1px solid var(--line);
  border-radius: 6px;
  display: block;
  font: inherit;
  margin-top: 8px;
  max-width: 420px;
  padding: 10px;
  width: 100%;
}

.email-lite p,
.product-card span {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 8px 0 0;
}

.result-box {
  margin-top: 24px;
  padding: 20px;
}

.checklist-grid,
.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.checklist-card,
.product-card {
  padding: 18px;
}

.checklist-card h2,
.product-card h3 {
  margin-top: 0;
}

.product-card {
  background: var(--soft);
}

.commerce-hero {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: auto;
  padding: 96px 24px 72px;
}

.commerce-hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 22px;
  max-width: 760px;
}

.commerce-hero-copy > p {
  color: var(--muted);
  font-size: 1.17rem;
  margin: 0 0 28px;
  max-width: 650px;
}

.commerce-hero-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.commerce-hero-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  width: 100%;
}

.buying-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: 0 18px 50px rgba(31, 41, 51, 0.16);
  display: grid;
  gap: 8px;
  left: 22px;
  padding: 18px;
  position: absolute;
  width: min(310px, calc(100% - 44px));
}

.buying-note strong {
  font-size: 1.18rem;
  line-height: 1.15;
}

.buying-note span {
  color: var(--muted);
}

.buying-note span::before {
  color: var(--accent-2);
  content: "✓ ";
  font-weight: 900;
}

.publisher-trust {
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 16px 20px;
}

.publisher-trust span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #eef2f7;
  font-size: 0.92rem;
  padding: 7px 11px;
}

.editorial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.editorial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.editorial-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}

.editorial-card > .product-scene {
  aspect-ratio: 16 / 11;
}

.editorial-card > div:not(.product-scene) {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.editorial-card h3 {
  font-size: 1.22rem;
  line-height: 1.18;
  margin: 0;
}

.editorial-card p {
  color: var(--muted);
  margin: 0;
}

.editorial-card ul {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
}

.editorial-card li {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.editorial-card li strong {
  color: var(--ink);
}

.editorial-band {
  background: var(--soft);
}

.split-proof {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.proof-columns {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.proof-columns div,
.review-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.proof-columns strong,
.review-panel h3 {
  display: block;
  margin: 0 0 8px;
}

.proof-columns p {
  color: var(--muted);
  margin: 0;
}

.review-panel {
  display: grid;
  gap: 12px;
}

.review-panel a {
  border-top: 1px solid var(--line);
  color: var(--accent-2);
  font-weight: 800;
  padding-top: 12px;
  text-decoration: none;
}

.shop-hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 64px);
  padding: 72px 24px 56px;
}

.shop-hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  margin: 0 0 24px;
  max-width: 760px;
}

.shop-hero-copy > p {
  color: var(--muted);
  font-size: 1.16rem;
  margin: 0 0 28px;
  max-width: 610px;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.shop-visual {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 620px;
  overflow: hidden;
  padding: 54px 42px 38px;
  position: relative;
}

.shop-visual::before {
  background: linear-gradient(135deg, rgba(194, 65, 45, 0.12), rgba(15, 118, 110, 0.08));
  content: "";
  inset: 0;
  position: absolute;
}

.shelf {
  align-items: end;
  border-bottom: 12px solid #cbd5e1;
  display: flex;
  gap: 22px;
  height: 190px;
  margin: 0 0 48px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.shelf-top {
  height: 210px;
}

.shelf span {
  display: block;
  flex: 1;
}

.box {
  background: #f97316;
  border-radius: 8px 8px 2px 2px;
  height: 148px;
}

.box.tall {
  height: 174px;
}

.jar {
  background: linear-gradient(#fef3c7 0 34%, #0f766e 34% 100%);
  border-radius: 22px 22px 8px 8px;
  height: 132px;
}

.tube {
  background: linear-gradient(#fff 0 24%, #c2412d 24% 100%);
  border: 2px solid #cbd5e1;
  border-radius: 12px 12px 28px 28px;
  height: 156px;
}

.container {
  background: linear-gradient(#fff 0 24%, #94a3b8 24% 100%);
  border: 2px solid #cbd5e1;
  border-radius: 18px;
  height: 118px;
}

.bottle {
  background: linear-gradient(#e2e8f0 0 18%, #fb7185 18% 100%);
  border-radius: 28px 28px 12px 12px;
  height: 166px;
}

.device {
  background: #1f2933;
  border-radius: 20px;
  height: 122px;
  position: relative;
}

.device::after {
  background: #5eead4;
  border-radius: 999px;
  content: "";
  height: 14px;
  left: 50%;
  position: absolute;
  top: 18px;
  transform: translateX(-50%);
  width: 54px;
}

.guide-ticket {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 38px;
  box-shadow: 0 20px 50px rgba(31, 41, 51, 0.16);
  display: grid;
  gap: 8px;
  left: 42px;
  padding: 22px;
  position: absolute;
  right: 42px;
  z-index: 2;
}

.guide-ticket strong {
  font-size: 1.25rem;
}

.guide-ticket span {
  color: var(--muted);
}

.guide-ticket span::before {
  color: var(--accent-2);
  content: "✓ ";
  font-weight: 900;
}

.shop-index {
  background: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px 20px;
}

.shop-index a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  font-size: 0.94rem;
  padding: 8px 12px;
  text-decoration: none;
}

.product-section {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 64px 24px;
  scroll-margin-top: 76px;
  position: relative;
}

.anchor-alias {
  height: 1px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -76px;
  width: 1px;
}

.product-section.alt {
  background: var(--soft);
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
}

.product-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin: 0 0 18px;
}

.product-section-copy > p {
  color: var(--muted);
  font-size: 1.07rem;
  margin: 0 0 24px;
  max-width: 680px;
}

.buy-filter {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
}

.buy-filter li {
  color: var(--muted);
  margin: 0;
}

.buy-filter strong {
  color: var(--ink);
}

.product-card-stack {
  display: grid;
  gap: 14px;
}

.find-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.find-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.product-scene {
  aspect-ratio: 4 / 3;
  background: #eef2f7;
  overflow: hidden;
  position: relative;
}

.guide-card > .product-scene {
  aspect-ratio: 16 / 11;
}

.article-scene {
  aspect-ratio: 16 / 7;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 16px 0 22px;
}

.product-scene::before,
.product-scene::after {
  content: "";
  position: absolute;
}

.scene-storage {
  background:
    linear-gradient(180deg, transparent 64%, #cbd5e1 64% 69%, transparent 69%),
    linear-gradient(135deg, #f8fafc, #e0f2fe);
}

.scene-storage::before {
  background:
    linear-gradient(#fff 0 20%, #f97316 20% 100%) 0 28px / 104px 150px no-repeat,
    linear-gradient(#fff 0 20%, #0f766e 20% 100%) 128px 58px / 94px 120px no-repeat,
    linear-gradient(#fff 0 20%, #334155 20% 100%) 246px 12px / 86px 166px no-repeat;
  border-radius: 8px;
  inset: 34px 42px 0;
}

.scene-storage::after {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(31, 41, 51, 0.12);
  bottom: 24px;
  height: 74px;
  left: 44px;
  width: 210px;
}

.scene-kitchen {
  background:
    radial-gradient(circle at 18% 22%, rgba(249, 115, 22, 0.22) 0 15%, transparent 16%),
    linear-gradient(135deg, #fff7ed, #ecfeff);
}

.scene-kitchen::before {
  background:
    linear-gradient(#fff 0 24%, #94a3b8 24% 100%) 18px 104px / 126px 92px no-repeat,
    linear-gradient(#fff 0 24%, #0f766e 24% 100%) 168px 84px / 126px 112px no-repeat,
    linear-gradient(#fff 0 24%, #fb7185 24% 100%) 316px 122px / 92px 74px no-repeat;
  border-radius: 18px;
  inset: 28px 22px 0;
}

.scene-kitchen::after {
  background: #f97316;
  border-radius: 999px;
  box-shadow: 70px 24px 0 #facc15, 136px -10px 0 #ef4444, 214px 12px 0 #22c55e;
  height: 46px;
  left: 64px;
  top: 58px;
  width: 46px;
}

.scene-skincare {
  background:
    radial-gradient(circle at 78% 22%, rgba(251, 113, 133, 0.2) 0 20%, transparent 21%),
    linear-gradient(135deg, #fff1f2, #f8fafc);
}

.scene-skincare::before {
  background:
    linear-gradient(#fff 0 22%, #c2412d 22% 100%) 40px 78px / 94px 160px no-repeat,
    linear-gradient(#fff 0 18%, #fb7185 18% 100%) 164px 42px / 88px 196px no-repeat,
    linear-gradient(#fff 0 26%, #0f766e 26% 100%) 286px 110px / 104px 128px no-repeat;
  border-radius: 18px 18px 10px 10px;
  inset: 24px 28px;
}

.scene-skincare::after {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 36px;
  box-shadow: 64px 0 0 #fff, 128px 0 0 #fff;
  height: 42px;
  left: 84px;
  width: 42px;
}

.scene-gadgets {
  background:
    radial-gradient(circle at 18% 22%, rgba(15, 118, 110, 0.2) 0 18%, transparent 19%),
    linear-gradient(135deg, #eff6ff, #f8fafc);
}

.scene-gadgets::before {
  background:
    linear-gradient(#fff 0 22%, #1f2933 22% 100%) 46px 84px / 108px 126px no-repeat,
    linear-gradient(#fff 0 18%, #0f766e 18% 100%) 188px 56px / 92px 154px no-repeat,
    linear-gradient(#fff 0 22%, #c2412d 22% 100%) 312px 118px / 74px 92px no-repeat;
  border-radius: 12px;
  inset: 32px 34px 0;
}

.scene-gadgets::after {
  background: #0f766e;
  border-radius: 999px;
  box-shadow: 58px 12px 0 #c2412d, 116px -4px 0 #b7791f, 186px 18px 0 #334155;
  height: 36px;
  left: 72px;
  top: 54px;
  width: 36px;
}

.scene-smart-home {
  background:
    radial-gradient(circle at 72% 22%, rgba(59, 130, 246, 0.2) 0 16%, transparent 17%),
    linear-gradient(135deg, #f8fafc, #eef2ff);
}

.scene-smart-home::before {
  background:
    linear-gradient(#fff 0 22%, #0f766e 22% 100%) 38px 112px / 92px 110px no-repeat,
    linear-gradient(#fff 0 24%, #1f2933 24% 100%) 162px 70px / 120px 152px no-repeat,
    linear-gradient(#fff 0 20%, #c2412d 20% 100%) 318px 132px / 84px 90px no-repeat;
  border-radius: 16px;
  inset: 28px 34px 0;
}

.scene-smart-home::after {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 58px 0 0 #fff, 116px 0 0 #fff;
  height: 46px;
  left: 66px;
  top: 52px;
  width: 46px;
}

.scene-phone {
  background:
    radial-gradient(circle at 22% 24%, rgba(194, 65, 45, 0.18) 0 18%, transparent 19%),
    linear-gradient(135deg, #fff7ed, #f8fafc);
}

.scene-phone::before {
  background:
    linear-gradient(#0f172a 0 18%, #f8fafc 18% 100%) 74px 40px / 112px 214px no-repeat,
    linear-gradient(#fff 0 22%, #0f766e 22% 100%) 226px 118px / 96px 136px no-repeat,
    linear-gradient(#fff 0 26%, #c2412d 26% 100%) 358px 150px / 72px 104px no-repeat;
  border-radius: 18px;
  inset: 18px 24px;
}

.scene-phone::after {
  background: #1f2933;
  border-radius: 999px;
  box-shadow: 64px 20px 0 #b7791f, 128px -8px 0 #0f766e;
  height: 34px;
  left: 74px;
  top: 76px;
  width: 34px;
}

.scene-creator {
  background:
    linear-gradient(180deg, transparent 68%, #d9e2ec 68% 73%, transparent 73%),
    linear-gradient(135deg, #f8fafc, #fff7ed);
}

.scene-creator::before {
  background:
    linear-gradient(#fff 0 18%, #c2412d 18% 100%) 28px 62px / 140px 176px no-repeat,
    linear-gradient(#fff 0 24%, #0f766e 24% 100%) 198px 92px / 118px 146px no-repeat;
  border-radius: 8px;
  inset: 24px 40px;
}

.scene-creator::after {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.12);
  height: 76px;
  right: 54px;
  top: 52px;
  transform: rotate(5deg);
  width: 118px;
}

.scene-budget {
  background:
    linear-gradient(180deg, transparent 70%, #d9e2ec 70% 74%, transparent 74%),
    linear-gradient(135deg, #f8fafc, #f0fdfa);
}

.scene-budget::before {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.12);
  height: 180px;
  left: 54px;
  top: 42px;
  transform: rotate(-4deg);
  width: 138px;
}

.scene-budget::after {
  background: #b7791f;
  border-radius: 999px;
  box-shadow: 0 -28px 0 -8px #facc15, 42px -2px 0 #b7791f, 84px 10px 0 #b7791f, 140px -36px 0 10px #1f2933;
  height: 54px;
  right: 162px;
  top: 134px;
  width: 54px;
}

.find-card > div:not(.product-scene),
.find-card.text-find {
  padding: 20px;
}

.find-card h3 {
  font-size: 1.32rem;
  line-height: 1.16;
  margin: 0 0 10px;
}

.find-card p {
  color: var(--muted);
  margin: 0 0 16px;
}

.commercial-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: #7c2d12;
  font-size: 0.94rem;
  padding: 14px 16px;
}

.product-detail-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.product-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.product-detail h3 {
  font-size: 1.05rem;
  line-height: 1.22;
  margin: 0 0 8px;
}

.product-detail p {
  color: var(--muted);
  margin: 0 0 10px;
}

.product-detail ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.product-detail li {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.compare-table {
  background: #fff;
  border: 1px solid var(--line);
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
}

.compare-table td {
  color: var(--muted);
  font-size: 0.94rem;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.offer-note {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 30px;
}

.ad-slot {
  align-items: center;
  background: repeating-linear-gradient(45deg, #f8fafc, #f8fafc 10px, #eef2f7 10px, #eef2f7 20px);
  border: 1px dashed #b8c2cc;
  color: var(--muted);
  display: flex;
  font-size: 0.88rem;
  justify-content: center;
  min-height: 110px;
  text-align: center;
}

.sidebar {
  align-self: start;
  position: sticky;
  top: 80px;
}

.side-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px;
}

.side-box h3 {
  margin: 0 0 10px;
}

.side-box ul {
  margin: 0;
  padding-left: 18px;
}

.button {
  background: var(--accent);
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}

.button.secondary {
  background: var(--accent-2);
}

.footer {
  background: var(--ink);
  color: #d9e2ec;
  padding: 34px 20px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

.footer a {
  color: #fff;
}

@media (max-width: 820px) {
  .hero,
  .commerce-hero,
  .shop-hero,
  .product-section,
  .content-layout,
  .budget-hero,
  .budget-layout,
  .split-proof,
  .help-strip {
    grid-template-columns: 1fr;
  }

  .hero,
  .commerce-hero,
  .shop-hero,
  .budget-hero {
    padding-top: 38px;
  }

  .commerce-hero {
    min-height: auto;
  }

  .commerce-hero-media {
    min-height: 0;
  }

  .commerce-hero-media img {
    min-height: 360px;
  }

  .editorial-grid,
  .proof-columns,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
  }

  .shop-visual {
    min-height: 520px;
  }

  .budget-hero {
    min-height: auto;
  }

  .budget-preview {
    min-height: auto;
  }

  .paper-preview {
    min-height: 0;
    padding: 30px 24px;
  }

  .browser-preview {
    margin: -22px auto 0;
    position: relative;
    right: auto;
    width: min(320px, 92%);
  }

  .action-list li {
    grid-template-columns: 44px 1fr 22px;
  }

  .sidebar {
    position: static;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
