:root {
  --black: #060606;
  --black-2: #101010;
  --ink: #161616;
  --white: #f7f3ed;
  --paper: #eee8df;
  --soft: #d7d0c7;
  --muted: #9b948b;
  --red: #d91e2b;
  --red-dark: #8f1119;
  --line: rgba(247, 243, 237, 0.14);
  --line-dark: rgba(6, 6, 6, 0.14);
  --radius: 10px;
  --max: 1180px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

[id] {
  scroll-margin-top: 74px;
}

body {
  margin: 0;
  direction: rtl;
  color: var(--white);
  background: var(--black);
  font-family: "Heebo", "Assistant", "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247,243,237,0.035) 1px, transparent 1px),
    linear-gradient(rgba(247,243,237,0.03) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 58%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

bdi {
  unicode-bidi: isolate;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(247, 243, 237, 0.12);
  background: linear-gradient(180deg, rgba(28, 28, 29, 0.66), rgba(6, 6, 6, 0.52));
  backdrop-filter: blur(22px) saturate(1.2);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 54px;
  padding: 4px 10px;
  overflow: hidden;
  border: 1px solid rgba(247, 243, 237, 0.8);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.brand-badge img {
  width: 116px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 28px);
  color: var(--soft);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  width: 100%;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg,
.header-cta svg {
  flex: 0 0 auto;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.header-cta,
.button-primary,
.button-submit {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 45px rgba(217, 30, 43, 0.3);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(247, 243, 237, 0.26);
  background: rgba(247, 243, 237, 0.07);
}

.glass-panel {
  position: relative;
  border: 1px solid rgba(247, 243, 237, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(18, 18, 19, 0.34);
  backdrop-filter: blur(20px) saturate(1.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 70px rgba(0, 0, 0, 0.26);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 34%);
  opacity: .7;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  padding: 128px clamp(20px, 5vw, 72px) 52px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  transform: translateY(calc(var(--scroll-shift, 0) * -16px)) scale(1.04);
  transition: transform 120ms linear;
}

.hero-media video {
  object-fit: cover;
  filter: grayscale(.12) contrast(1.08) brightness(.82);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 12% 75%, rgba(217,30,43,.22), transparent 30%),
    linear-gradient(90deg, rgba(6,6,6,.92) 0%, rgba(6,6,6,.78) 46%, rgba(6,6,6,.38) 100%),
    linear-gradient(0deg, var(--black) 0%, rgba(6,6,6,.08) 34%, rgba(6,6,6,.72) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  grid-template-areas:
    "copy machine"
    "meta machine";
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-inner {
  grid-area: copy;
  width: min(800px, 100%);
  margin-inline-start: auto;
}

.hero-machine-card {
  grid-area: machine;
  position: relative;
  align-self: center;
  margin: 0;
  min-height: clamp(370px, 42vw, 560px);
  overflow: hidden;
  border-radius: 18px;
  background: rgba(12,12,12,.58);
  box-shadow: 0 34px 92px rgba(0,0,0,.46);
}

.hero-machine-card img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  object-position: 58% center;
  border-radius: 12px;
  filter: contrast(1.04) saturate(.92) brightness(.92);
}

.hero-machine-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 12px;
  background:
    linear-gradient(180deg, transparent 52%, rgba(0,0,0,.58)),
    linear-gradient(120deg, rgba(255,255,255,.18), transparent 32%);
}

.hero-machine-card figcaption {
  position: absolute;
  inset-inline: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: var(--white);
}

.hero-machine-card figcaption span {
  color: rgba(247,243,237,.68);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-machine-card figcaption strong {
  width: fit-content;
  padding: 10px 12px;
  border-inline-start: 3px solid var(--red);
  border-radius: 8px;
  background: rgba(6,6,6,.72);
  backdrop-filter: blur(14px);
  font-size: 1.08rem;
}

.kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: .82rem;
  font-weight: 1000;
  letter-spacing: 0;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 5.95rem);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.35vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: var(--soft);
  width: min(800px, 100%);
  margin-inline-start: auto;
}

.hero-meta span {
  padding: 9px 13px;
  border: 1px solid rgba(247, 243, 237, 0.2);
  border-radius: 999px;
  background: rgba(6, 6, 6, .42);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
}

.icon-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -46px clamp(20px, 5vw, 72px) 0;
  padding: 8px;
  border-radius: 18px;
  z-index: 4;
}

.icon-line-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px 18px;
  color: var(--soft);
  border-inline-start: 1px solid rgba(247, 243, 237, .12);
}

.icon-line-item:last-child {
  border-inline-start: 0;
}

.icon-line-item svg,
.use-case-flow svg,
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--red);
}

.icon-line-item span {
  font-weight: 1000;
}

.section {
  position: relative;
  padding: clamp(88px, 11vw, 154px) clamp(20px, 5vw, 72px);
  isolation: isolate;
}

.section-spacious {
  padding-block: clamp(90px, 10vw, 142px);
}

.section::after {
  content: "";
  position: absolute;
  inset-inline: clamp(20px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(247,243,237,.18), transparent);
}

.editorial-section::after,
.gallery-section::after {
  background: linear-gradient(90deg, transparent, rgba(6,6,6,.16), transparent);
}

.section-intro {
  width: min(850px, 100%);
  margin-bottom: clamp(34px, 6vw, 66px);
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .78fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(6,6,6,.08), transparent 18%),
    linear-gradient(0deg, rgba(6,6,6,.06), transparent 18%),
    var(--paper);
  color: var(--black);
}

.editorial-section .kicker,
.gallery-section .kicker,
.faq-section .kicker {
  color: var(--red-dark);
}

.editorial-copy p {
  max-width: 640px;
  color: #433d36;
  font-size: 1.17rem;
}

.material-hero,
.showcase-main,
.showcase-side,
.showcase-video,
.video-frame,
.trust-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #222;
  transform: translateZ(0);
}

.material-hero {
  min-height: 560px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 28px 80px rgba(6,6,6,.2);
}

.material-hero > img,
.showcase-main > img,
.showcase-side > img,
.trust-media > img,
.video-frame > video,
.showcase-video > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-main > img,
.material-hero > img {
  object-position: center;
}

.material-hero figcaption,
.showcase-main figcaption,
.showcase-side figcaption {
  position: absolute;
  inset-inline: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-inline-end: 3px solid var(--red);
  color: var(--white);
  background: rgba(6,6,6,.75);
  backdrop-filter: blur(12px);
  font-weight: 900;
  border-radius: 8px;
}

.quiet-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.quiet-list li {
  min-height: 150px;
  padding: 22px;
  border-inline-start: 1px solid var(--line-dark);
}

.quiet-list span {
  display: block;
  margin-bottom: 14px;
  font-weight: 1000;
  font-size: 1.15rem;
}

.quiet-list small {
  color: #59524b;
}

.use-cases {
  background: #0a0a0a;
}

.use-case-flow {
  display: grid;
  grid-template-columns: 1.05fr .85fr 1.1fr .9fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.use-case-flow div {
  padding-block: 20px;
  border-top: 1px solid var(--line);
}

.use-case-flow div:nth-child(even) {
  margin-top: 84px;
}

.use-case-flow svg {
  margin-bottom: 22px;
}

.use-case-flow span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-weight: 1000;
}

.use-case-flow strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
}

.use-case-flow p,
.video-copy p,
.trust-copy p,
.lead-copy p,
.simple-steps p {
  color: var(--soft);
}

.media-proof-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(238,232,223,.05), transparent 20%),
    linear-gradient(0deg, rgba(238,232,223,.04), transparent 18%),
    var(--black);
}

.video-frame {
  min-height: 540px;
  box-shadow: var(--shadow);
  padding: 0;
}

.video-frame video {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(6,6,6,.07), transparent 16%),
    linear-gradient(0deg, rgba(6,6,6,.05), transparent 18%),
    var(--paper);
  color: var(--black);
}

.gallery-section .section-intro p:not(.kicker) {
  max-width: 680px;
  color: #544d45;
  font-size: 1.1rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 292px);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(6,6,6,.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), transparent 22%),
    linear-gradient(180deg, #171717, #0d0d0d);
  box-shadow: 0 34px 92px rgba(6,6,6,.22);
}

.showcase-main {
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  box-shadow: none;
}

.showcase-side,
.showcase-video {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  box-shadow: none;
}

.showcase-grid > .showcase-side:nth-of-type(2) {
  grid-column: 7 / span 3;
  grid-row: 1;
}

.showcase-grid > .showcase-side:nth-of-type(3) {
  grid-column: 10 / span 3;
  grid-row: 1;
}

.showcase-video {
  grid-column: 7 / span 3;
  grid-row: 2;
}

.showcase-grid > .showcase-side:nth-of-type(5) {
  grid-column: 10 / span 3;
  grid-row: 2;
}

.showcase-video {
  color: var(--white);
  padding: 0;
}

.showcase-video video {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.showcase-video figcaption {
  position: absolute;
  inset-inline-end: 16px;
  bottom: 16px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(6,6,6,.7);
  backdrop-filter: blur(14px);
  font-weight: 900;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 18px 20px;
  color: var(--white);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(6,6,6,.84), rgba(6,6,6,.6)),
    rgba(6,6,6,.76);
}

.gallery-cta strong {
  font-size: 1.12rem;
}

.gallery-cta span {
  color: var(--soft);
}

.gallery-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-inline-start: auto;
}

.gallery-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(247,243,237,.22);
  border-radius: 8px;
  font-weight: 900;
}

.gallery-cta a:first-child {
  border-color: transparent;
  background: var(--red);
}

.gallery-section .showcase-main figcaption,
.gallery-section .showcase-side figcaption,
.gallery-section .material-hero figcaption {
  inset-inline: auto 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 9px 11px;
  border-inline-end: 0;
  border-inline-start: 3px solid var(--red);
  background: rgba(6,6,6,.72);
  font-size: .94rem;
  line-height: 1.25;
}

.showcase-main::after,
.showcase-side::after,
.showcase-video::after,
.material-hero::after,
.trust-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0,0,0,.28)),
    linear-gradient(120deg, rgba(255,255,255,.12), transparent 28%);
  opacity: .72;
}

.showcase-main figcaption,
.showcase-side figcaption,
.material-hero figcaption {
  z-index: 2;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(238, 232, 223, .045), transparent 20%),
    #0c0c0d;
}

.trust-media {
  min-height: 560px;
}

.trust-lines {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.trust-lines span {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
}

.process-section {
  background:
    linear-gradient(180deg, #0c0c0d 0%, var(--black) 18%),
    var(--black);
}

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

.simple-steps li {
  min-height: 210px;
  padding: 26px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.055), transparent);
}

.simple-steps span {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-weight: 1000;
}

.simple-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.simple-steps p {
  margin: 0;
}

.faq-section {
  background: var(--paper);
  color: var(--black);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

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

summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  font-size: 1.16rem;
  font-weight: 1000;
}

summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.55rem;
}

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

details p {
  max-width: 780px;
  margin: 0;
  padding: 0 0 24px;
  color: #504941;
}

.lead-section {
  background:
    radial-gradient(circle at 84% 20%, rgba(217,30,43,.2), transparent 28%),
    var(--black);
}

.lead-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px);
  border-radius: 18px;
}

.lead-copy {
  position: sticky;
  top: 116px;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(247, 243, 237, .18);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(247, 243, 237, .065);
  direction: rtl;
}

input::placeholder,
textarea::placeholder {
  color: rgba(215, 208, 199, .52);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(217, 30, 43, .36);
  border-color: var(--red);
}

.honeypot {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.form-note a {
  color: var(--white);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #030303;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  inset-inline-start: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(247, 243, 237, .18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(217, 30, 43, .96);
  box-shadow: 0 18px 48px rgba(217, 30, 43, .34);
  font-weight: 1000;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 30, 43, .24), transparent 34%),
    var(--black);
}

.thank-you {
  width: min(720px, 100%);
  padding: clamp(30px, 7vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(16, 16, 16, .9);
  box-shadow: var(--shadow);
}

.thank-you img {
  width: min(260px, 72vw);
  height: auto;
  margin: 0 auto 30px;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
}

.thank-you h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.thank-you p:not(.kicker) {
  max-width: 560px;
  margin-inline: auto;
  color: var(--soft);
  font-size: 1.12rem;
}

.thank-you .button {
  margin: 8px 5px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

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

@media (max-width: 1120px) {
  .main-nav {
    gap: 14px;
    font-size: .88rem;
  }

  .editorial-section,
  .media-proof-section,
  .trust-section,
  .lead-shell {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "machine"
      "meta";
    gap: 28px;
  }

  .hero-machine-card {
    width: min(640px, 100%);
    min-height: 360px;
    margin-inline-start: auto;
  }

  .material-hero {
    min-height: 420px;
    aspect-ratio: 16 / 9;
  }

  .lead-copy {
    position: static;
  }

  .icon-line,
  .quiet-list,
  .simple-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 360px 240px 240px;
  }

  .showcase-main {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 100%;
  }

  .showcase-grid > .showcase-side:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .showcase-grid > .showcase-side:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .showcase-video {
    grid-column: 1;
    grid-row: 3;
  }

  .showcase-grid > .showcase-side:nth-of-type(5) {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 820px) {
  [id] {
    scroll-margin-top: 68px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    padding: 10px 14px;
  }

  .main-nav {
    display: none;
  }

  .brand-badge {
    width: 104px;
    height: 46px;
  }

  .brand-badge img {
    width: 90px;
  }

  .header-cta {
    justify-self: end;
    min-height: 44px;
    padding: 0 12px;
    font-size: .82rem;
  }

  .hero {
    min-height: 82svh;
    align-items: center;
    padding: 104px 18px 34px;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 28% 78%, rgba(217,30,43,.24), transparent 34%),
      linear-gradient(180deg, rgba(6,6,6,.84), rgba(6,6,6,.9)),
      linear-gradient(0deg, var(--black), transparent);
  }

  .hero-inner,
  .hero-meta {
    margin-inline-start: 0;
  }

  .hero-layout {
    gap: 22px;
  }

  .hero-machine-card {
    min-height: 260px;
    max-height: 330px;
    border-radius: 14px;
  }

  .hero-machine-card img,
  .hero-machine-card::after {
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }

  .hero-machine-card figcaption {
    inset-inline: 18px;
    bottom: 18px;
  }

  .hero-machine-card figcaption span {
    display: none;
  }

  .hero-machine-card figcaption strong {
    font-size: .94rem;
  }

  h1 {
    font-size: clamp(2.45rem, 11.3vw, 3.42rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3.2rem);
  }

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

  .icon-line,
  .quiet-list,
  .simple-steps {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .icon-line {
    margin: 18px 16px 0;
    padding: 6px;
  }

  .icon-line-item {
    min-height: 58px;
    padding: 12px;
    border-inline-start: 0;
    border-bottom: 1px solid rgba(247,243,237,.1);
  }

  .material-hero,
  .video-frame,
  .trust-media {
    min-height: 310px;
  }

  .material-hero {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: clamp(310px, 58vw, 452px);
    aspect-ratio: auto;
  }

  .use-case-flow {
    grid-template-columns: 1fr;
  }

  .use-case-flow div:nth-child(even) {
    margin-top: 0;
  }

  .use-case-flow span,
  .simple-steps span {
    margin-bottom: 18px;
  }

  .showcase-main,
  .showcase-side,
  .showcase-video {
    min-height: 0;
    aspect-ratio: auto;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 320px 240px 260px;
  }

  .showcase-main {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 320px;
  }

  .showcase-side {
    height: 240px;
  }

  .showcase-video {
    grid-column: 1;
    grid-row: 3;
    height: 240px;
  }

  .showcase-grid > .showcase-side:nth-of-type(5) {
    grid-column: 2;
    grid-row: 3;
    height: 240px;
  }

  .lead-shell {
    padding-bottom: 74px;
  }

  .lead-actions {
    display: grid;
  }

  .gallery-cta {
    display: grid;
    gap: 10px;
  }

  .gallery-cta div {
    display: grid;
    width: 100%;
    margin-inline-start: 0;
  }

  .floating-whatsapp {
    inset-inline: 16px;
    bottom: 14px;
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 92px;
  }
}

@media (max-width: 620px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    padding: 10px;
  }

  .showcase-main,
  .showcase-side,
  .showcase-video {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: 250px;
  }

  .showcase-grid > .showcase-side:nth-of-type(2),
  .showcase-grid > .showcase-side:nth-of-type(3),
  .showcase-grid > .showcase-side:nth-of-type(5),
  .showcase-video {
    grid-column: 1;
    grid-row: auto;
  }
}
