:root {
  --ink: #190b1f;
  --deep: #2b0f35;
  --purple: #56216d;
  --pink: #da3158;
  --coral: #ff6a32;
  --lime: #cdf538;
  --mint: #6bd7cc;
  --cream: #fff7ec;
  --paper: #fffdf8;
  --line: rgba(25, 11, 31, 0.13);
  --muted: #756775;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(25, 11, 31, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

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

.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 30;
  pointer-events: none;
}

.nav-shell {
  pointer-events: auto;
  width: min(var(--max), calc(100% - 24px));
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 50px rgba(25, 11, 31, 0.17);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 253, 248, 0.97);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--deep);
  font-weight: 950;
  line-height: 0.92;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(25, 11, 31, 0.75);
  font-size: 0.88rem;
  font-weight: 850;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--pink);
  background: rgba(218, 49, 88, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--coral));
  box-shadow: 0 16px 34px rgba(218, 49, 88, 0.28);
}

.btn-lime {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 16px 34px rgba(205, 245, 56, 0.25);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 72px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(218, 49, 88, 0.42), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(107, 215, 204, 0.24), transparent 28%),
    linear-gradient(135deg, #16071d, #2a1035 58%, #111d24);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.62fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.11);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--pink);
  background: rgba(218, 49, 88, 0.09);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7.7vw, 7.8rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  color: var(--lime);
}

h2 {
  margin-bottom: 22px;
  color: var(--deep);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  font-weight: 590;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-metrics {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 790px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics article {
  min-height: 126px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.hero-video-card {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #0f0615;
  box-shadow: var(--shadow);
}

.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font-weight: 950;
}

.video-caption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(25, 11, 31, 0.74);
  backdrop-filter: blur(14px);
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
}

.section {
  padding: clamp(74px, 9vw, 118px) 0;
}

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

.section-ink {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 14%, rgba(205, 245, 56, 0.16), transparent 28%),
    linear-gradient(135deg, #150719, #2e1239);
}

.section-ink h2,
.section-ink h3 {
  color: var(--white);
}

.proof-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-card {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--pink);
  font-weight: 950;
}

.proof-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--deep);
  font-size: 1.45rem;
  line-height: 1.05;
}

.proof-card p,
.section-heading p:not(.eyebrow),
.unit-card p,
.operation-copy p,
.founder-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 560;
}

.section-heading {
  max-width: 910px;
  margin-bottom: 44px;
}

.unit-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(310px, auto);
  gap: 16px;
}

.unit-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: 0 18px 44px rgba(25, 11, 31, 0.1);
}

.unit-card-large {
  grid-row: span 2;
}

.unit-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 11, 31, 0.08), rgba(25, 11, 31, 0.86));
}

.unit-card div {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  color: var(--white);
}

.unit-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unit-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.unit-card p {
  max-width: 520px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.operation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.operation-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--lime);
  font-weight: 850;
}

.team-gallery {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.team-gallery img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-gallery img:first-child {
  margin-top: 60px;
  height: 520px;
}

.products-section {
  overflow: hidden;
  background: var(--paper);
}

.product-marquee {
  overflow: hidden;
  width: 100%;
  padding: 4px 0 12px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: product-scroll 54s linear infinite;
}

.product-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.product-card {
  width: min(300px, 76vw);
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(25, 11, 31, 0.07);
}

.product-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.product-card h3 {
  margin: 0;
  padding: 18px;
}

@keyframes product-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.video-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.video-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.video-mini-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(25, 11, 31, 0.1);
}

.video-mini-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--deep);
}

.video-mini-card h3 {
  margin: 0;
  padding: 18px;
}

.founder-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(25, 11, 31, 0.94), rgba(25, 11, 31, 0.7)),
    url("assets/unidade-quiosque-shopping.jpg") center / cover;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
}

.founder-photo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.founder-copy h2 {
  color: var(--white);
}

.founder-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

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

.units-grid article {
  min-height: 120px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(25, 11, 31, 0.07);
}

.units-grid strong,
.units-grid span {
  display: block;
}

.units-grid strong {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 1.1rem;
}

.units-grid span {
  color: var(--muted);
  font-weight: 650;
}

.lead-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(25, 11, 31, 0.96), rgba(25, 11, 31, 0.84)),
    url("assets/equipe-produto.jpg") center / cover;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.lead-copy h2 {
  color: var(--white);
}

.lead-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  font-weight: 560;
}

.fine-print {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.9rem !important;
}

.lead-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: var(--shadow);
}

.lead-card h3 {
  margin-bottom: 22px;
  color: var(--pink);
  font-size: 1.8rem;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(25, 11, 31, 0.13);
  border-radius: var(--radius);
  outline: 0;
  color: var(--deep);
  background: #fff8f1;
  font-weight: 720;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(218, 49, 88, 0.12);
}

.lead-form .btn {
  width: 100%;
  margin-top: 4px;
}

.footer {
  padding: 56px 0;
  color: var(--white);
  background: #120615;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 34px;
}

.footer img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer h3 {
  color: var(--lime);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  font-weight: 650;
}

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

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

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

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

  .reveal {
    transition: none;
  }
}

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

  .hero-grid,
  .operation-grid,
  .video-section-grid,
  .founder-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-video-card,
  .hero-metrics {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-video-card {
    width: min(520px, 100%);
    min-height: auto;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
  }

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

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

  .unit-card-large {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    inset: 10px 0 auto;
    width: 100vw;
    overflow: hidden;
  }

  .nav-shell {
    width: fit-content;
    max-width: calc(100vw - 16px);
    min-height: 62px;
    gap: 8px;
    padding: 8px;
    justify-content: flex-start;
    border-radius: 24px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .nav-shell > .btn {
    flex: 0 0 auto;
    min-height: 42px;
    max-width: none;
    margin-left: 6px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 112px 0 56px;
  }

  .hero-grid {
    gap: 24px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 9.4vw, 2.72rem);
    line-height: 1;
    text-wrap: wrap;
  }

  h1 span {
    display: block;
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.35rem);
    line-height: 1;
  }

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

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    margin-bottom: 0;
  }

  .hero-video-card {
    width: min(360px, 100%);
  }

  .hero-metrics,
  .proof-grid,
  .unit-showcase,
  .team-gallery,
  .video-stack,
  .units-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics article,
  .proof-card {
    min-height: auto;
  }

  .proof-card span {
    margin-bottom: 28px;
  }

  .unit-card-large {
    grid-column: auto;
  }

  .unit-card {
    min-height: 430px;
  }

  .team-gallery img,
  .team-gallery img:first-child,
  .founder-photo img {
    height: auto;
    margin-top: 0;
  }

  .product-card img {
    height: 330px;
  }

  .lead-card {
    padding: 20px;
  }
}

/* Refinamento comercial: padronizacao visual e leitura centralizada */
body {
  padding-bottom: 72px;
}

.nav-shell {
  border-radius: 28px;
}

.btn {
  position: relative;
  isolation: isolate;
  min-height: 56px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  transform-style: preserve-3d;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 3px 5px auto;
  z-index: -1;
  height: 44%;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(145deg, #ff315f, #ff7436 58%, #ff9b37);
  box-shadow:
    0 16px 0 #ad2142,
    0 26px 46px rgba(218, 49, 88, 0.34);
}

.btn-lime {
  background: linear-gradient(145deg, #e7ff55, #c8ff1f 58%, #92df05);
  box-shadow:
    0 16px 0 #7aa300,
    0 26px 46px rgba(205, 245, 56, 0.32);
}

.btn-ghost {
  box-shadow:
    0 10px 0 rgba(255, 255, 255, 0.12),
    0 24px 42px rgba(0, 0, 0, 0.2);
}

.hero {
  min-height: auto;
  padding: 140px 0 92px;
  text-align: center;
}

.hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 28px;
}

.hero-copy,
.hero-video-card,
.hero-metrics {
  grid-column: 1;
  grid-row: auto;
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 1060px;
}

.eyebrow,
.section-heading .eyebrow,
.operation-copy .eyebrow,
.founder-copy .eyebrow,
.lead-copy .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
.section-heading,
.hero-copy > p:not(.eyebrow),
.operation-copy,
.founder-copy,
.lead-copy {
  text-align: center;
}

h1 {
  max-width: 1040px;
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  line-height: 1.03;
}

h1 span {
  display: inline;
}

h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 4.6vw, 4.35rem);
  line-height: 1.02;
}

.hero-copy > p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.operation-copy p,
.founder-copy p,
.lead-copy p {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.hero-video-card {
  width: min(340px, 82vw);
  min-height: 0;
  aspect-ratio: 9 / 16;
  padding: 8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    #110617;
  box-shadow:
    0 18px 0 rgba(0, 0, 0, 0.26),
    0 34px 80px rgba(0, 0, 0, 0.38);
  animation: media-float 5.5s ease-in-out infinite;
}

.hero-video-card video {
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  background: #08040d;
}

.video-caption {
  display: none;
}

.sound-toggle {
  top: 18px;
  right: 18px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  background: linear-gradient(145deg, #eaff58, #c5ff1e);
  box-shadow:
    0 10px 0 #729901,
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.hero-metrics {
  width: min(900px, 100%);
  margin: 8px auto 0;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.section-heading {
  margin-left: auto;
  margin-right: auto;
}

.proof-grid {
  gap: 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.proof-card {
  position: relative;
  min-height: 286px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(86, 33, 109, 0.13);
  border-radius: 22px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 236, 0.92)),
    var(--white);
  box-shadow:
    0 12px 0 rgba(86, 33, 109, 0.12),
    0 28px 60px rgba(25, 11, 31, 0.12);
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -38% 22%;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(205, 245, 56, 0.42), transparent 68%);
}

.proof-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.proof-number {
  display: inline-flex;
  margin: 0;
  color: rgba(218, 49, 88, 0.18);
  font-size: clamp(3.7rem, 5vw, 5.2rem);
  font-weight: 950;
  line-height: 0.8;
}

.proof-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(145deg, #eaff58, #bfff13);
  box-shadow:
    0 9px 0 #7aa300,
    0 18px 34px rgba(205, 245, 56, 0.24);
  font-size: 1.35rem;
  font-weight: 950;
}

.proof-card strong,
.proof-card p {
  position: relative;
  z-index: 1;
}

.unit-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 18px;
}

.unit-card,
.unit-card-large {
  grid-row: auto;
  grid-column: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
}

.unit-card img,
.product-card img,
.team-gallery img,
.founder-photo img {
  aspect-ratio: 3 / 4;
}

.operation-grid,
.video-section-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.operation-copy {
  max-width: 940px;
}

.pill-row {
  justify-content: center;
}

.team-gallery {
  width: min(920px, 100%);
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  align-items: stretch;
}

.team-gallery img,
.team-gallery img:first-child {
  height: auto;
  margin-top: 0;
  border-radius: 22px;
}

.product-card {
  width: min(280px, 76vw);
  border-radius: 22px;
}

.product-card img {
  height: auto;
}

.video-stack {
  width: min(760px, 100%);
}

.video-mini-card {
  border-radius: 22px;
}

.video-mini-card video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background:
    linear-gradient(135deg, #0d0612, #281033);
}

.founder-grid {
  justify-items: center;
}

.founder-copy {
  max-width: 820px;
}

.founder-photo {
  width: min(420px, 100%);
  border-radius: 22px;
}

.founder-photo img {
  height: auto;
}

.lead-grid {
  align-items: start;
}

.lead-card {
  border-radius: 22px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(145deg, #eaff58, #c9ff22 58%, #98e70a);
  box-shadow:
    0 14px 0 #759b02,
    0 26px 54px rgba(25, 11, 31, 0.34);
  font-weight: 950;
  line-height: 1;
  animation: cta-pulse 2.4s ease-in-out infinite;
}

.floating-short {
  display: none;
}

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

.reveal.is-visible {
  animation: reveal-pop 620ms ease both;
}

@keyframes reveal-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes media-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.025);
  }
}

@media (max-width: 1080px) {
  .unit-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 92px;
  }

  .site-header {
    width: max-content;
    max-width: calc(100vw - 16px);
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
  }

  .nav-shell {
    width: max-content;
    max-width: calc(100vw - 16px);
    border-radius: 24px;
  }

  .nav-shell > .btn {
    min-height: 46px;
    margin-left: 2px;
    border-radius: 16px;
    font-size: 0.78rem;
    box-shadow:
      0 8px 0 #ad2142,
      0 16px 32px rgba(218, 49, 88, 0.28);
  }

  .hero {
    padding: 112px 0 70px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.22rem, 9.4vw, 2.92rem);
    line-height: 1.03;
  }

  h1 span {
    display: block;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.95rem);
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 31ch;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: none;
  }

  .hero-actions .btn {
    min-height: 60px;
  }

  .hero-video-card {
    width: min(278px, 82vw);
    border-radius: 24px;
  }

  .sound-toggle {
    top: 14px;
    right: 14px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 14px;
  }

  .hero-metrics,
  .proof-grid,
  .unit-showcase,
  .team-gallery,
  .video-stack,
  .units-grid {
    grid-template-columns: 1fr;
  }

  .unit-card,
  .unit-card-large {
    width: min(340px, 100%);
    margin: 0 auto;
  }

  .team-gallery img,
  .team-gallery img:first-child,
  .founder-photo {
    width: min(340px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .proof-card {
    min-height: 250px;
  }

  .proof-top {
    justify-content: center;
  }

  .floating-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    min-width: 0;
    min-height: 54px;
    padding: 0 14px;
    font-size: 0.9rem;
    animation: cta-pulse 2.4s ease-in-out infinite;
  }

  .floating-full {
    display: none;
  }

  .floating-short {
    display: inline;
  }
}
