:root {
  --pink: #e8068c;
  --pink-dark: #c90078;
  --pink-deep: #a80064;
  --ink: #282828;
  --dark: #161717;
  --gray: #686868;
  --border: #d9d9d9;
  --light: #f5f5f7;
  --white: #fefefe;
  --container: 1296px;
  --radius: 8px;
  --display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--dark);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--pink-dark);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.section-charcoal {
  color: var(--white);
  background: var(--ink);
}

.section-light {
  background: var(--light);
}

.section-white {
  background: var(--white);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--pink-deep);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 88px;
  color: var(--white);
  background: rgb(22 23 23 / 92%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 18px;
  height: 18px;
  background: var(--pink);
  border-radius: 2px;
  box-shadow: 6px 6px 0 rgb(232 6 140 / 22%);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #e2e2e2;
  font-size: 0.875rem;
  font-weight: 600;
}

.main-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--pink);
}

.nav-cta {
  justify-self: end;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 13px 24px;
  gap: 12px;
  border: 0;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--pink-dark);
  box-shadow: 0 12px 34px rgb(201 0 120 / 20%);
}

.button-primary:hover {
  background: var(--pink-deep);
  box-shadow: 0 15px 40px rgb(201 0 120 / 30%);
}

.button-large {
  min-height: 56px;
  padding-inline: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link-light {
  color: var(--white);
}

.hero {
  min-height: 900px;
  padding: 184px 0 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 590px);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.hero-copy {
  max-width: 620px;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 5.5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-line {
  margin: 30px 0 0;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
}

.trust-line span {
  margin-inline: 7px;
  color: var(--pink);
}

.hero-media {
  position: relative;
  height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgb(0 0 0 / 54%));
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 17px 20px;
  background: rgb(22 23 23 / 90%);
  border-left: 3px solid var(--pink);
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-media figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof {
  padding: 46px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 64px;
}

.proof-intro h2 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

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

.proof-item span,
.process-list > li > span {
  display: block;
  margin-bottom: 10px;
  color: var(--pink);
  font-family: monospace;
  font-size: 0.76rem;
  font-weight: 700;
}

.proof-item h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.proof-item p {
  margin: 0;
  color: var(--white);
  font-size: 0.78rem;
}

.products,
.press {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
  gap: 64px;
  margin-bottom: 56px;
}

.section-heading h2,
.case-copy h2,
.cta-inner h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading > p {
  margin: 0;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.65;
}

.section-heading-dark > p {
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.product-card-featured {
  display: grid;
  grid-template-rows: 430px 1fr;
  color: var(--white);
  background: var(--dark);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover img,
.press-card:hover img {
  transform: scale(1.025);
}

.product-content {
  padding: 28px 32px;
}

.card-label {
  margin-bottom: 10px;
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-card-featured .card-label {
  color: var(--pink);
}

.product-content h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.12;
}

.product-content p:not(.card-label) {
  color: var(--gray);
  font-size: 0.88rem;
}

.product-card-featured .product-content p:not(.card-label) {
  color: var(--white);
}

.product-content a,
.press-content > a {
  font-size: 0.85rem;
  font-weight: 700;
}

.product-content a span,
.press-content > a span {
  margin-left: 7px;
}

.product-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.product-card-horizontal {
  display: grid;
  grid-template-columns: minmax(190px, 42%) 1fr;
  background: var(--white);
}

.product-card-muted {
  background: #eaeaec;
}

.product-card-horizontal .product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.product-card-horizontal .product-content a {
  margin-top: auto;
}

.process {
  padding: 104px 0 116px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 280px;
  padding: 28px 28px 0;
  border-top: 1px solid #424242;
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
}

.process-list h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.process-list p {
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.6;
}

.case-study {
  padding: 112px 0;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(480px, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(56px, 7vw, 96px);
}

.case-image {
  width: 100%;
  height: 690px;
  object-fit: cover;
  border-radius: var(--radius);
}

.case-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--white);
  line-height: 1.75;
}

.project-details {
  margin: 0 0 32px;
}

.project-details div {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #4a4a4a;
  font-size: 0.83rem;
}

.project-details div:last-child {
  border-bottom: 1px solid #4a4a4a;
}

.project-details dt {
  color: var(--white);
}

.project-details dd {
  margin: 0;
  color: var(--white);
  font-weight: 600;
}

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(430px, 1fr);
  gap: 24px;
}

.press-card {
  overflow: hidden;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.press-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.press-card-main {
  display: grid;
  grid-template-rows: 360px 1fr;
}

.press-card-main > img {
  object-position: center 31%;
}

.press-content {
  padding: 28px 32px;
}

.press-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--gray);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-meta span:first-child {
  color: var(--pink-deep);
}

.press-content h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
  line-height: 1.14;
}

.press-content p {
  color: var(--gray);
  font-size: 0.86rem;
  line-height: 1.55;
}

.press-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.press-card-small {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.press-card-small .press-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.press-card-small .press-content h3 {
  font-size: 1.3rem;
}

.press-card-small .press-content > a {
  margin-top: auto;
}

.press-card-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.press-card-dark .press-meta,
.press-card-dark .press-meta span:first-child,
.press-card-dark .press-content p {
  color: var(--white);
}

.reel-media {
  position: relative;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: rgb(201 0 120 / 88%);
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 50%;
  place-items: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.final-cta {
  padding: 120px 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  text-align: center;
}

.cta-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px auto;
  color: var(--gray);
  font-size: 1.08rem;
}

.cta-inner small {
  margin-top: 18px;
  color: var(--gray);
}

.site-footer {
  padding: 72px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 64px;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  gap: 72px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h2 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--white);
  font-size: 0.86rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  gap: 24px;
  border-top: 1px solid #424242;
  color: var(--white);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  text-align: right;
}

.technical-credit {
  color: #b8b8b8;
}

.technical-credit a {
  color: var(--white);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  gap: 12px;
  color: var(--white);
  background: var(--pink-dark);
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 30%);
  font-size: 0.82rem;
  font-weight: 700;
}

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

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

/* Product detail pages */
.product-hero {
  min-height: 820px;
  padding: 168px 0 88px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
}

.product-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.product-hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.65;
}

.product-hero-media {
  position: relative;
  height: 570px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
}

.product-hero-media::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 72%));
  content: "";
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  padding-left: 16px;
  color: var(--white);
  border-left: 3px solid var(--pink);
  font-size: 0.82rem;
  font-weight: 600;
}

.product-facts {
  padding: 48px 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.facts-grid article {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 14px;
}

.facts-grid span,
.uses-grid span {
  grid-row: 1 / span 2;
  color: var(--pink);
  font-family: monospace;
  font-size: 0.74rem;
  font-weight: 700;
}

.facts-grid h2 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.1rem;
}

.facts-grid p {
  margin: 0;
  color: var(--white);
  font-size: 0.8rem;
}

.product-intro {
  padding: 112px 0;
}

.product-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  justify-content: space-between;
  gap: 96px;
}

.product-intro h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.product-intro-copy > p {
  margin-bottom: 28px;
  color: var(--gray);
  line-height: 1.7;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.feature-list li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 1px;
  content: "";
}

.product-gallery {
  padding: 112px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

.gallery-grid figure {
  grid-column: span 5;
  margin: 0;
  overflow: hidden;
  background: var(--light);
  border-radius: var(--radius);
}

.gallery-grid .gallery-wide {
  grid-column: span 7;
}

.gallery-grid .gallery-tall {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-grid figure:not(.gallery-tall):nth-last-child(-n + 2) {
  grid-column: span 7;
}

.gallery-grid figure:last-child {
  grid-column: span 12;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid-product figure:nth-child(1) img,
.gallery-grid-product figure:nth-child(4) img {
  object-position: center 30%;
}

.product-uses {
  padding: 104px 0 112px;
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.uses-grid article {
  min-height: 220px;
  padding: 30px 0;
  border-top: 1px solid #4a4a4a;
}

.uses-grid span {
  display: block;
  margin-bottom: 38px;
}

.uses-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.uses-grid p {
  max-width: 330px;
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav.is-open {
    position: fixed;
    inset: 88px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 44px 32px;
    gap: 28px;
    color: var(--white);
    background: var(--dark);
    font-family: var(--display);
    font-size: 1.7rem;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

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

  .proof-items {
    gap: 20px;
  }

  .product-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    grid-template-rows: 480px auto;
  }

  .press-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: calc(100% - 48px);
  }

  .site-header {
    height: 72px;
  }

  .main-nav.is-open {
    inset: 72px 0 0;
  }

  .hero {
    min-height: auto;
    padding: 128px 0 56px;
  }

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

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .trust-line {
    line-height: 1.7;
  }

  .hero-media {
    height: 390px;
  }

  .hero-media figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .proof {
    padding: 64px 0;
  }

  .proof-grid {
    gap: 36px;
  }

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

  .products,
  .press,
  .case-study,
  .process,
  .final-cta {
    padding: 80px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .case-copy h2,
  .cta-inner h2 {
    font-size: 2.15rem;
  }

  .product-grid {
    gap: 20px;
  }

  .product-card-featured {
    grid-template-rows: 300px auto;
  }

  .product-side {
    gap: 20px;
  }

  .product-card-horizontal {
    grid-template-columns: 1fr;
  }

  .product-card-horizontal > img {
    height: 280px;
  }

  .product-content {
    padding: 24px;
  }

  .product-card-horizontal .product-content a {
    margin-top: 8px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    display: grid;
    grid-template-columns: 38px 1fr;
    min-height: 0;
    padding: 24px 0;
    gap: 12px;
  }

  .process-list > li > span {
    margin: 3px 0 0;
  }

  .case-grid {
    gap: 48px;
  }

  .case-image {
    height: 440px;
  }

  .press-card-main {
    grid-template-rows: 300px auto;
  }

  .press-card-main > img {
    object-position: center 26%;
  }

  .press-side {
    grid-template-columns: 1fr;
  }

  .press-card-small {
    grid-template-columns: 130px 1fr;
    min-height: 230px;
  }

  .press-card-small .press-content {
    padding: 20px 18px;
  }

  .press-content {
    padding: 24px;
  }

  .press-content h3 {
    font-size: 1.45rem;
  }

  .press-card-small .press-content h3 {
    font-size: 1.1rem;
  }

  .press-card-small .press-content p {
    display: none;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    gap: 48px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    padding: 24px 0;
    gap: 14px;
    text-align: left;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 40px);
  }

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

  .proof-item {
    padding-top: 20px;
    border-top: 1px solid #4a4a4a;
  }

  .press-card-small {
    grid-template-columns: 112px 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 48px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 1080px) {
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .product-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

@media (max-width: 760px) {
  .product-hero {
    min-height: auto;
    padding: 128px 0 56px;
  }

  .product-hero-grid,
  .product-intro-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-grid {
    gap: 48px;
  }

  .product-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .product-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .product-hero-media {
    height: 420px;
  }

  .product-facts {
    padding: 56px 0;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .facts-grid article {
    padding: 22px 0;
    border-top: 1px solid #4a4a4a;
  }

  .facts-grid article:last-child {
    border-bottom: 1px solid #4a4a4a;
  }

  .product-intro,
  .product-gallery,
  .product-uses {
    padding: 80px 0;
  }

  .product-intro-grid {
    gap: 36px;
  }

  .product-intro h2 {
    font-size: 2.15rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 14px;
  }

  .gallery-grid figure,
  .gallery-grid .gallery-wide,
  .gallery-grid .gallery-tall,
  .gallery-grid figure:not(.gallery-tall):nth-last-child(-n + 2),
  .gallery-grid figure:last-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid .gallery-wide,
  .gallery-grid figure:nth-child(3) {
    grid-column: span 2;
  }

  .gallery-grid .gallery-tall {
    grid-row: span 2;
  }

  .uses-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .uses-grid article {
    min-height: 0;
    padding: 28px 0;
  }

  .uses-grid span {
    margin-bottom: 22px;
  }
}

@media (max-width: 420px) {
  .product-hero-media {
    height: 370px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .gallery-grid figure,
  .gallery-grid .gallery-wide,
  .gallery-grid .gallery-tall,
  .gallery-grid figure:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

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

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

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