:root {
  --bg: #101512;
  --paper: #f5f0e6;
  --paper-soft: #e7dece;
  --paper-warm: #fffaf1;
  --ink: #111815;
  --muted: #58645f;
  --line: rgba(17, 24, 21, 0.14);
  --primary: #123765;
  --primary-bright: #1e5a95;
  --primary-deep: #102236;
  --teal: #1f6764;
  --olive: #75835c;
  --copper: #c66a45;
  --ember: #d34c35;
  --night: #101512;
  --night-soft: #18211e;
  --night-line: rgba(245, 240, 230, 0.16);
  --success: #0f7045;
  --danger: #b42318;
  --shadow: 0 22px 70px rgba(17, 24, 21, 0.12);
  --radius: 8px;
  --max: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(245, 240, 230, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 240, 230, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #101512 0%, #18211e 48%, #101512 100%);
  background-size: 38px 38px, 38px 38px, auto;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(49, 92, 154, 0.44);
  outline-offset: 3px;
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

h2 {
  font-size: clamp(1.72rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.18rem;
  line-height: 1.18;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  touch-action: manipulation;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(17, 24, 21, 0.16);
}

.button--primary {
  color: #fff;
  background: var(--primary);
}

.button--primary:hover {
  background: var(--primary-bright);
}

.button--secondary {
  color: var(--ink);
  background: rgba(245, 240, 230, 0.92);
  border-color: rgba(245, 240, 230, 0.30);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 21, 18, 0.88);
  border-bottom: 1px solid rgba(245, 240, 230, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8f3ea;
  text-decoration: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-deep), var(--teal));
  box-shadow: 0 14px 34px rgba(21, 52, 94, 0.24);
}

.brand__mark svg {
  width: 27px;
  height: 27px;
}

.brand__name,
.brand__subline {
  display: block;
}

.brand__name {
  font-weight: 800;
  line-height: 1.1;
}

.brand__subline {
  margin-top: 1px;
  color: rgba(248, 243, 234, 0.62);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(248, 243, 234, 0.72);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
  text-underline-offset: 5px;
}

.site-nav a:hover {
  color: #fff;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--night-line);
  border-radius: var(--radius);
  background: rgba(245, 240, 230, 0.10);
  color: #f8f3ea;
  padding: 0;
  cursor: pointer;
}

.site-header__toggle svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #101512;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 18, 16, 0.90) 0%, rgba(12, 18, 16, 0.72) 38%, rgba(12, 18, 16, 0.16) 100%),
    linear-gradient(180deg, rgba(12, 18, 16, 0.12) 0%, rgba(12, 18, 16, 0.40) 100%);
}

.hero__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c0a3;
}

.hero__copy {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.55vw, 1.17rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__trust {
  max-width: 860px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero__trust span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.section {
  padding: 86px 0;
  background: linear-gradient(180deg, var(--paper) 0%, #eee7da 100%);
}

.page-hero {
  padding: 84px 0 70px;
  color: #f8f3ea;
  background:
    linear-gradient(90deg, rgba(245, 240, 230, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 240, 230, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 72% 16%, rgba(31, 103, 100, 0.38), transparent 34%),
    linear-gradient(135deg, #101512 0%, #18211e 58%, #102236 100%);
  background-size: 38px 38px, 38px 38px, auto, auto;
  border-bottom: 1px solid rgba(245, 240, 230, 0.12);
}

.page-hero__content {
  max-width: 820px;
}

.page-hero h1 {
  margin-top: 14px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(248, 243, 234, 0.78);
  font-size: 1.06rem;
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 20px;
  align-items: start;
}

.bot-picker {
  display: grid;
  gap: 12px;
}

.bot-card {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.78);
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(17, 24, 21, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.bot-card:hover,
.bot-card.is-active {
  transform: translateY(-1px);
  border-color: rgba(198, 106, 69, 0.48);
  background: #fffaf1;
}

.bot-card span {
  color: var(--copper);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bot-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.16;
}

.bot-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.demo-stage {
  min-width: 0;
}

.bot-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bot-panel__head {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.bot-panel__head p {
  color: var(--muted);
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prompt-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: #34413b;
  font-size: 0.88rem;
}

.chat-frame {
  width: 100%;
  height: min(680px, 74dvh);
  min-height: 560px;
  display: block;
  border: 0;
  background: #fff;
}

.demo-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: 28px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header) + 24px);
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.78);
}

.legal-toc strong {
  font-family: Georgia, "Times New Roman", serif;
}

.legal-toc a {
  color: var(--muted);
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--ink);
}

.legal-content {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.88);
  box-shadow: var(--shadow);
}

.legal-content h2,
.legal-content h3 {
  margin-top: 30px;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #35423c;
}

.legal-content p,
.legal-content ul {
  margin: 12px 0 0;
}

.legal-content a {
  overflow-wrap: anywhere;
}

.section--compact {
  padding: 52px 0;
}

.section--band {
  color: #f8f3ea;
  background:
    linear-gradient(90deg, rgba(245, 240, 230, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 240, 230, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #101512 0%, #18211e 58%, #102236 100%);
  background-size: 38px 38px, 38px 38px, auto;
  border-block: 1px solid rgba(245, 240, 230, 0.12);
}

.section--band h2,
.section--band h3 {
  color: #f8f3ea;
}

.section__head {
  max-width: 790px;
}

.section__head h2 {
  margin-top: 12px;
}

.section__lede {
  max-width: 730px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section--band .section__lede,
.section--band .card p,
.section--band .text-panel {
  color: rgba(248, 243, 234, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 54px;
  align-items: start;
}

.text-panel {
  display: grid;
  gap: 18px;
  color: #35423c;
  font-size: 1.05rem;
}

.text-panel strong {
  color: var(--ink);
}

.section--band .text-panel strong {
  color: #fff;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

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

.card,
.step,
.project-link {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 18px 42px rgba(17, 24, 21, 0.06);
}

.card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.section--band .card,
.section--band .project-link {
  background: rgba(245, 240, 230, 0.08);
  border-color: var(--night-line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

.card__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--primary-deep);
}

.section--band .card__mark {
  background: rgba(245, 240, 230, 0.12);
  color: #f2c0a3;
}

.card__mark svg {
  width: 21px;
  height: 21px;
}

.card p,
.step p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
  border-radius: var(--radius);
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 21, 18, 0.98), rgba(16, 34, 54, 0.95) 54%, rgba(31, 103, 100, 0.92)),
    var(--primary-deep);
  box-shadow: var(--shadow);
}

.feature-band .section-kicker {
  color: #f2c0a3;
}

.benefit-list,
.check-list,
.project-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list {
  display: grid;
  gap: 13px;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
  color: rgba(255, 255, 255, 0.88);
}

.benefit-list li::before,
.check-list li::before {
  content: "";
  border-radius: var(--radius);
  border: 1px solid rgba(245, 240, 230, 0.22);
}

.benefit-list li::before {
  width: 28px;
  height: 28px;
  margin-top: 1px;
  background:
    linear-gradient(135deg, #fff 0 48%, transparent 48%),
    rgba(255, 255, 255, 0.16);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.check-list li {
  min-height: 74px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--night-line);
  border-radius: var(--radius);
  background: rgba(245, 240, 230, 0.08);
  color: rgba(248, 243, 234, 0.82);
}

.check-list li::before {
  width: 30px;
  height: 30px;
  background:
    linear-gradient(135deg, #f2c0a3 0 48%, transparent 48%),
    rgba(245, 240, 230, 0.12);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 5px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  border-block: 1px solid rgba(245, 240, 230, 0.14);
  border-radius: var(--radius);
  color: #f8f3ea;
  background:
    linear-gradient(135deg, rgba(16, 21, 18, 0.98), rgba(16, 34, 54, 0.94)),
    var(--night);
}

.cta-strip p {
  color: rgba(248, 243, 234, 0.68);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.project-link {
  display: grid;
  gap: 12px;
  padding: 24px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-link:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 192, 163, 0.52);
  background: rgba(245, 240, 230, 0.11);
}

.project-link span {
  color: #f2c0a3;
  font-size: 0.86rem;
  font-weight: 800;
}

.project-link p {
  color: rgba(248, 243, 234, 0.72);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header) + 24px);
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 21, 18, 0.98), rgba(16, 34, 54, 0.96) 58%, rgba(31, 103, 100, 0.90)),
    var(--ink);
  box-shadow: var(--shadow);
}

.contact-intro .section-kicker {
  color: #f2c0a3;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.88);
  box-shadow: var(--shadow);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #2f3a35;
  font-size: 0.94rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 24, 21, 0.22);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(49, 92, 154, 0.14);
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form__checkbox {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
}

.contact-form__checkbox input {
  min-height: auto;
  margin-top: 4px;
}

.contact-form__hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.contact-form__status {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-form__status.is-ok {
  color: var(--success);
  font-weight: 750;
}

.contact-form__status.is-error {
  color: var(--danger);
  font-weight: 750;
}

.button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  color: rgba(248, 243, 234, 0.62);
  font-size: 0.92rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: rgba(248, 243, 234, 0.62);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms ease, transform 360ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header: 68px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 14px auto;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--night-line);
    border-radius: var(--radius);
    background: rgba(16, 21, 18, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
  }

  .site-nav a:hover {
    background: rgba(245, 240, 230, 0.10);
  }

  .site-header__toggle {
    display: inline-grid;
  }

  .site-header__actions .button {
    display: none;
  }

  .split,
  .feature-band,
  .contact-layout,
  .demo-shell,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2,
  .project-list,
  .check-list {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .hero__inner {
    width: min(100% - 28px, var(--max));
  }

  .brand__subline {
    display: none;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 86dvh;
  }

  .hero__inner {
    padding: 46px 0 36px;
  }

  .hero__actions .button,
  .cta-strip .button,
  .contact-form__actions .button {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .section--compact {
    padding: 38px 0;
  }

  .card,
  .feature-band,
  .contact-intro,
  .contact-form,
  .cta-strip,
  .project-link,
  .legal-content {
    padding: 20px;
  }

  .page-hero {
    padding: 56px 0 46px;
  }

  .chat-frame {
    min-height: 520px;
    height: 68dvh;
  }

  .cta-strip {
    display: grid;
  }

  .contact-form__grid,
  .step {
    grid-template-columns: 1fr;
  }

  .step::before {
    width: 52px;
    height: 52px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
