* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-background: #fff8f0;
  --color-surface: #ffffff;
  --color-surface-strong: #fff3e3;
  --color-border: #241816;
  --color-border-strong: #241816;
  --color-text: #241816;
  --color-muted: #5b4338;
  --color-orange: #f48b48;
  --color-orange-strong: #e46e2e;
  --color-gold: #f6c184;
  --color-green: #d8eadf;
  --color-brown: #5b4338;
  --color-shadow: 6px 6px 0px rgba(36, 24, 22, 1);
  --color-shadow-soft: 4px 4px 0px rgba(36, 24, 22, 1);
  --color-shadow-hover: 10px 10px 0px rgba(36, 24, 22, 1);
  --site-width: 1180px;
  --site-padding: clamp(1.25rem, 3vw, 2rem);
  --section-padding: clamp(5rem, 9vw, 8rem);
  --radius-large: 2rem;
  --radius-medium: 1.5rem;
  --radius-small: 1rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  background-image: radial-gradient(var(--color-gold) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  width: min(100% - (var(--site-padding) * 2), var(--site-width));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-padding) 0;
}

.section[id] {
  scroll-margin-top: 7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  background: var(--color-background);
  border-bottom: 3px solid var(--color-border);
  transition: transform 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 0px rgba(36, 24, 22, 1);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.brand-link {
  width: clamp(8rem, 12vw, 10rem);
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.site-nav a {
  position: relative;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--color-orange);
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 0.8rem;
  border: 3px solid var(--color-border);
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
}

.button:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 rgba(36, 24, 22, 1) !important;
}

.button-primary {
  color: #fff;
  background: var(--color-orange);
  box-shadow: var(--color-shadow-soft);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-orange-strong);
  box-shadow: var(--color-shadow-hover);
}

.button-secondary {
  color: var(--color-text);
  background: var(--color-green);
  box-shadow: var(--color-shadow-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #c1ebd3;
  box-shadow: var(--color-shadow-hover);
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-orange-strong);
}

h1,
h2,
h3 {
  font-family: "Fredoka", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.9;
  max-width: 12ch;
  color: var(--color-text);
  text-wrap: balance;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  max-width: 16ch;
  color: var(--color-text);
  text-wrap: balance;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  color: var(--color-text);
}

p {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
}

.hero-section {
  padding-top: clamp(4.5rem, 9vw, 7rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.hero-glow {
  position: absolute;
  width: clamp(18rem, 26vw, 28rem);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-glow-left {
  top: 4rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(246, 193, 132, 0.48), transparent 70%);
}

.hero-glow-right {
  right: -4rem;
  top: 8rem;
  background: radial-gradient(circle, rgba(216, 234, 223, 0.6), transparent 72%);
}

.hero-shell,
.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy,
.section-copy,
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-description,
.section-intro,
.contact-copy {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.75rem;
  list-style: none;
}

.hero-highlights li,
.hero-tags span {
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  box-shadow: 3px 3px 0px rgba(36, 24, 22, 1);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-highlights li i {
  color: var(--color-orange);
  margin-right: 0.5rem;
}

.hero-visual {
  min-height: 43rem;
}

.hero-stage {
  position: relative;
  min-height: 100%;
  padding: 1rem 0 2rem;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(130, 94, 67, 0.14);
  pointer-events: none;
}

.hero-orbit-one {
  inset: 8% 6% 12% 10%;
}

.hero-orbit-two {
  inset: 0 18% 22% 0;
}

.hero-panel,
.floating-card,
.proof-card,
.feature-panel,
.insight-card,
.service-card,
.process-card,
.contact-card {
  border: 3px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 1rem;
  box-shadow: var(--color-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-panel:hover,
.floating-card:hover,
.proof-card:hover,
.feature-panel:hover,
.insight-card:hover,
.service-card:hover,
.process-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--color-shadow-hover);
}

.hero-panel {
  position: relative;
  z-index: 3;
  max-width: 28rem;
  margin: 18rem 0 0 3rem;
  padding: clamp(1.75rem, 3vw, 2.4rem);
}

.hero-panel::before {
  display: none;
}

.panel-badge,
.card-kicker,
.insight-label,
.service-index,
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-background);
  background: var(--color-border);
  border: 2px solid var(--color-border);
}

.hero-panel h2 {
  margin-top: 1rem;
  max-width: 11ch;
  font-size: clamp(2.2rem, 3.1vw, 3.2rem);
}

.hero-panel p {
  margin-top: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.floating-card {
  position: absolute;
  width: min(100%, 19rem);
  padding: 1.5rem;
  border-radius: 1rem;
  z-index: 4;
}

.floating-card strong {
  display: block;
  margin-top: 0.7rem;
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  color: var(--color-text);
}

.floating-card p {
  margin-top: 0.6rem;
  font-size: 0.96rem;
}

.floating-card-top {
  top: 2rem;
  left: 0;
}

.floating-card-bottom {
  right: 0;
  bottom: 1rem;
}

.hero-logo-badge,
.hero-screenshot-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-logo-badge img {
  width: 4rem;
  height: 8rem;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-screenshot-card img {
  width: 6rem;
  height: 8.2rem;
  object-fit: cover;
  border-radius: 0.5rem;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
}

.hero-device {
  position: absolute;
  inset: 2rem 1rem 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 1rem;
  background: var(--color-gold);
  border: 4px solid var(--color-border);
  box-shadow: 12px 12px 0px rgba(36, 24, 22, 1);
  overflow: hidden;
}

.hero-device::before {
  display: none;
}

.hero-device img {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  max-height: 100%;
  object-fit: contain;
}

/* MARQUEE SECTION */
.marquee-section {
  width: 100%;
  overflow: hidden;
  background: var(--color-orange);
  border-top: 4px solid var(--color-border);
  border-bottom: 4px solid var(--color-border);
  padding: 1.5rem 0;
  display: flex;
  white-space: nowrap;
  transform: rotate(-2deg) scale(1.05);
  margin: 3rem 0;
  box-shadow: 0 8px 0px rgba(36, 24, 22, 1);
  z-index: 10;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: scroll-left 25s linear infinite;
}

.marquee-content span {
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  padding: 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-content i {
  font-size: 1.5rem;
  color: var(--color-gold);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}

.proof-section {
  padding-top: 2rem;
}

.proof-section .site-shell,
.services-section .site-shell,
.contact-section .site-shell {
  position: relative;
}

.proof-section::before,
.services-section::before,
.contact-section::before {
  display: none;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.75rem;
}

.proof-grid,
.services-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.proof-card,
.service-card,
.process-card {
  border-radius: var(--radius-medium);
  padding: 1.6rem;
}

.proof-value {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1;
  color: var(--color-text);
}

.proof-label {
  margin-top: 0.9rem;
  font-size: 0.97rem;
}

.insight-section {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.insight-layout {
  align-items: start;
}

.insight-visual {
  grid-row: 1 / span 2;
  position: sticky;
  top: 6.5rem;
}

.insight-layout .section-copy,
.insight-layout .insight-card {
  grid-column: 2;
}

.image-frame {
  position: relative;
  border-radius: 1rem;
  border: 4px solid var(--color-border);
  background: var(--color-green);
  box-shadow: 12px 12px 0px rgba(36, 24, 22, 1);
  overflow: hidden;
}

.image-frame::before {
  display: none;
}

.image-frame-large {
  min-height: 34rem;
  padding: 0;
  display: flex;
  align-items: center;
}

.image-frame-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-stack {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}

.feature-panel,
.insight-card {
  border-radius: var(--radius-large);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.feature-panel h3,
.service-card h3,
.process-card h3 {
  color: var(--color-text);
}

.feature-panel p,
.service-card p,
.process-card p,
.insight-body {
  margin-top: 0.75rem;
}

.insight-card {
  position: relative;
  overflow: hidden;
}

.insight-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 12rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 139, 72, 0.14), transparent 72%);
}

blockquote {
  margin-top: 1rem;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: var(--color-text);
}

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

.services-lead {
  align-items: center;
  margin-bottom: 2.5rem;
}

.services-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-copy h3 {
  max-width: 16ch;
}

.services-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.5rem;
  list-style: none;
}

.services-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-text);
  line-height: 1.6;
}

.services-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
}

.image-frame-wide {
  min-height: 24rem;
  padding: 1.4rem;
}

.image-frame-wide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-orange);
  margin-bottom: 1.2rem;
  background: var(--color-gold);
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  border: 3px solid var(--color-border);
  box-shadow: 4px 4px 0px rgba(36, 24, 22, 1);
  transform: rotate(-3deg);
}

.service-card:hover .service-icon {
  transform: rotate(3deg) scale(1.1);
  transition: transform 0.2s ease;
}

.process-section {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.process-section::before {
  display: none;
}

.process-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
  position: relative;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 1rem auto 1rem 1rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244, 139, 72, 0.72), rgba(246, 193, 132, 0.08));
}

.process-card h3,
.process-card p,
.process-step {
  margin-left: 1.2rem;
}

.contact-section {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: 3rem;
}

.contact-card {
  border-radius: 1rem;
  padding: 0;
  background: var(--color-gold);
  position: relative;
  overflow: hidden;
}

.contact-card-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--color-border) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.1;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-card h2 {
  max-width: 20ch;
  margin: 0 auto;
}

.contact-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.button-large {
  font-size: 1.3rem;
  padding: 1.2rem 2.5rem;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0 0;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(130, 94, 67, 0.12);
}

.site-footer p {
  font-size: 0.95rem;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.site-footer-links a {
  text-decoration: none;
}

.site-footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer-social-link i {
  font-size: 1rem;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--color-orange-strong);
}

.legal-page {
  min-height: 100vh;
  background-image: none;
}

.legal-main {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 10vw, 8rem);
}

.legal-section {
  padding: 0;
}

.legal-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-large);
  box-shadow: var(--color-shadow);
}

.legal-title {
  max-width: none;
  margin-top: 0.6rem;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.legal-meta {
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.legal-content h2 {
  max-width: none;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-content p {
  max-width: 72ch;
  margin-bottom: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.legal-footer {
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 300;
  width: min(100% - 2rem, 30rem);
  padding: 1.25rem;
  background: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: 1.25rem;
  box-shadow: var(--color-shadow);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__content {
  display: grid;
  gap: 0.6rem;
}

.cookie-banner__title {
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cookie-banner__text {
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-banner__button {
  flex: 1;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 3px solid var(--color-border);
  border-radius: 0.9rem;
  font-family: "Fredoka", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  transform: translate(-2px, -2px);
}

.cookie-banner__button-primary {
  color: #fff;
  background: var(--color-orange);
  box-shadow: var(--color-shadow-soft);
}

.cookie-banner__button-primary:hover,
.cookie-banner__button-primary:focus-visible {
  background: var(--color-orange-strong);
  box-shadow: var(--color-shadow-hover);
}

.cookie-banner__button-secondary {
  color: var(--color-text);
  background: var(--color-green);
  box-shadow: var(--color-shadow-soft);
}

.cookie-banner__button-secondary:hover,
.cookie-banner__button-secondary:focus-visible {
  background: #c1ebd3;
  box-shadow: var(--color-shadow-hover);
}

.reveal-fade {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-parallax-speed] {
  will-change: transform;
  transition: transform 0.18s linear;
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

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

@media (max-width: 920px) {
  .hero-shell,
  .split-layout,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-copy,
  .section-heading {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 38rem;
  }

  .hero-device {
    inset: 5rem 1rem 6rem 1rem;
  }

  .hero-panel {
    margin: 17rem 1rem 0;
  }

  .insight-visual {
    position: relative;
    top: auto;
  }

  .insight-layout .section-copy,
  .insight-layout .insight-card,
  .insight-visual {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.85rem 0;
  }

  .header-shell {
    flex-wrap: wrap;
  }

  .nav-button {
    width: 100%;
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  h2 {
    max-width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .contact-actions .button {
    text-transform: none !important;
  }

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

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

  .floating-card {
    width: 100%;
    max-width: none;
  }

  .floating-card-top,
  .floating-card-bottom {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-bottom: 1rem;
  }

  .hero-panel {
    margin: 0;
    max-width: none;
  }

  .hero-stage {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .hero-device {
    position: relative;
    inset: auto;
    min-height: 20rem;
    order: 2;
  }

  .hero-logo-badge {
    order: 1;
  }

  .hero-panel {
    order: 3;
  }

  .hero-screenshot-card {
    order: 4;
  }

  .image-frame-large {
    min-height: 22rem;
  }

  .image-frame-wide {
    min-height: 18rem;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer-links,
  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner {
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

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

  [data-parallax-speed] {
    transform: none !important;
  }
}
