@font-face {
  font-family: "SUIT Variable";
  src: url("assets/fonts/SUIT-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --orange: #ff6920;
  --black: #070707;
  --ink: #121212;
  --muted: #707070;
  --paper: #f5f5f2;
  --white: #ffffff;
  --line: rgba(18, 18, 18, 0.14);
  --page: min(1440px, calc(100vw - 56px));
  --header-height: 72px;
  font-family: "SUIT Variable", sans-serif;
  color: var(--ink);
  background: var(--white);
  color-scheme: light;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-150%);
}

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

.intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow: hidden;
  color: var(--white);
  background: #000;
  animation: intro-shell 3.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.intro--done {
  animation: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease, visibility 350ms;
}

.intro--reset,
.intro--reset .intro__beam,
.intro--reset .intro__scan,
.intro--reset .intro__final {
  animation: none !important;
}

.intro__skip {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: 32px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.intro__skip:hover,
.intro__skip:focus-visible {
  color: var(--orange);
}

.intro__beam {
  position: absolute;
  left: -22vw;
  bottom: -42vh;
  width: 170vw;
  height: 165vh;
  opacity: 0;
  background: conic-gradient(
    from 3deg at 0 100%,
    transparent 0deg,
    transparent 8deg,
    rgba(255, 105, 32, 0.04) 10deg,
    rgba(255, 105, 32, 0.5) 17deg,
    rgba(255, 105, 32, 0.08) 25deg,
    transparent 29deg,
    transparent 360deg
  );
  filter: blur(13px);
  transform: rotate(-22deg);
  transform-origin: 0 100%;
  mix-blend-mode: screen;
  animation: searchlight 1.75s 0.18s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro__beam::after {
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 18vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 90px 36px rgba(255, 105, 32, 0.48);
  content: "";
}

.intro__scan {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  clip-path: circle(0 at 0 100%);
  animation: scan-logo 1.85s 0.22s ease-in-out forwards;
}

.intro__scan img,
.intro__final img {
  width: min(54vw, 680px);
}

.intro__final {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: var(--white);
  animation: final-logo 1.5s 1.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes searchlight {
  0% {
    opacity: 0;
    transform: rotate(-22deg);
  }
  18% {
    opacity: 0.82;
  }
  72% {
    opacity: 0.95;
    transform: rotate(18deg);
  }
  100% {
    opacity: 0;
    transform: rotate(30deg);
  }
}

@keyframes scan-logo {
  0% {
    opacity: 0;
    clip-path: circle(0 at 0 100%);
  }
  20% {
    opacity: 0.18;
  }
  44% {
    opacity: 0.82;
    clip-path: circle(25% at 24% 72%);
  }
  72% {
    opacity: 0.68;
    clip-path: circle(31% at 68% 38%);
  }
  100% {
    opacity: 0;
    clip-path: circle(18% at 100% 0);
  }
}

@keyframes final-logo {
  0% {
    opacity: 0;
    transform: scale(1.025);
  }
  24%,
  82% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(0.985);
  }
}

@keyframes intro-shell {
  0%,
  90% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding:
    0 max(28px, env(safe-area-inset-right), calc((100vw - 1440px) / 2))
    0 max(28px, env(safe-area-inset-left), calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
  min-height: 44px;
}

.site-nav {
  display: flex;
  gap: 36px;
}

.site-nav a,
.header-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav a::after,
.header-contact::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="location"]::after,
.header-contact:hover::after,
.header-contact:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  padding: 0 2px;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  text-decoration: none;
  transition: color 180ms ease;
}

.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a[aria-current="page"] {
  color: var(--orange);
}

.language-switch span {
  color: var(--line);
}

main {
  padding-top: var(--header-height);
}

.scene {
  min-height: calc(100svh - var(--header-height));
  scroll-margin-top: var(--header-height);
}

.reveal-ready .scene-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-ready .scene-reveal--late {
  transition-delay: 100ms;
}

.reveal-ready .scene.is-active .scene-reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  min-height: calc(100svh - var(--header-height));
  background: var(--paper);
}

.hero__copy {
  z-index: 2;
  align-self: center;
  padding: 80px 5vw 100px max(28px, calc((100vw - 1440px) / 2));
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(64px, 6.6vw, 128px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero__lead {
  margin: 48px 0 0;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 520;
  line-height: 1.55;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}

.hero__explorer {
  display: grid;
  grid-template-columns: 1fr 1.16fr;
  width: min(100%, 560px);
  margin-top: 48px;
  border: 1px solid rgba(18, 18, 18, 0.58);
  background: rgba(255, 255, 255, 0.55);
}

.hero__explorer a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 84px;
  padding: 16px 50px 16px 18px;
  text-decoration: none;
  transition: color 180ms ease-out, background-color 180ms ease-out;
}

.hero__explorer a + a {
  border-left: 1px solid rgba(18, 18, 18, 0.3);
}

.hero__explorer a:hover,
.hero__explorer a:focus-visible {
  color: var(--black);
  background: var(--orange);
}

.hero__explorer span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.hero__explorer strong {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero__explorer b {
  position: absolute;
  right: 18px;
  bottom: 19px;
  color: var(--orange);
  font-size: 19px;
  font-weight: 500;
  transition: color 180ms ease-out, transform 180ms ease-out;
}

.hero__explorer a:hover b,
.hero__explorer a:focus-visible b {
  color: var(--black);
  transform: translateY(2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: color 180ms ease, background 180ms ease;
}

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

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--black);
  background: var(--orange);
}

.hero__media {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  margin: 0;
  background: var(--black);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 50%;
  transform: scale(1.02);
  transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-active .hero__media img {
  transform: scale(1);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 30%);
  content: "";
}

.hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero__patent {
  position: absolute;
  z-index: 3;
  right: calc(50% - 46px);
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 170px;
  padding: 18px;
  color: var(--white);
  background: var(--orange);
}

.hero__patent strong {
  font-size: 44px;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.hero__patent span {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.technology {
  padding: clamp(110px, 11vh, 150px) max(28px, calc((100vw - 1440px) / 2));
  color: var(--white);
  background: var(--black);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  margin-bottom: 72px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 84px);
  line-height: 0.97;
  letter-spacing: -0.07em;
  text-wrap: balance;
  word-break: keep-all;
}

.section-heading__body {
  grid-column: 2;
  max-width: 500px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.technology__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.tech-card {
  min-height: 340px;
  padding: 26px 26px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.tech-card:last-child {
  border-right: 0;
}

.tech-card__index {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.tech-card h3 {
  margin: 92px 0 24px;
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.tech-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  text-wrap: pretty;
}

.applications {
  padding: clamp(92px, 9vh, 120px) max(28px, calc((100vw - 1440px) / 2));
}

.section-heading--applications {
  grid-template-columns:
    minmax(150px, 0.42fr)
    minmax(460px, 1.38fr)
    minmax(300px, 0.8fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 52px;
}

.section-heading--applications .eyebrow {
  align-self: start;
  margin-top: 8px;
}

.section-heading--applications h2 {
  grid-column: 2;
}

.section-heading--applications .section-heading__body {
  grid-column: 3;
  margin: 0 0 5px;
}

.applications__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-card {
  margin: 0;
}

.product-card__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ecebe7;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card--beauty .product-card__image {
  background: #f1eee6;
}

.product-card--beauty .product-card__image img {
  object-position: center 48%;
}

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

.product-card figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 24px 4px;
}

.product-card figcaption span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.product-card figcaption strong {
  grid-column: 1 / -1;
  font-size: clamp(24px, 2.4vw, 40px);
  letter-spacing: -0.05em;
}

.product-card figcaption small {
  grid-row: 1;
  grid-column: 2;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.patents {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  min-height: max(700px, calc(100svh - var(--header-height)));
  overflow: hidden;
  color: var(--white);
  background: var(--orange);
}

.patents__number {
  align-self: center;
  margin-left: -0.04em;
  font-size: clamp(420px, 45vw, 780px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.11em;
  color: var(--black);
}

.patents__copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 70px 6vw 70px 0;
}

.patents__copy .eyebrow {
  color: var(--black);
}

.patents__copy h2 {
  margin: 0;
  font-size: clamp(52px, 6.8vw, 110px);
  font-weight: 420;
  line-height: 0.92;
  letter-spacing: -0.07em;
  word-break: keep-all;
}

.patents__copy h2 strong {
  color: var(--black);
  font-weight: 900;
}

.patents__copy--en h2 {
  font-size: clamp(52px, 5.4vw, 88px);
  letter-spacing: -0.06em;
}

.patents__copy p:last-child {
  max-width: 390px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.partners {
  padding: clamp(110px, 11vh, 150px) max(28px, calc((100vw - 1440px) / 2));
  background: var(--paper);
}

.partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.partner-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 42px 34px 30px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  background: var(--white);
  transition: color 220ms ease, background 220ms ease;
}

.partner-card:last-child {
  border-right: 0;
}

.partner-card:hover,
.partner-card:focus-visible {
  color: var(--black);
  background: linear-gradient(var(--orange), var(--orange)) top / 100% 5px no-repeat, var(--white);
}

.partner-card img {
  width: auto;
  max-width: min(100%, 360px);
  height: 42px;
  object-fit: contain;
  object-position: left center;
}
.partner-card span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact {
  padding: 160px max(28px, calc((100vw - 1440px) / 2));
  color: var(--white);
  background: var(--black);
}

.contact h2 {
  margin: 0 0 54px;
  font-size: clamp(70px, 11vw, 190px);
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--orange);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  font-size: clamp(20px, 2.4vw, 38px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 44px;
  padding: 46px max(28px, calc((100vw - 1440px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.56);
  background: var(--black);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.site-footer img {
  width: 180px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  :root {
    --page: calc(100vw - 36px);
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding:
      0 max(18px, env(safe-area-inset-right))
      0 max(18px, env(safe-area-inset-left));
  }

  .site-nav {
    display: none;
  }

  .brand {
    width: 136px;
  }

  .header-actions {
    gap: 14px;
  }

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

  .hero__copy {
    min-height: calc(72svh - var(--header-height));
    padding: 72px 24px 64px;
  }

  .hero h1 {
    font-size: clamp(68px, 17vw, 118px);
  }

  .hero__media {
    min-height: 58svh;
  }

  .hero__patent {
    right: 0;
    bottom: calc(58svh - 72px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading--applications {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading--applications .eyebrow,
  .section-heading--applications h2,
  .section-heading--applications .section-heading__body {
    grid-column: 1;
    margin-top: 0;
  }

  .section-heading__body {
    grid-column: 1;
    margin-top: 0;
  }

  .technology {
    padding: 100px 24px;
  }

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

  .tech-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .tech-card h3 {
    margin: 0;
  }

  .tech-card p {
    grid-column: 2;
  }

  .applications,
  .partners {
    padding: 100px 24px;
  }

  .applications__grid,
  .partners__grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .patents {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: max(520px, calc(100svh - var(--header-height)));
  }

  .patents__number {
    font-size: 58vw;
  }

  .contact {
    padding: 110px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding:
      0 max(14px, env(safe-area-inset-right))
      0 max(14px, env(safe-area-inset-left));
  }

  .brand {
    width: 118px;
  }

  .header-actions {
    gap: 8px;
  }

  .intro__skip {
    top: 18px;
    right: 18px;
  }

  .intro__scan img,
  .intro__final img {
    width: 78vw;
  }

  .hero__copy {
    min-height: calc(78svh - var(--header-height));
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(62px, 18.5vw, 88px);
  }

  .hero__lead br {
    display: none;
  }

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

  .hero__explorer a + a {
    border-top: 1px solid rgba(18, 18, 18, 0.3);
    border-left: 0;
  }

  .hero__media {
    min-height: 52svh;
  }

  .hero__patent {
    bottom: calc(52svh - 72px);
    width: 148px;
  }

  .section-heading h2 {
    font-size: 48px;
  }

  .technology__grid {
    margin-top: 10px;
  }

  .tech-card {
    grid-template-columns: 40px 1fr;
    padding-right: 0;
    padding-left: 0;
  }

  .tech-card h3 {
    min-width: 0;
    font-size: clamp(36px, 10.5vw, 42px);
  }

  .applications__grid {
    gap: 46px;
  }

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

  .product-card figcaption small {
    grid-row: auto;
    grid-column: 1;
  }

  .patents {
    grid-template-columns: 1fr;
    min-height: max(650px, calc(100svh - var(--header-height)));
  }

  .patents__number {
    position: absolute;
    top: -20px;
    left: -18px;
    font-size: 104vw;
    opacity: 0.9;
  }

  .patents__copy {
    align-self: end;
    padding: 0 24px 70px;
  }

  .partner-card {
    min-height: 220px;
    padding: 34px 24px 26px;
  }

  .partner-card img {
    max-width: 100%;
    height: 34px;
  }
}

@media (max-width: 360px) {
  .section-heading h2 {
    font-size: 42px;
  }
}

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

  .intro {
    animation-duration: 0.65s;
  }

  .intro__beam,
  .intro__scan {
    display: none;
  }

  .intro__final {
    opacity: 1;
    animation: none;
  }

  .product-card__image img,
  .hero__media img,
  .scene-reveal,
  .intro--done {
    transition: none;
  }
}

@media (min-width: 1000px) and (prefers-reduced-motion: no-preference) {
  html {
    scroll-snap-type: y proximity;
  }

  .scene {
    scroll-snap-align: start;
  }
}
