:root {
  --ink: #161616;
  --ink-soft: #4d4d4d;
  --paper: #fffdf7;
  --white: #fff;
  --line: #dedede;
  --yellow: #ffcc00;
  --yellow-light: #fff4bf;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header,
.hero,
.section,
.trust-strip,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.button {
  min-height: 52px;
  padding: 0 23px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.button:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 13px;
}

.hero {
  min-height: 680px;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 38px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  box-shadow: 0 0 0 5px rgba(255, 51, 51, .14);
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(52px, 6.1vw, 84px);
  font-weight: 880;
  letter-spacing: -.065em;
  line-height: .96;
}

h1 em {
  position: relative;
  z-index: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
}

h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -3px;
  bottom: 3px;
  left: -4px;
  height: 20px;
  border-radius: 5px;
  background: var(--yellow);
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 575px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.text-link span {
  margin-left: 4px;
}

.hero-facts {
  margin: 44px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 28px;
  list-style: none;
}

.hero-facts li {
  max-width: 100px;
  color: #6b6b6b;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.hero-facts strong {
  margin-bottom: 3px;
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.product-scene {
  position: relative;
  height: 560px;
}

.map-card {
  position: absolute;
  top: 36px;
  right: 0;
  width: 92%;
  height: 455px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background-color: #f0eee7;
  background-image: none;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(150, 150, 150, .45);
  border-radius: 50%;
}

.map-card::before {
  width: 230px;
  height: 150px;
  right: -60px;
  bottom: -40px;
}

.map-card::after {
  width: 130px;
  height: 90px;
  right: 80px;
  bottom: 20px;
}

.map-search {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: 200px;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  color: #5f5f5f;
  font-size: 12px;
  font-weight: 650;
}

.map-search span {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: inline-block;
}

.map-street {
  position: absolute;
  height: 11px;
  border: 2px solid #d4d4d4;
  border-radius: 20px;
  background: #faf9f2;
}

.street-a { width: 430px; top: 180px; left: 150px; transform: rotate(-30deg); }
.street-b { width: 390px; top: 300px; left: 140px; transform: rotate(24deg); }
.street-c { width: 300px; top: 245px; left: 250px; transform: rotate(88deg); }

.map-pin {
  position: absolute;
  z-index: 2;
  width: 25px;
  height: 25px;
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 8px;
  background: var(--yellow);
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
  transform: rotate(-45deg);
}

.pin-a { top: 142px; right: 120px; }
.pin-b { top: 243px; right: 52px; }
.pin-c { right: 183px; bottom: 62px; }
.pin-d { top: 91px; right: 43px; }

.map-label {
  position: absolute;
  color: #808080;
  font-size: 9px;
  font-weight: 700;
}

.label-a { top: 207px; right: 130px; transform: rotate(-30deg); }
.label-b { right: 75px; bottom: 110px; transform: rotate(24deg); }

.result-list {
  position: absolute;
  z-index: 3;
  inset: 78px auto 0 18px;
  width: 210px;
  padding: 14px 12px;
  border-radius: 12px 12px 0 0;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.result-total {
  margin: 0 5px 9px;
  font-size: 10px;
  font-weight: 800;
}

.result-item {
  padding: 9px 4px;
  border-top: 1px solid #eeeeee;
  display: flex;
  gap: 9px;
}

.result-item i {
  width: 39px;
  height: 34px;
  border-radius: 7px;
  background: #e0e0e0;
}

.result-item:nth-child(3) i { background: #d0d0d0; }
.result-item:nth-child(4) i { background: #c8c8c8; }

.result-item span {
  display: flex;
  flex-direction: column;
}

.result-item b { font-size: 10px; }
.result-item small { margin-top: 2px; color: #828282; font-size: 8px; }

.popup-card {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 12px;
  width: 295px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 19px;
  background: var(--white);
  box-shadow: 11px 13px 0 var(--yellow), 0 24px 55px rgba(0,0,0,.25);
  transform: rotate(-1.8deg);
}

.popup-head {
  padding-bottom: 13px;
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup-head img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.popup-head span,
.license-row span {
  display: flex;
  flex-direction: column;
}

.popup-head b { font-size: 13px; }
.popup-head small { color: #929292; font-size: 8px; }

.license-row {
  margin-top: 12px;
  padding: 9px;
  border: 1px solid #f0e0a0;
  border-radius: 10px;
  background: #fffbe6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.license-row i {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.license-row b { font-size: 9px; }
.license-row small { color: #7d7d7d; font-size: 8px; }

.counter-label {
  margin: 15px 0 0;
  color: #929292;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
}

.counter {
  margin: 1px 0 10px;
  display: block;
  font-size: 35px;
  letter-spacing: -.06em;
  line-height: 1;
  text-align: center;
}

.collect-row,
.export-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.collect-row span,
.export-row span {
  padding: 7px 4px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  font-size: 7px;
  font-weight: 800;
  text-align: center;
}

.collect-row span:last-child {
  background: #eeeeee;
  color: #5f5f5f;
}

.export-label {
  margin: 13px 0 5px;
  display: flex;
  justify-content: space-between;
  color: #929292;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.export-label small { font-size: inherit; font-weight: 600; letter-spacing: 0; text-transform: none; }
.export-row { grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 2px; border-radius: 8px; background: #eeeeee; }
.export-row span { background: transparent; color: #5f5f5f; }

.export-chip {
  position: absolute;
  z-index: 7;
  bottom: 35px;
  left: -5px;
  min-width: 225px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 5px 6px 0 var(--yellow);
  display: grid;
  grid-template-columns: 29px 1fr;
  column-gap: 9px;
  transform: rotate(2.5deg);
}

.export-chip > span {
  grid-row: span 2;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.export-chip b { font-size: 9px; }
.export-chip small { color: #828282; font-size: 8px; }

.trust-strip {
  min-height: 70px;
  padding: 0 28px;
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5f5f5f;
  font-size: 12px;
  font-weight: 750;
}

.trust-strip span::before {
  content: "✓";
  width: 23px;
  height: 23px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow-light);
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
}

.section {
  padding: 130px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 44px;
}

h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin: 22px auto 0;
  color: #626262;
  font-size: 17px;
  line-height: 1.65;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 390px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
}

.steps li:nth-child(2) {
  background: var(--yellow-light);
  transform: translateY(18px);
}

.step-number {
  color: #898989;
  font: 750 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.step-visual {
  height: 180px;
  margin: 18px 0 24px;
  border: 1px solid #dedede;
  border-radius: 17px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-visual span {
  width: 72%;
  padding: 12px 15px;
  border: 2px solid var(--ink);
  border-radius: 11px;
  color: #6b6b6b;
  font-size: 12px;
}

.search-visual i {
  width: 32px;
  height: 32px;
  margin-left: -38px;
  border-radius: 8px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.collect-visual {
  position: relative;
  flex-direction: column;
}

.collect-visual span {
  position: absolute;
  width: 98px;
  height: 98px;
  border: 11px solid #ffe2df;
  border-top-color: var(--yellow);
  border-radius: 50%;
  transform: rotate(30deg);
}

.collect-visual b { z-index: 1; font-size: 29px; letter-spacing: -.05em; }
.collect-visual small { z-index: 1; color: #777777; font-size: 8px; font-weight: 800; text-transform: uppercase; }

.files-visual {
  gap: 0;
}

.files-visual span {
  width: 76px;
  height: 94px;
  margin: 0 -7px;
  padding-top: 54px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--yellow);
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  transform: rotate(-7deg);
}

.files-visual span:nth-child(2) { z-index: 1; box-shadow: 3px 3px 0 var(--yellow); transform: translateY(-8px); }
.files-visual span:nth-child(3) { transform: rotate(7deg); }

.steps h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.03em;
}

.steps p {
  margin: 10px 0 0;
  color: #6b6b6b;
  font-size: 14px;
}

.data-section {
  width: min(1320px, calc(100% - 32px));
  min-height: 730px;
  margin: 20px auto;
  padding: 100px max(48px, calc((100% - 1180px) / 2));
  overflow: hidden;
  border-radius: 36px;
  background: var(--ink);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 70px;
  color: var(--white);
}

.eyebrow-light {
  color: #b8960e;
}

.data-copy h2 {
  font-size: clamp(40px, 4vw, 58px);
}

.data-copy > p:nth-of-type(2) {
  max-width: 480px;
  margin: 24px 0 0;
  color: #c2c2c2;
  line-height: 1.7;
}

.field-list {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  list-style: none;
}

.field-list li {
  font-size: 13px;
  font-weight: 700;
}

.field-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--yellow);
}

.field-note {
  margin: 34px 0 0;
  padding-top: 21px;
  border-top: 1px solid #3c3c3c;
  color: #9e9e9e;
  font-size: 12px;
}

.field-note strong {
  margin-right: 8px;
  color: var(--yellow);
  font-size: 20px;
}

.sheet {
  width: 760px;
  overflow: hidden;
  border: 1px solid #383838;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 20px 30px 0 var(--ink), 0 30px 80px rgba(0,0,0,.3);
  color: var(--ink);
  transform: rotate(1.5deg);
}

.sheet-toolbar {
  height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 7px;
}

.sheet-toolbar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4d4d4;
}

.sheet-toolbar i:nth-child(2) { background: #eed98a; }
.sheet-toolbar i:nth-child(3) { background: #a0a0a0; }
.sheet-toolbar b { margin-left: 13px; font-size: 11px; }
.sheet-toolbar span { margin-left: auto; color: #898989; font-size: 9px; }

.sheet-grid {
  padding: 10px 0 28px;
}

.sheet-row {
  min-width: 700px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr .55fr;
}

.sheet-row span {
  min-height: 57px;
  padding: 0 18px;
  border-right: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  font-size: 11px;
}

.sheet-header span {
  min-height: 42px;
  background: #f5f5f5;
  color: #666666;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comparison-grid article {
  min-height: 335px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ebe9e1;
}

.comparison-grid .grab-card {
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 7px 8px 0 var(--ink);
}

.comparison-grid article > p {
  margin: 0 0 24px;
  color: #777777;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-grid .grab-card > p {
  color: var(--ink);
}

.comparison-grid strong {
  max-width: 470px;
  display: block;
  font-size: 26px;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.comparison-grid ul,
.price-card ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li,
.price-card li {
  margin-top: 11px;
  color: #606060;
  font-size: 13px;
}

.comparison-grid li::before,
.price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--ink);
  font-weight: 900;
}

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

.pricing {
  padding-top: 80px;
}

.price-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card {
  min-height: 450px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.6);
  display: flex;
  flex-direction: column;
}

.price-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-badge {
  padding: 5px 9px;
  border-radius: 99px;
  background: #eeeeee;
  color: #666666;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quota {
  margin: 45px 0 0;
  color: #707070;
  font-size: 12px;
}

.quota strong {
  margin-right: 6px;
  color: var(--ink);
  font-size: 40px;
  letter-spacing: -.055em;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.button-outline {
  background: var(--white);
  box-shadow: none;
}

.price-pro {
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 9px 0 var(--yellow);
}

.price-pro .plan-badge {
  background: var(--yellow);
  color: var(--ink);
}

.faq {
  padding-top: 40px;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 25px 45px 25px 4px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  margin-right: -35px;
  color: var(--ink);
  font-size: 22px;
}

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

details p {
  max-width: 700px;
  margin: -7px 0 25px 4px;
  color: #646464;
  line-height: 1.7;
}

.access {
  width: min(1320px, calc(100% - 32px));
  min-height: 420px;
  margin: 15px auto;
  padding: 80px max(48px, calc((100% - 1180px) / 2));
  overflow: hidden;
  border-radius: 36px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  color: var(--white);
}

.access > div {
  max-width: 720px;
}

.access h2 {
  max-width: 650px;
}

.access div > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: #c1c1c1;
  font-size: 16px;
}

.launch-status {
  min-width: 235px;
  padding: 17px 22px;
  border: 1px solid #444444;
  border-radius: 13px;
  background: #252525;
  color: #dddddd;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.launch-status i {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  box-shadow: 0 0 0 5px rgba(255,212,59,.12);
}

footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
}

footer > p {
  margin: 0;
  color: #797979;
  font-size: 11px;
}

footer > p:last-child {
  text-align: right;
}

@media (max-width: 960px) {
  nav { display: none; }
  .hero { padding-top: 45px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .product-scene { width: min(680px, 100%); margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 300px; display: grid; grid-template-columns: 90px 1fr; align-items: center; column-gap: 24px; }
  .steps li:nth-child(2) { transform: none; }
  .step-number { grid-row: 1; }
  .step-visual { height: 220px; margin: 0; grid-row: 1 / span 3; }
  .steps h3 { align-self: end; }
  .steps p { align-self: start; }
  .data-section { grid-template-columns: minmax(0, 1fr); }
  .data-copy { max-width: 650px; }
  .sheet { width: 760px; }
  .access { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section,
  .trust-strip,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header { min-height: 72px; }
  .site-header .button { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: 0; padding: 55px 0 65px; }
  h1 { font-size: clamp(46px, 14vw, 66px); }
  h1 em::after { height: 13px; }
  .hero-lead { margin-top: 25px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 19px; }
  .hero-actions .text-link { padding-left: 4px; }
  .hero-facts { justify-content: space-between; gap: 10px; }
  .product-scene { height: 490px; margin-top: 20px; }
  .map-card { top: 20px; width: 100%; height: 350px; }
  .result-list { width: 180px; }
  .popup-card { right: 5px; bottom: 28px; width: 255px; }
  .export-chip { bottom: 12px; min-width: 190px; padding: 10px; }
  .trust-strip { padding: 25px 0; align-items: flex-start; flex-direction: column; gap: 13px; }
  .section { padding: 90px 0; }
  .section-heading { margin-bottom: 42px; text-align: left; }
  h2 { font-size: 41px; }
  .section-heading > p:last-child { font-size: 15px; }
  .steps li { min-height: auto; padding: 17px; display: block; }
  .step-visual { height: 180px; margin: 14px 0 22px; }
  .data-section,
  .access { width: calc(100% - 16px); padding: 72px 24px; border-radius: 26px; }
  .data-section { gap: 48px; }
  .field-list { grid-template-columns: 1fr; }
  .data-copy { min-width: 0; }
  .sheet { width: 100%; transform: rotate(1deg); }
  .sheet-row { min-width: 0; grid-template-columns: 1.1fr .85fr 1.25fr .5fr; }
  .sheet-row span { min-height: 43px; padding: 0 7px; font-size: 7px; }
  .sheet-header span { min-height: 34px; font-size: 6px; }
  .comparison-grid,
  .price-grid { grid-template-columns: 1fr; }
  .comparison-grid article { min-height: auto; padding: 29px 24px; }
  .comparison-grid strong { font-size: 22px; }
  .price-card { min-height: 420px; padding: 29px 24px; }
  .price-pro { box-shadow: 5px 6px 0 var(--yellow); }
  summary { font-size: 15px; }
  .access { min-height: 480px; justify-content: center; gap: 38px; }
  .launch-status { min-width: 0; width: 100%; }
  footer { min-height: 210px; padding: 35px 0; grid-template-columns: 1fr; gap: 15px; }
  footer > p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
