:root {
  --navy-950: #03101d;
  --navy-900: #07192c;
  --navy-800: #0b2745;
  --blue: #088ff1;
  --yellow: #ffd500;
  --gold: #efa900;
  --cream: #f4f1e8;
  --white: #ffffff;
  --ink: #09101a;
  --muted: #68717c;
  --line: rgba(7, 25, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--yellow);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 800;
}

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

.site-header {
  height: 88px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  width: 92px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.site-header nav {
  justify-self: center;
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--yellow);
  transform: translateY(-2px);
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--yellow);
  color: var(--navy-950);
}

.hero {
  min-height: 780px;
  padding: 154px 7vw 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 3vw;
  background:
    radial-gradient(circle at 74% 42%, rgba(4, 147, 241, 0.26), transparent 27%),
    linear-gradient(124deg, var(--navy-950) 0%, var(--navy-900) 58%, #0a3152 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -110px 28%;
  height: 230px;
  background: var(--yellow);
  transform: rotate(-5deg);
  opacity: 0.04;
}

.hero-watermark {
  position: absolute;
  width: min(66vw, 880px);
  height: min(66vw, 880px);
  object-fit: contain;
  right: -8vw;
  top: 24px;
  opacity: 0.055;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy,
.hero-product {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #9a7100;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.1rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero-lead {
  max-width: 630px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  min-height: 52px;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.015em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary,
.button-yellow {
  background: var(--yellow);
  color: var(--navy-950);
  box-shadow: 0 12px 32px rgba(255, 213, 0, 0.18);
}

.button-primary:hover,
.button-yellow:hover {
  box-shadow: 0 16px 38px rgba(255, 213, 0, 0.3);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.button-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero-trust {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.77rem;
  font-weight: 700;
}

.hero-trust span::first-letter {
  color: var(--yellow);
}

.hero-product {
  min-height: 580px;
}

.hero-product::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--yellow), #f1a800);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 510px;
  height: 510px;
  transform: translate(-50%, -50%);
}

.orbit-two {
  width: 575px;
  height: 575px;
  transform: translate(-50%, -50%);
  border-style: dashed;
  opacity: 0.35;
}

.key {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 50% 70%;
  filter: drop-shadow(0 22px 22px rgba(3, 16, 29, 0.36));
}

.key img {
  width: 100%;
}

.key-back {
  width: 250px;
  transform: translate(-96%, -54%) rotate(-22deg);
  opacity: 0.83;
}

.key-center {
  width: 315px;
  transform: translate(-50%, -55%) rotate(2deg);
  z-index: 3;
}

.key-front {
  width: 245px;
  transform: translate(4%, -45%) rotate(22deg);
  z-index: 2;
  opacity: 0.92;
}

.hero-stamp {
  position: absolute;
  right: 2%;
  bottom: 7%;
  z-index: 4;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(7deg);
}

.hero-stamp strong {
  color: var(--yellow);
  font-size: 2rem;
  letter-spacing: -0.08em;
}

.hero-stamp span {
  max-width: 88px;
  font-size: 0.62rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.numbers {
  min-height: 145px;
  padding: 0 7vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: var(--yellow);
}

.numbers > div {
  min-height: 82px;
  padding: 0 3vw;
  border-right: 1px solid rgba(3, 16, 29, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.numbers > div:first-child {
  padding-left: 0;
}

.numbers > div:last-child {
  border-right: 0;
}

.numbers strong {
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.numbers span {
  margin-top: 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.68;
}

.section {
  padding: 110px 7vw;
}

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

.section-heading {
  margin-bottom: 3.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 5vw;
  align-items: end;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2,
.story h2,
.values h2 {
  max-width: 820px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

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

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

.product-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  min-width: 0;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 143, 241, 0.38);
  box-shadow: 0 22px 56px rgba(7, 25, 44, 0.11);
}

.product-image {
  aspect-ratio: 1 / 0.94;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 213, 0, 0.11), transparent 52%),
    linear-gradient(145deg, #ffffff, #eae7df);
  overflow: hidden;
}

.product-image img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  transition: transform 300ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.055) rotate(-1deg);
}

.product-meta {
  min-height: 178px;
  padding: 1.15rem;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: start;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.product-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-meta h3 {
  margin: 0.2rem 0 0;
  color: var(--navy-950);
  font-size: 1.35rem;
  line-height: 1;
}

.product-meta strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--navy-950);
  font-size: 0.9rem;
  line-height: 1.2;
}

.product-meta p {
  min-height: 2.5em;
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.42;
}

.product-meta a {
  justify-self: start;
  color: #136ba6;
  font-size: 0.74rem;
  font-weight: 900;
}

.product-meta a span {
  display: inline;
  color: inherit;
  font-size: 1em;
}

.more-models {
  margin-top: 1rem;
  padding: 1.3rem 1.5rem;
  background: var(--navy-900);
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.more-models p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.71rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.more-models > div {
  display: flex;
  gap: 0.5rem;
}

.more-models > div span {
  min-width: 70px;
  padding: 0.58rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  color: var(--yellow);
  font-weight: 900;
}

.more-models a {
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}

.distributors {
  background: #fffdf8;
  border-top: 1px solid var(--line);
}

.distributor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 1rem;
}

.distributor-list {
  display: grid;
  gap: 1rem;
}

.distributor-card {
  min-height: 320px;
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
}

.distributor-logo {
  padding: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(8, 143, 241, 0.32), transparent 42%),
    var(--navy-900);
}

.distributor-logo img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  object-fit: contain;
}

.distributor-copy {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.distributor-copy > span,
.distributor-invite > span {
  color: #916c00;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.distributor-copy h3,
.distributor-invite h3 {
  margin: 0.55rem 0 0;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.distributor-copy p {
  margin: 1.2rem 0 0;
  color: var(--navy-800);
  font-weight: 850;
}

.distributor-copy address {
  max-width: 540px;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.5;
}

.distributor-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.distributor-actions a {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  color: #136ba6;
  font-size: 0.74rem;
  font-weight: 900;
}

.distributor-actions a:first-child {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy-950);
}

.distributor-invite {
  min-height: 320px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 90% 15%, rgba(8, 143, 241, 0.34), transparent 30%),
    var(--navy-950);
  color: var(--white);
}

.distributor-invite > span {
  color: var(--yellow);
}

.distributor-invite h3 {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.distributor-invite p {
  max-width: 560px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.distributor-invite .button {
  align-self: flex-start;
  margin-top: 1.6rem;
}

.culture {
  min-height: 750px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy-900);
  color: var(--white);
}

.culture-visual {
  min-height: 750px;
  padding: 5vw;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 143, 241, 0.12), rgba(8, 143, 241, 0.03)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 18px
    );
}

.culture-visual > img {
  position: absolute;
  width: min(74%, 560px);
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-5deg);
  z-index: 2;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.42));
}

.culture-word {
  margin: 0;
  position: absolute;
  left: -1.5vw;
  top: 11%;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  writing-mode: vertical-rl;
}

.culture-note {
  position: absolute;
  left: 4vw;
  bottom: 4vw;
  z-index: 3;
  padding-left: 1rem;
  border-left: 4px solid var(--yellow);
}

.culture-note span,
.culture-note strong {
  display: block;
}

.culture-note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.culture-note strong {
  margin-top: 0.4rem;
  font-size: 1.1rem;
}

.culture-copy {
  padding: 9vw 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-950);
}

.culture-copy h2,
.purpose-card h2,
.machine h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.3vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.culture-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.02rem;
  line-height: 1.75;
}

.culture-copy blockquote {
  max-width: 630px;
  margin: 2.5rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--yellow);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.55;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.75fr);
  gap: 8vw;
  background: #fffdf8;
}

.story-copy {
  padding-top: 0.2rem;
}

.story-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.story-copy .story-lead {
  margin-top: 0;
  color: var(--navy-950);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 750;
  line-height: 1.35;
}

.story-copy strong {
  color: var(--navy-950);
}

.purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.purpose-card {
  min-height: 620px;
  padding: 6vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.purpose-card > span {
  font-size: 0.73rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.purpose-card h2 {
  max-width: 670px;
}

.purpose-card p {
  max-width: 620px;
  margin: 2rem 0 0;
  line-height: 1.75;
}

.purpose-mission {
  background: var(--yellow);
  color: var(--navy-950);
}

.purpose-vision {
  background: var(--blue);
  color: var(--white);
}

.purpose-vision p {
  color: rgba(255, 255, 255, 0.72);
}

.values {
  background: var(--cream);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-grid article {
  min-height: 270px;
  padding: 2rem 2.2rem;
  border-right: 1px solid var(--line);
}

.value-grid article:last-child {
  border-right: 0;
}

.value-grid article > span {
  color: #a07700;
  font-size: 0.72rem;
  font-weight: 900;
}

.value-grid h3 {
  margin: 3.5rem 0 0;
  color: var(--navy-950);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.value-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.machine {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 7vw;
  align-items: center;
  background: var(--navy-950);
  color: var(--white);
}

.machine-lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.2rem;
}

.machine-copy ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.machine-copy li {
  padding: 1rem 0;
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
}

.machine-copy li span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
}

.machine-visual {
  min-height: 540px;
  padding: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 213, 0, 0.16), transparent 48%),
    linear-gradient(145deg, #ffffff, #dce1e6);
  overflow: hidden;
}

.machine-visual img {
  width: min(96%, 620px);
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 32px 32px rgba(0, 0, 0, 0.25));
}

.machine-label {
  position: absolute;
  left: -0.03em;
  top: 0.2em;
  color: rgba(3, 16, 29, 0.055);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 950;
  letter-spacing: -0.08em;
}

.machine-badge {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  padding: 0.7rem 0.9rem;
  background: var(--navy-950);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--yellow);
}

.service-strip article {
  min-height: 320px;
  padding: 3.5rem 4vw;
  border-right: 1px solid rgba(3, 16, 29, 0.18);
}

.service-strip article:last-child {
  border-right: 0;
}

.service-strip article > span {
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-strip h3 {
  margin: 3.2rem 0 0;
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.service-strip p {
  color: rgba(3, 16, 29, 0.65);
  line-height: 1.65;
}

.contact {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 7vw;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 70%, rgba(8, 143, 241, 0.28), transparent 28%),
    var(--navy-900);
  color: var(--white);
}

.contact::before {
  content: "JL";
  position: absolute;
  right: -0.03em;
  bottom: -0.27em;
  color: rgba(255, 255, 255, 0.025);
  font-size: 34vw;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.15em;
}

.contact-main,
.contact-keyberto {
  position: relative;
  z-index: 2;
}

.contact h2 span {
  display: block;
  color: var(--yellow);
}

.contact-main > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.contact-details {
  margin: 3rem 0 0;
  padding: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 0.6fr 0.6fr 1.5fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details dt {
  color: var(--yellow);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-details dd {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
}

.contact-keyberto {
  align-self: end;
  height: 650px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f7 100%);
  border-radius: 320px 320px 0 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.contact-keyberto img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  mix-blend-mode: normal;
}

.contact-keyberto > span {
  position: absolute;
  top: 4rem;
  right: 0;
  padding: 0.7rem 0.9rem;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(3deg);
}

.contact-keyberto > strong {
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

footer {
  padding: 2.5rem 7vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.footer-brand p {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-meta {
  text-align: right;
  font-size: 0.7rem;
  line-height: 1.4;
}

.floating-whatsapp {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 80;
  min-height: 54px;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  background: #20c86a;
  color: #052614;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px);
}

.floating-whatsapp span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 950;
}

.floating-whatsapp strong {
  font-size: 0.77rem;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 110px 1fr auto;
    padding-inline: 3vw;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
    padding-inline: 5vw;
  }

  .hero-product {
    min-height: 510px;
    transform: scale(0.86);
    margin-inline: -8%;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .value-grid article:nth-child(2) {
    border-right: 0;
  }

  .value-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact {
    grid-template-columns: 1fr 0.62fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 76px;
    grid-template-columns: 76px 1fr;
    gap: 1rem;
  }

  .brand,
  .brand img {
    width: 66px;
    height: 66px;
  }

  .site-header nav {
    justify-self: end;
    gap: 1rem;
  }

  .site-header nav a:nth-child(2),
  .site-header nav a:nth-child(3) {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 126px 7vw 0;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 14vw, 6rem);
  }

  .hero-product {
    width: min(100%, 620px);
    min-height: 580px;
    margin: 0 auto -10px;
    transform: scale(0.92);
  }

  .numbers {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 1.2rem;
  }

  .numbers > div {
    padding: 1rem 5vw;
  }

  .numbers > div:nth-child(2) {
    border-right: 0;
  }

  .section {
    padding: 80px 6vw;
  }

  .section-heading,
  .story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .more-models {
    grid-template-columns: 1fr;
  }

  .culture,
  .purpose,
  .machine,
  .service-strip,
  .contact {
    grid-template-columns: 1fr;
  }

  .distributor-layout {
    grid-template-columns: 1fr;
  }

  .culture-visual {
    min-height: 610px;
  }

  .culture-copy {
    padding: 80px 7vw;
  }

  .purpose-card {
    min-height: auto;
    padding: 70px 7vw;
  }

  .machine {
    gap: 4rem;
  }

  .machine-visual {
    min-height: 450px;
  }

  .service-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(3, 16, 29, 0.18);
  }

  .contact {
    padding-bottom: 0;
  }

  .contact-keyberto {
    height: 560px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }

  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 540px) {
  .site-header nav a {
    font-size: 0.74rem;
  }

  .hero {
    padding-inline: 5vw;
  }

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

  .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .hero-product {
    min-height: 430px;
    transform: scale(0.75);
    margin: -15px -16% -48px;
    width: 132%;
  }

  .numbers strong {
    font-size: 2rem;
  }

  .numbers span {
    font-size: 0.6rem;
  }

  .section-heading h2,
  .story h2,
  .values h2,
  .culture-copy h2,
  .purpose-card h2,
  .machine h2,
  .contact h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

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

  .distributor-logo {
    min-height: 230px;
  }

  .product-image {
    aspect-ratio: 1 / 0.8;
  }

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

  .value-grid article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .contact-details > div:last-child {
    grid-column: 1 / -1;
  }

  .contact-keyberto {
    height: 470px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .floating-whatsapp strong {
    display: none;
  }

  .floating-whatsapp {
    padding-right: 0.45rem;
  }
}

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

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