:root {
  --accent: #fcd736;
  --accent-soft: rgba(252, 215, 54, 0.14);
  --accent-line: rgba(252, 215, 54, 0.28);
  --warm: #f7f6f1;
  --warm-muted: #e8e2d1;
  --bg: #070706;
  --bg-raised: #11110f;
  --surface: #171713;
  --surface-strong: #22211c;
  --text: var(--warm);
  --muted: #b6ad99;
  --muted-strong: #d4ccb8;
  --line: rgba(247, 246, 241, 0.12);
  --steel: #9aa1a4;
  --signal: #8fc4b1;
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.3);
  --radius: 8px;
  --header-height: 88px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #0a0a09 0%, var(--bg) 42%, #0f0f0d 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--accent);
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--accent);
  color: #111006;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(247, 246, 241, 0.08);
  background: rgba(7, 7, 6, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background: rgba(247, 246, 241, 0.045);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  overflow: hidden;
}

.brand-mark-full {
  width: 94px;
  height: 74px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.brand-mark img {
  width: 33px;
  height: 33px;
  max-width: none;
  object-fit: contain;
}

.brand-mark-full img {
  width: auto;
  height: 74px;
  max-width: 94px;
}

.brand-text {
  display: grid;
  gap: 0.18rem;
}

.brand-name {
  font-size: 0.94rem;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}

.primary-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0.5rem 0.72rem;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 750;
}

.primary-nav a[aria-current="page"] {
  background: rgba(247, 246, 241, 0.09);
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle::before {
  top: 13px;
}

.nav-toggle::after {
  bottom: 13px;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 850;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  color: #151202;
  background: #ffe45d;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(247, 246, 241, 0.055);
}

.button-ghost {
  border-color: var(--accent-line);
  background: rgba(247, 246, 241, 0.06);
  color: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(2.4rem, 5vw, 5.2rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  align-items: center;
  gap: clamp(2.8rem, 7vw, 6.4rem);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6.2vw, 5.6rem);
}

.hero .lead,
.page-hero .lead {
  max-width: 680px;
  margin: 1.55rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 2rem;
}

.metric {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.metric strong {
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.image-shell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-shell::after {
  display: none;
}

.image-shell img {
  width: 100%;
  height: clamp(280px, 36vw, 520px);
  object-fit: cover;
}

.image-shell.product-photo {
  border: 0;
  background: #fff;
  box-shadow: none;
}

.image-shell.product-photo::after {
  display: none;
}

.image-shell.product-photo img {
  object-fit: contain;
  padding: 0;
  background: #fff;
}

.image-shell.motion-demo {
  width: min(100%, 240px);
  justify-self: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.image-shell.motion-demo img {
  height: clamp(300px, 38vw, 420px);
  object-fit: contain;
}

.hero .image-shell img {
  height: clamp(320px, 38vw, 500px);
}

.page-hero .image-shell img {
  height: clamp(280px, 32vw, 430px);
}

.proof-strip {
  margin-top: clamp(2.4rem, 5vw, 4.4rem);
  border-block: 1px solid var(--line);
  background: rgba(247, 246, 241, 0.035);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.proof-item {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 0.28rem;
  padding: 1.2rem 1.1rem;
  border-inline-start: 1px solid var(--line);
}

.proof-item:last-child {
  border-inline-end: 1px solid var(--line);
}

.proof-item strong {
  font-size: 0.95rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: clamp(4.6rem, 9vw, 8.2rem) 0;
}

.section-tight {
  padding: clamp(3.4rem, 7vw, 5.8rem) 0;
}

.section-alt {
  background: #11110f;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.54fr);
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: end;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.section-header h2,
.split h2,
.panel h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-header p,
.split p,
.panel p,
.cta-band p {
  margin: 0;
  color: var(--muted-strong);
}

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

.story-section .section-header {
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.reveal-card {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.16, 0.82, 0.22, 1),
    border-color 220ms ease,
    background-color 220ms ease;
}

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

.reveal-card:nth-child(2).is-visible {
  transition-delay: 180ms;
}

.reveal-card:nth-child(3).is-visible {
  transition-delay: 360ms;
}

.feature-card,
.product-card,
.faq-list details,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 246, 241, 0.045);
}

.feature-card,
.product-card,
.contact-card {
  padding: clamp(1.25rem, 3vw, 1.6rem);
}

.feature-card:hover {
  border-color: rgba(252, 215, 54, 0.32);
  background: rgba(247, 246, 241, 0.07);
}

.feature-card h3,
.product-card h3,
.contact-card h3,
.step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.feature-card p,
.product-card p,
.contact-card p,
.step p {
  margin: 0;
  color: var(--muted);
}

.feature-number,
.step-number {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.story-section .feature-number {
  transition: transform 240ms ease, background-color 240ms ease;
}

.story-section .feature-card:hover .feature-number {
  background: rgba(252, 215, 54, 0.2);
  transform: translateY(-2px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1fr);
  gap: clamp(2.4rem, 7vw, 5.6rem);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.84fr);
}

.split-copy {
  display: grid;
  gap: 1.25rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 246, 241, 0.055);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.panel-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.panel-list li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted-strong);
}

.panel-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

.page-hero {
  padding: clamp(3.2rem, 8vw, 6.8rem) 0 clamp(3.1rem, 7vw, 5.8rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 246, 241, 0.04), transparent);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(3rem, 7vw, 5.6rem);
  align-items: center;
}

.breadcrumb {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--muted-strong);
}

.spec-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
  gap: 1.25rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 38%;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.spec-table td {
  color: var(--text);
  font-weight: 750;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.gallery-grid .image-shell:first-child {
  grid-row: span 2;
}

.gallery-grid .image-shell img {
  height: clamp(240px, 30vw, 430px);
}

.gallery-grid .image-shell:first-child img {
  height: clamp(360px, 48vw, 620px);
}

.product-gallery-section {
  padding-top: clamp(3.8rem, 7vw, 6.2rem);
}

.product-carousel {
  position: relative;
}

.product-carousel:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}

.product-carousel-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
}

.product-carousel-track {
  display: flex;
  transition: transform 220ms ease;
  will-change: transform;
}

.product-gallery-item {
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 52vw, 620px);
  margin: 0;
  background: #fff;
}

.product-gallery-item img {
  width: 100%;
  height: clamp(310px, 50vw, 600px);
  object-fit: contain;
  padding: 0;
}

.carousel-button {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.72);
  color: var(--text);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.carousel-button:hover {
  background: var(--accent);
  color: #151202;
  transform: translateY(-50%) scale(1.04);
}

.carousel-button span {
  display: block;
  margin-top: -0.1rem;
  font-size: 2.1rem;
  line-height: 1;
}

.carousel-button-prev {
  left: clamp(0.7rem, 2vw, 1.2rem);
}

.carousel-button-next {
  right: clamp(0.7rem, 2vw, 1.2rem);
}

.carousel-counter {
  position: absolute;
  right: clamp(0.7rem, 2vw, 1.2rem);
  bottom: clamp(0.7rem, 2vw, 1.2rem);
  z-index: 4;
  min-width: 4.8rem;
  margin: 0;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(7, 7, 6, 0.72);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 850;
  text-align: center;
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.step-number {
  margin: 0;
}

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

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice {
  margin-top: 1.35rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  padding: 1rem;
  color: var(--muted-strong);
}

.video-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050504;
  box-shadow: var(--shadow);
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c0c0a;
  color: var(--text);
  padding: 0.85rem 0.9rem;
}

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

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.small-text {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.product-card {
  display: grid;
  gap: 1rem;
}

.product-card img {
  width: 100%;
  height: clamp(220px, 22vw, 280px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  padding: 0.7rem;
  background: var(--warm);
}

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

.instagram-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 246, 241, 0.045);
}

.instagram-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: #050504;
  object-fit: cover;
}

.instagram-card div {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
}

.instagram-card h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

.instagram-card a {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 850;
}

.tag-accent {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent);
}

.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--warm);
  color: #15140f;
  padding: clamp(2.8rem, 6vw, 5rem) 0;
}

.cta-band .eyebrow,
.cta-band p {
  color: #5f5a4d;
}

.cta-band .eyebrow::before {
  background: #15140f;
}

.cta-band .button-primary {
  box-shadow: none;
}

.cta-band .container {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.site-footer {
  padding: 3.4rem 0 2.2rem;
  background: #050504;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 0.35fr));
  gap: 2rem;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 6, 0.98);
    padding: 0.65rem 1rem 1rem;
  }

  .nav-open .primary-nav {
    display: grid;
  }

  .primary-nav a {
    min-height: 46px;
    padding-inline: 0.9rem;
  }

  .nav-actions .button {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-grid,
  .page-hero-grid,
  .section-header,
  .split,
  .split-reverse,
  .spec-grid,
  .contact-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 11ch;
  }

  .section-header {
    align-items: start;
  }

  .hero-meta,
  .proof-grid,
  .feature-grid,
  .compat-grid,
  .instagram-grid,
  .product-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid .image-shell:first-child {
    grid-row: auto;
  }

  .image-shell img {
    height: clamp(220px, 48vw, 360px);
  }

  .hero .image-shell img,
  .page-hero .image-shell img,
  .gallery-grid .image-shell:first-child img {
    height: clamp(220px, 48vw, 360px);
  }

  .cta-band .container {
    justify-items: start;
  }
}

@media (max-width: 600px) {
  .container,
  .narrow,
  .nav-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand-tag {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .section {
    padding-block: clamp(3.5rem, 15vw, 5rem);
  }

  .page-hero {
    padding-block: clamp(2.6rem, 13vw, 4.2rem);
  }

  .hero .lead,
  .page-hero .lead {
    font-size: 1rem;
  }

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

  .hero-meta,
  .proof-grid,
  .feature-grid,
  .compat-grid,
  .instagram-grid,
  .product-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:last-child {
    border-inline: 0;
    border-top: 1px solid var(--line);
  }

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

  .footer-bottom {
    display: grid;
  }
}

@media (max-height: 680px) and (max-width: 720px) {
  .hero {
    padding-top: 1.1rem;
    padding-bottom: 1rem;
  }

  .hero-grid {
    gap: 1.1rem;
  }

  .hero .lead {
    margin-top: 0.8rem;
  }

  .hero-actions,
  .hero-meta {
    margin-top: 1rem;
  }

  .image-shell img {
    height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-card {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
