@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");
:root {
  --ink: #161a22;
  --paper: #f7f4ee;
  --orange: #ef5b2a;
  --yellow: #f5b43c;
  --muted: #6c7078;
  --line: rgba(22, 26, 34, 0.14);
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.header {
  height: 84px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: rgba(247, 244, 238, 0.93);
  backdrop-filter: blur(18px);
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.brand img {
  width: 168px;
  height: auto;
}
.header nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
.header nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.header nav a:hover {
  color: var(--orange);
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 118px 28px;
}
.hero {
  min-height: calc(100vh - 84px);
  padding: 80px max(28px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(10, 14, 21, 0.93) 0%,
      rgba(10, 14, 21, 0.8) 45%,
      rgba(10, 14, 21, 0.12) 78%
    ),
    url("img/banner_top.png") center/cover;
  color: white;
}
.hero-copy {
  max-width: 730px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.19em;
  font-weight: 800;
  color: var(--orange);
  margin: 0 0 20px;
}
.hero h1,
.section h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 0;
}
.hero h1 {
  font-size: clamp(64px, 9vw, 128px);
}
.hero h1 span {
  color: var(--orange);
}
.lead {
  font-size: clamp(18px, 2vw, 24px);
  max-width: 600px;
  margin: 34px 0;
}
.button {
  display: inline-flex;
  background: var(--orange);
  color: white;
  padding: 15px 24px;
  border-radius: 2px;
  font-weight: 800;
}
.button:hover {
  background: #d9481c;
}
.hero-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 38px;
  display: grid;
}
.hero-stat strong {
  font: 800 48px "Manrope";
  color: var(--yellow);
}
.hero-stat span {
  font-size: 13px;
  margin: 0 0 30px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.section h2 {
  font-size: clamp(42px, 6vw, 78px);
}
.section-head {
  max-width: 850px;
  margin-bottom: 60px;
}
.section-head > p:last-child {
  max-width: 700px;
}
.about {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: center;
}
.about-art {
  background: var(--yellow);
  padding: 45px 0 0;
  overflow: hidden;
}
.about-art img {
  margin-bottom: -1px;
}
.about > div:last-child > p {
  color: var(--muted);
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.facts div {
  display: grid;
}
.facts strong {
  font: 800 32px "Manrope";
  color: var(--orange);
}
.facts span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.process {
  max-width: none;
  background: var(--ink);
  color: white;
}
.process > .section-head,
.process-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.process .section-head > p:last-child {
  color: #aeb2bb;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.process-grid article {
  background: #222731;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 350px;
  overflow: hidden;
}
.process-grid article > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-grid article > div {
  padding: 34px;
}
.step {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.14em;
}
.process-grid h3,
.category-grid h3,
.voice-list h3 {
  font: 700 24px "Manrope";
  line-height: 1.2;
  margin: 10px 0;
}
.process-grid p {
  color: #bdc1c9;
  font-size: 14px;
}
.audio-button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  padding: 10px 0;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.audio-button span {
  display: grid;
  place-items: center;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 10px;
}
.audio-button:hover {
  color: var(--orange);
}
.categories {
  max-width: none;
  background: var(--yellow);
}
.categories > .section-head,
.category-grid,
.categories > .button {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.categories > .button {
  display: flex;
  width: fit-content;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-bottom: 42px;
}
.category-grid article {
  min-width: 0;
  padding: 30px 24px 26px;
  border: 1px solid rgba(22, 26, 34, 0.22);
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.category-grid article::before,
.category-grid article::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.category-grid article::before {
  inset: 0 0 auto;
  z-index: 2;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.category-grid article::after {
  inset: 1px;
  z-index: 0;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 36px rgba(102, 62, 0, 0.16);
  opacity: 0;
  transition: opacity 260ms ease;
}
.category-grid article > * {
  position: relative;
  z-index: 1;
}
.category-index {
  font-size: 12px;
  font-weight: 800;
  color: rgba(22, 26, 34, 0.55);
}
.category-grid article > p {
  font-size: 14px;
  min-height: 115px;
}
.category-grid dl {
  margin: 0;
  flex: 1;
}
.category-grid dl div {
  border-top: 1px solid rgba(22, 26, 34, 0.18);
  padding: 14px 0;
}
.category-grid dt {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.11em;
  font-weight: 800;
}
.category-grid dd {
  margin: 4px 0;
  font-size: 13px;
}
.category-grid .audio-button {
  align-self: flex-start;
  margin-top: 18px;
}
.category-grid .audio-button span {
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.category-grid article:focus-within::before {
  transform: scaleX(1);
}
.category-grid article:focus-within::after {
  opacity: 1;
}
@media (hover: hover) {
  .category-grid article:hover {
    z-index: 1;
  }
  .category-grid article:hover::before {
    transform: scaleX(1);
  }
  .category-grid article:hover::after {
    opacity: 1;
  }
  .category-grid article:hover .audio-button span {
    transform: scale(1.08);
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .category-grid article:hover {
    transform: translateY(-8px);
  }
}
@supports (grid-template-rows: subgrid) {
  @media (min-width: 641px) {
    .category-grid {
      row-gap: 0;
    }
    .category-grid article {
      grid-row: span 7;
      display: grid;
      grid-template-rows: subgrid;
    }
    .category-grid article > p {
      min-height: 0;
      margin: 8px 0 24px;
    }
    .category-grid dl {
      grid-row: span 3;
      display: grid;
      grid-template-rows: subgrid;
    }
    .category-grid .audio-button {
      align-self: end;
      justify-self: start;
    }
  }
  @media (min-width: 641px) and (max-width: 1000px) {
    .category-grid article {
      margin-bottom: 18px;
    }
  }
}
.button-dark {
  background: var(--ink);
}
.partners {
  text-align: center;
}
.partners h2 {
  margin-bottom: 45px;
}
.partner-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-strip img {
  width: 100%;
  filter: grayscale(1);
  opacity: 0.72;
}
.voices {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.voices .section-head {
  position: sticky;
  top: 130px;
  align-self: start;
}
.voice-list {
  border-top: 1px solid var(--line);
}
.voice-list article {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.voice-list article > span {
  font-size: 11px;
  color: var(--muted);
}
.voice-list p {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 800;
  margin: 0;
}
.voice-list h3 {
  font-size: 17px;
  margin: 3px 0;
}
.distribution {
  max-width: none;
  background: #ece7dd;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
}
.distribution p {
  max-width: 520px;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.market-grid img {
  filter: grayscale(1);
  mix-blend-mode: multiply;
}
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.contact-copy > p {
  max-width: 520px;
}
.video {
  aspect-ratio: 16/9;
  margin-top: 38px;
  background: #111;
}
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.form-wrap {
  background: #fff;
  border-top: 4px solid var(--orange);
  padding: clamp(30px, 4vw, 48px);
  box-shadow: 0 24px 70px rgba(62, 54, 43, 0.13);
}
.form-heading {
  margin-bottom: 22px;
}
.form-heading h3 {
  margin: 0 0 10px;
  font:
    700 clamp(26px, 3vw, 34px) / 1.1 "Manrope",
    sans-serif;
  letter-spacing: -0.035em;
}
.form-heading p {
  max-width: 560px;
  margin: 0;
  color: #555a64;
  font-size: 15px;
  line-height: 1.55;
}
.form-scope {
  margin: 0 0 30px;
  padding: 14px 16px;
  border-left: 3px solid var(--yellow);
  background: #f3f0e9;
  color: #4c515a;
  font-size: 13px;
  line-height: 1.55;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}
.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.form-field-wide {
  grid-column: 1 / -1;
}
.form-field label {
  margin-bottom: 8px;
  color: #292e36;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.form-field label span {
  color: #c93e16;
}
.form-control {
  width: 100%;
  min-height: 52px;
  border: 1px solid #aaa79f;
  border-radius: 2px;
  background: #faf9f6;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}
.form-control::placeholder {
  color: #6b7078;
  opacity: 1;
}
.form-control:hover {
  border-color: #747870;
}
.form-control:focus-visible {
  border-color: var(--orange);
  outline: 3px solid rgba(239, 91, 42, 0.2);
  outline-offset: 0;
  background: #fff;
}
select.form-control {
  cursor: pointer;
}
.field-help,
.field-error {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
}
.field-help {
  color: #626771;
}
.field-error {
  display: none;
  color: #a5261d;
  font-weight: 700;
}
.field-error:not(:empty) {
  display: block;
}
.contact-form.was-validated .form-control:invalid {
  border-color: #b72e24;
  background: #fff8f7;
}
.contact-form.was-validated .form-control:invalid:focus-visible {
  outline-color: rgba(183, 46, 36, 0.2);
}
.form-submit {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-radius: 2px;
  background: var(--ink);
  color: #fff;
  padding: 15px 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}
.form-submit:hover {
  background: #292f39;
}
.form-submit:active {
  transform: translateY(1px);
}
.form-submit:focus-visible {
  outline: 3px solid rgba(239, 91, 42, 0.38);
  outline-offset: 3px;
}
.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
.submit-arrow {
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 24px;
  line-height: 1;
}
.form-delivery-note,
.form-status {
  margin: 0;
  color: #555a64;
  font-size: 12px;
  line-height: 1.5;
}
.form-status {
  display: none;
  padding: 11px 13px;
  border-left: 3px solid var(--orange);
  background: #f3f0e9;
  color: #343941;
  font-weight: 700;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-error {
  border-left-color: #b72e24;
  background: #fff8f7;
  color: #81221b;
}
.form-status.is-success {
  border-left-color: #397a55;
  background: #f2f8f4;
  color: #28563c;
}
.player {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--ink);
  color: white;
  width: min(720px, calc(100% - 28px));
  padding: 14px 18px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 150px 1fr 30px;
  gap: 18px;
  align-items: center;
}
.player div {
  display: grid;
}
.player span {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--yellow);
}
.player audio {
  width: 100%;
  height: 38px;
}
.player button {
  border: 0;
  background: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}
footer {
  background: #10141b;
  color: #c9ccd2;
  padding: 75px max(28px, calc((100vw - var(--max)) / 2)) 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1fr 0.8fr;
  gap: 45px;
}
.footer-logo {
  width: 175px;
  filter: brightness(0) invert(1);
  margin-bottom: 25px;
}
footer h3 {
  font: 700 13px "Manrope";
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
footer p,
footer a {
  font-size: 13px;
}
.social {
  display: grid;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 55px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
}
.footer-bottom p:last-child {
  display: flex;
  gap: 24px;
}
.menu-button,
.mobile-nav {
  display: none;
}
@media (max-width: 1000px) {
  .header nav {
    display: none;
  }
  .menu-button {
    display: block;
    border: 0;
    background: none;
    font-weight: 800;
  }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  }
  .mobile-nav.open {
    display: grid;
  }
  .mobile-nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    display: none;
  }
  .about,
  .voices,
  .distribution,
  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-art {
    max-width: 560px;
  }
  .voices .section-head {
    position: static;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid article {
    grid-template-columns: 1fr;
  }
  .process-grid article > img {
    height: 250px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 82px 20px;
  }
  .header {
    height: 70px;
    padding: 0 20px;
  }
  .brand img {
    width: 140px;
  }
  .mobile-nav {
    top: 70px;
  }
  .hero {
    min-height: calc(100svh - 70px);
    padding: 54px 20px;
    background-image:
      linear-gradient(90deg, rgba(10, 14, 21, 0.93), rgba(10, 14, 21, 0.52)),
      url("img/banner_top_mobile.png");
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero .lead {
    font-size: 18px;
  }
  .about {
    padding-top: 72px;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-grid article {
    padding: 26px 22px 22px;
  }
  .category-grid article > p {
    min-height: 0;
  }
  .partner-strip {
    grid-template-columns: 1fr 1fr;
  }
  .voice-list article {
    grid-template-columns: 26px 1fr;
  }
  .voice-list .audio-button {
    grid-column: 2;
  }
  .market-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-copy {
    padding: 0 20px;
  }
  .form-wrap {
    padding: 30px 20px;
    box-shadow: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field-wide {
    grid-column: auto;
  }
  .form-heading h3 {
    font-size: 27px;
  }
  .player {
    grid-template-columns: 1fr 28px;
  }
  .player audio {
    grid-column: 1/3;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom p:last-child {
    display: grid;
  }
  .distribution {
    padding: 82px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
.footer-grid {
  grid-template-columns: 1.2fr 1.3fr 1fr 0.8fr 0.8fr;
  gap: 38px;
}
.app-download > img:first-of-type {
  width: 84px;
  margin-bottom: 12px;
}
.app-download > img:not(:first-of-type) {
  width: 110px;
  margin: 6px 0;
}
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.header {
  background: rgba(10, 12, 16, 0.96);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.header .brand img {
  filter: brightness(0) invert(1);
}
.menu-button {
  color: #fff;
}
.mobile-nav {
  background: #10141b;
  color: #fff;
}
.mobile-nav a {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}
.market-grid img {
  filter: invert(1);
  mix-blend-mode: normal;
  opacity: 0.78;
}
.market-grid {
  gap: 10px;
}
.market-grid img:hover {
  opacity: 1;
}
.partner-strip {
  gap: 28px;
  padding: 28px 18px;
}
.partner-strip img {
  width: auto;
  max-width: 150px;
  height: 82px;
  object-fit: contain;
  margin: auto;
  filter: invert(1);
  opacity: 0.68;
}
.partner-strip img:hover {
  opacity: 1;
}
@media (max-width: 640px) {
  .partner-strip {
    gap: 14px;
    padding: 20px 10px;
  }
  .partner-strip img {
    max-width: 125px;
    height: 68px;
  }
}
