:root {
  --ink: #303538;
  --muted: #667179;
  --paper: #f7fbfd;
  --line: #d8e9f1;
  --brand-blue: #5ac4f6;
  --brand-blue-dark: #147ca9;
  --brand-gray: #a8adb0;
  --brand-gray-dark: #666d71;
  --soft-blue: #e8f7fd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  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;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: relative;
  color: var(--white);
  background: #25292c;
}

.nav {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(90, 196, 246, 0.34);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.brand-logo {
  width: 184px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.nav-links a {
  text-decoration: none;
}

.lang-toggle {
  min-width: 46px;
  min-height: 38px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(90, 196, 246, 0.72);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.lang-toggle:hover,
.lang-toggle:focus-visible {
  color: var(--brand-blue);
}

.hero {
  color: var(--white);
  min-height: 82vh;
  max-height: 820px;
  display: grid;
  align-items: end;
  padding: 132px max(20px, calc((100vw - 1180px) / 2)) 78px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)),
    url("assets/img/cc-mixing-console.jpg") center 48% / cover;
}

.hero-content {
  max-width: 780px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.64);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--brand-blue);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  font-size: 4rem;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.65rem;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tech-list li {
  padding: 8px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(90, 196, 246, 0.36);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--brand-blue-dark);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #0f6286;
}

.button.secondary {
  color: var(--white);
  border-color: currentColor;
}

.hero .button.secondary {
  color: var(--white);
}

.contact-section .button.secondary {
  color: var(--ink);
}

main {
  background: var(--paper);
}

.intro-section,
.about-section,
.axes-section,
.product-section,
.proof-section,
.contact-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 72px 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: start;
  padding: 0 0 78px;
}

.about-copy p:not(.lead) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-copy h2 + .lead {
  margin-top: 26px;
}

.about-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(48, 53, 56, 0.07);
}

.about-panel div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(232, 247, 253, 0.8), rgba(232, 247, 253, 0.32));
  border: 1px solid rgba(20, 124, 169, 0.14);
  border-radius: 8px;
}

.about-panel span {
  color: var(--brand-blue-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-panel strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.section-heading {
  max-width: 650px;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.24rem;
}

.axes-section {
  padding: 28px 0 88px;
}

.axis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.axis-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(48, 53, 56, 0.07);
}

.axis-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.axis-logo-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 36%, rgba(90, 196, 246, 0.2), rgba(7, 23, 31, 0) 42%),
    #06151c;
}

.axis-logo-frame img {
  width: min(72%, 260px);
  aspect-ratio: 1;
  object-fit: contain;
}

.axis-content {
  padding: 26px;
}

.axis-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-blue-dark);
  font-weight: 900;
}

.axis-card:nth-child(2) .axis-number {
  color: var(--brand-gray-dark);
}

.axis-card:nth-child(3) .axis-number {
  color: #2496c6;
}

.axis-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.axis-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.axis-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--brand-blue-dark);
  background: var(--soft-blue);
  border: 1px solid rgba(20, 124, 169, 0.18);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.axis-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.axis-card li {
  position: relative;
  padding-left: 20px;
}

.axis-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--brand-blue);
  border-radius: 2px;
}

.axis-actions {
  margin-top: 22px;
}

.button.tertiary {
  color: var(--brand-blue-dark);
  background: transparent;
  border-color: rgba(20, 124, 169, 0.34);
}

.button.tertiary:hover,
.button.tertiary:focus-visible {
  background: var(--soft-blue);
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: center;
  padding: 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(90, 196, 246, 0.22), rgba(90, 196, 246, 0) 38%),
    #25292c;
  border-radius: 8px;
  border-top: 6px solid var(--brand-blue);
}

.product-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.product-panel {
  display: grid;
  gap: 14px;
}

.product-panel div {
  display: grid;
  gap: 6px;
  min-height: 106px;
  padding: 22px;
  border: 1px solid rgba(90, 196, 246, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.product-panel span {
  color: var(--brand-blue);
  font-weight: 900;
}

.product-panel strong {
  font-size: 1.08rem;
}

.proof-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 88px 0;
}

.proof-section img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
}

.proof-section p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px;
  margin-bottom: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(48, 53, 56, 0.07);
}

.contact-section h2 {
  max-width: 700px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 0;
  color: var(--brand-blue-dark);
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.54);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.modal-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(37, 41, 44, 0.98), rgba(37, 41, 44, 0.9));
  border: 1px solid rgba(90, 196, 246, 0.2);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.modal-brand img {
  width: 150px;
  height: auto;
}

.modal-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(90, 196, 246, 0.18);
  border: 1px solid rgba(90, 196, 246, 0.34);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.modal-mail:hover,
.modal-mail:focus-visible {
  background: rgba(90, 196, 246, 0.28);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(48, 53, 56, 0.16);
  border-radius: 8px;
  font: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.modal-panel h3 {
  margin-top: 28px;
  font-size: 1.3rem;
}

.modal-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.modal-list li {
  position: relative;
  padding-left: 20px;
}

.modal-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--brand-blue-dark);
  border-radius: 2px;
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 26px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: #25292c;
  font-size: 0.95rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.image-credits {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.image-credits a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .intro-section,
  .about-section,
  .axis-grid,
  .product-section,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .product-section {
    padding: 44px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 28px, 1180px);
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 16px;
  }

  .brand {
    min-height: 46px;
    padding: 6px 8px;
  }

  .brand-logo {
    width: 128px;
  }

  .nav-links {
    margin-left: auto;
    gap: 8px;
    font-size: 0.78rem;
  }

  .lang-toggle {
    min-width: 40px;
    min-height: 34px;
  }

  .hero {
    min-height: 78vh;
    padding: 150px 14px 46px;
    background-position: 62% center;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .hero-copy,
  .lead {
    font-size: 1.05rem;
  }

  .intro-section,
  .about-section,
  .axes-section,
  .product-section,
  .proof-section,
  .contact-section {
    width: calc(100% - 28px);
  }

  .intro-section {
    gap: 24px;
    padding: 52px 0;
  }

  .about-section {
    gap: 20px;
    padding-bottom: 58px;
  }

  .axis-content {
    padding: 22px;
  }

  .modal-panel {
    padding: 24px;
  }

  .modal-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-section,
  .contact-section {
    padding: 28px;
  }

  .proof-section {
    padding: 58px 0;
  }

  .site-footer {
    padding: 24px 14px;
  }

  .footer-main {
    flex-direction: column;
  }
}
