:root {
  --ink: #082b5f;
  --paper: #f7faf9;
  --moss: #0bae7b;
  --mint: #e4f7ef;
  --line: #dbe7e3;
  --slate: #647084;
  --rose: #d94f65;
  --amber: #b18447;
  --white: #ffffff;
  --shadow: 0 22px 60px -38px rgba(8, 43, 95, 0.42);
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(11, 174, 123, 0.1), transparent 32rem),
    linear-gradient(180deg, #fbfdfc 0%, var(--paper) 100%);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 249, 0.82);
  border-bottom: 1px solid rgba(219, 231, 227, 0.75);
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  left: 0;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  transform: translateY(0);
  z-index: 20;
}

.page-ready .site-header {
  animation: header-in 720ms var(--motion-ease) both;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 950;
}

.brand img {
  height: 4rem;
  object-fit: contain;
  width: 4rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.65rem 0.9rem;
}

nav a:hover {
  background: var(--white);
  border-color: var(--line);
  color: var(--moss);
}

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.hero {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.88fr);
  min-height: calc(100dvh - 5rem);
  place-items: center;
}

.eyebrow {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-lead,
.proof-copy p,
.form-intro p,
.reservation p,
.result-panel p {
  color: var(--slate);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.7;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 900;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  transition: transform 220ms var(--motion-ease), background 220ms var(--motion-ease),
    border-color 220ms var(--motion-ease), color 220ms var(--motion-ease),
    box-shadow 220ms var(--motion-ease);
}

.button:hover {
  transform: translate3d(0, -2px, 0);
}

.button.primary:hover {
  box-shadow: 0 18px 38px -28px rgba(8, 43, 95, 0.85);
}

.button:active {
  transform: translate3d(0, 0, 0) scale(0.98);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--moss);
  color: var(--moss);
}

.validation-strip {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  max-width: 48rem;
}

.validation-strip span {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 1rem;
}

.validation-strip strong {
  color: var(--ink);
  display: block;
  font-size: 1.6rem;
}

.product-preview,
.diagnostic-card,
.result-panel,
.reservation-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 231, 227, 0.9);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.product-preview {
  overflow: hidden;
  padding: 1.25rem;
  transform-origin: center;
  width: 100%;
}

.page-ready .product-preview.is-visible {
  animation: preview-float 7s ease-in-out 900ms infinite alternate;
}

.preview-topbar,
.preview-cards {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.preview-topbar p,
.preview-topbar strong {
  display: block;
  margin: 0;
}

.preview-topbar p {
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 850;
}

.preview-topbar strong {
  font-size: 1.35rem;
}

.status-dot {
  align-items: center;
  background: var(--mint);
  border-radius: 999px;
  color: var(--moss);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 950;
  height: 2.3rem;
  padding: 0 0.9rem;
  position: relative;
}

.status-dot::before {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 0.48rem;
  margin-right: 0.5rem;
  width: 0.48rem;
}

.page-ready .status-dot::before {
  animation: status-breathe 1.8s ease-in-out infinite;
}

.preview-hero {
  background: linear-gradient(135deg, var(--ink), #051b3e);
  border-radius: 1.55rem;
  color: var(--white);
  margin-top: 1.2rem;
  padding: 1.4rem;
}

.preview-hero p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.preview-hero strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.preview-hero span {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-weight: 800;
  margin-top: 1rem;
}

.cash-chart {
  display: block;
  margin: 1.1rem auto 0;
  width: 100%;
}

.page-ready .line {
  animation: chart-draw 1500ms var(--motion-ease) 500ms both;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.page-ready .area {
  animation: chart-area 1100ms var(--motion-ease) 900ms both;
}

.page-ready .line-point {
  animation: point-pop 700ms var(--motion-ease) 1500ms both;
  transform-box: fill-box;
  transform-origin: center;
}

.grid-line {
  stroke: rgba(8, 43, 95, 0.08);
  stroke-width: 2;
}

.area {
  fill: rgba(11, 174, 123, 0.14);
}

.line {
  fill: none;
  stroke: var(--moss);
  stroke-linecap: round;
  stroke-width: 7;
}

.line-point {
  fill: var(--white);
  stroke: var(--moss);
  stroke-width: 6;
}

.preview-cards article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  flex: 1;
  padding: 1rem;
}

.preview-cards span {
  color: var(--slate);
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
}

.preview-cards strong {
  display: block;
  font-size: 1rem;
  margin-top: 0.4rem;
}

.proof-grid,
.form-section,
.reservation {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.4rem;
  transition: border-color 240ms var(--motion-ease), transform 240ms var(--motion-ease),
    box-shadow 240ms var(--motion-ease);
}

.steps div:hover {
  border-color: rgba(11, 174, 123, 0.32);
  box-shadow: 0 20px 48px -38px rgba(8, 43, 95, 0.38);
  transform: translate3d(0, -3px, 0);
}

.steps span {
  color: var(--moss);
  font-weight: 950;
}

.steps strong {
  display: block;
  font-size: 1.25rem;
  margin: 0.55rem 0;
}

.steps p {
  color: var(--slate);
  font-weight: 650;
  line-height: 1.55;
  margin: 0;
}

.mvp-showcase {
  padding-top: 0;
}

.showcase-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  max-width: 62rem;
}

.showcase-heading p:last-child {
  color: var(--slate);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.7;
  max-width: 48rem;
}

.showcase-grid {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mvp-shot {
  background: var(--white);
  border: 1px solid rgba(219, 231, 227, 0.95);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  transition: border-color 260ms var(--motion-ease), box-shadow 260ms var(--motion-ease),
    transform 260ms var(--motion-ease);
}

.mvp-shot:hover {
  border-color: rgba(11, 174, 123, 0.3);
  box-shadow: 0 28px 70px -46px rgba(8, 43, 95, 0.52);
  transform: translate3d(0, -4px, 0);
}

.mvp-shot-primary {
  grid-column: 1 / -1;
}

.mvp-shot img {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(247, 250, 249, 0.94), rgba(255, 255, 255, 0.98));
  border-bottom: 1px solid var(--line);
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center;
  padding: clamp(0.45rem, 1.4vw, 0.9rem);
  transition: transform 420ms var(--motion-ease);
  width: 100%;
}

.mvp-shot:hover img {
  transform: scale(1.012);
}

.mvp-shot figcaption {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.1rem 1.1rem;
}

.mvp-shot figcaption span {
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mvp-shot figcaption strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.organic-hub {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 0.82fr 1.18fr;
  padding-top: 0;
}

.organic-copy p:last-child {
  color: var(--slate);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.7;
  max-width: 42rem;
}

.resource-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: 0 22px 55px -44px rgba(8, 43, 95, 0.42);
  display: grid;
  min-height: 13rem;
  padding: 1.25rem;
  transition: border-color 240ms var(--motion-ease), box-shadow 240ms var(--motion-ease),
    transform 240ms var(--motion-ease);
}

.resource-card:hover {
  border-color: rgba(11, 174, 123, 0.32);
  box-shadow: 0 28px 68px -44px rgba(8, 43, 95, 0.5);
  transform: translate3d(0, -3px, 0);
}

.resource-card-featured {
  background: linear-gradient(135deg, var(--ink), #071f46);
  color: var(--white);
  grid-row: span 2;
  min-height: 27rem;
}

.resource-card span {
  align-self: start;
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card-featured span {
  color: #5de0b1;
}

.resource-card strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: auto;
}

.resource-card-featured strong {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.95;
}

.resource-card p {
  color: var(--slate);
  font-weight: 650;
  line-height: 1.55;
  margin: 0.8rem 0 0;
}

.resource-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.diagnostic-card,
.result-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.diagnostic-card,
.reservation-card,
.result-panel {
  transition: border-color 260ms var(--motion-ease), box-shadow 260ms var(--motion-ease),
    transform 260ms var(--motion-ease);
}

.diagnostic-card:focus-within,
.reservation-card:focus-within,
.result-panel:hover {
  border-color: rgba(11, 174, 123, 0.3);
  box-shadow: 0 30px 70px -48px rgba(8, 43, 95, 0.52);
  transform: translate3d(0, -2px, 0);
}

.field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label,
.choice-group p {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 0.55rem;
}

input,
select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--ink);
  min-height: 3rem;
  outline: none;
  padding: 0 1rem;
}

input:focus,
select:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 4px rgba(11, 174, 123, 0.1);
}

.choice-group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 1rem;
}

.choice-group p {
  margin: 0;
}

.choice-group label {
  align-items: center;
  color: var(--slate);
  display: flex;
  font-weight: 750;
  gap: 0.65rem;
}

.choice-group input {
  accent-color: var(--moss);
  min-height: auto;
}

.submit-button {
  margin-top: 1.2rem;
  width: 100%;
}

.privacy-note,
.sheet-status {
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 750;
  margin: 0.8rem 0 0;
}

.sheet-status {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  line-height: 1.45;
  padding: 0.85rem;
}

.sheet-status[hidden] {
  display: none;
}

.sheet-status[data-status="ready"],
.sheet-status[data-status="sent"] {
  background: var(--mint);
  border-color: rgba(11, 174, 123, 0.28);
  color: var(--moss);
}

.sheet-status[data-status="error"] {
  background: #fff4f5;
  border-color: rgba(217, 79, 101, 0.28);
  color: var(--rose);
}

.result-panel {
  align-self: start;
  position: sticky;
  top: 6rem;
}

.risk-score {
  align-items: center;
  border-radius: 1.5rem;
  color: var(--white);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 1.5rem 0;
  padding: 1.2rem;
}

.risk-score.low {
  background: var(--moss);
}

.risk-score.medium {
  background: var(--amber);
}

.risk-score.high {
  background: var(--rose);
}

.risk-score strong {
  font-size: 2.2rem;
}

.result-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
}

.result-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--slate);
  font-weight: 750;
  line-height: 1.5;
  list-style: none;
  padding: 0.9rem;
}

.reservation {
  align-items: center;
}

.reservation-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
}

.reservation-card strong {
  font-size: 1.6rem;
}

.reservation-card span {
  color: var(--slate);
  font-weight: 750;
  line-height: 1.5;
}

.seo-faq {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 0.9fr 1.1fr;
  padding-top: 0;
}

.faq-copy p:last-child {
  color: var(--slate);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.7;
  max-width: 42rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: 0 22px 55px -44px rgba(8, 43, 95, 0.42);
  padding: 1.25rem;
  transition: border-color 240ms var(--motion-ease), box-shadow 240ms var(--motion-ease),
    transform 240ms var(--motion-ease);
}

.faq-list article:hover {
  border-color: rgba(11, 174, 123, 0.3);
  box-shadow: 0 26px 64px -44px rgba(8, 43, 95, 0.5);
  transform: translate3d(0, -3px, 0);
}

.faq-list h3 {
  font-size: 1.15rem;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.faq-list p {
  color: var(--slate);
  font-weight: 650;
  line-height: 1.6;
  margin: 0;
}

.seo-page {
  background:
    radial-gradient(circle at top right, rgba(11, 174, 123, 0.08), transparent 28rem),
    linear-gradient(180deg, #fbfdfc 0%, var(--paper) 100%);
}

.article-hero {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.breadcrumb {
  color: var(--slate);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.84rem;
  font-weight: 850;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.breadcrumb a:hover {
  color: var(--moss);
}

.article-hero h1 {
  max-width: 13ch;
}

.article-panel {
  align-self: end;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.article-panel span {
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-panel strong {
  font-size: 1.25rem;
  line-height: 1.25;
}

.article-panel ul,
.article-body ul,
.article-body ol {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.1rem;
}

.article-panel li,
.article-body li {
  color: var(--slate);
  font-weight: 700;
  line-height: 1.55;
}

.article-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.28fr);
  padding-top: 0;
}

.article-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 4vw, 2.4rem);
}

.article-body h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  margin-top: 2.4rem;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 0.65rem;
  margin-top: 1.5rem;
}

.article-body p {
  color: var(--slate);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.75;
}

.article-callout {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  margin: 1.5rem 0;
  padding: 1.1rem;
}

.article-callout strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.45rem;
}

.article-aside {
  align-self: start;
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.article-cta,
.related-guides {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: 0 22px 55px -44px rgba(8, 43, 95, 0.42);
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.article-cta strong,
.related-guides strong {
  font-size: 1.2rem;
  line-height: 1.25;
}

.article-cta p {
  color: var(--slate);
  font-weight: 650;
  line-height: 1.55;
  margin: 0;
}

.related-card {
  border-top: 1px solid var(--line);
  color: var(--slate);
  display: grid;
  font-weight: 800;
  gap: 0.25rem;
  padding-top: 0.8rem;
}

.related-card:hover {
  color: var(--moss);
}

.related-card span {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 950;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--slate);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 2rem clamp(1rem, 4vw, 2rem);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition: opacity 780ms var(--motion-ease), transform 780ms var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.reveal-scale {
  transform: translate3d(0, 1.5rem, 0) scale(0.985);
}

.reveal.reveal-left {
  transform: translate3d(-1.5rem, 0, 0);
}

.reveal.reveal-right {
  transform: translate3d(1.5rem, 0, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translate3d(0, -1rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes preview-float {
  from {
    transform: translate3d(0, 0, 0) rotate(-0.25deg);
  }

  to {
    transform: translate3d(0, -0.55rem, 0) rotate(0.18deg);
  }
}

@keyframes status-breathe {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes chart-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes chart-area {
  from {
    opacity: 0;
    transform: translate3d(0, 0.7rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes point-pop {
  from {
    opacity: 0;
    transform: scale(0.4);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal.reveal-scale,
  .reveal.reveal-left,
  .reveal.reveal-right {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .proof-grid,
  .showcase-grid,
  .organic-hub,
  .resource-grid,
  .form-section,
  .reservation,
  .seo-faq {
    grid-template-columns: 1fr;
  }

  .article-hero,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .mvp-shot-primary {
    grid-column: auto;
    grid-row: auto;
  }

  h1 {
    max-width: 12ch;
  }

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

  .result-panel {
    position: static;
  }
}
