@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #102630;
  --ink-soft: #52666d;
  --teal: #0f7078;
  --teal-dark: #075159;
  --mint: #43d9a3;
  --coral: #c45155;
  --paper: #ffffff;
  --mist: #eef4f4;
  --line: #d5e1e2;
  --night: #13272c;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
#demo-video-section {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: var(--night);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(213, 225, 226, 0.9);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-size: 19px;
  font-weight: 700;
}

.brand small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--teal);
}

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

.theme-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.theme-indicator {
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(90deg, currentColor 50%, transparent 50%);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 42px);
  justify-self: end;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--mist);
}

.language-switch button {
  min-height: 34px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.language-switch button[aria-pressed="true"] {
  background: var(--teal);
  color: white;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, calc(82vh - 72px), 760px);
  overflow: hidden;
  background: var(--paper) url("assets/muno-interpreter.png") center / cover
    no-repeat;
}

.hero-surface {
  position: absolute;
  inset: 0;
  background: rgba(248, 251, 250, 0.91);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 44px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: #30484f;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

.button-primary {
  background: var(--teal);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  border-color: #b9ccce;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 960px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  min-height: 68px;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  border-left: 2px solid var(--mint);
}

.hero-facts strong {
  font-size: 23px;
}

.hero-facts span {
  color: var(--ink-soft);
  font-size: 14px;
}

.section {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.field-pitch {
  background: var(--night);
  color: white;
}

.field-pitch-inner {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0;
}

.field-story {
  display: grid;
  min-height: 220px;
  grid-template-columns: 0.32fr 1.18fr 0.5fr;
  gap: 44px;
  align-items: start;
}

.field-story[hidden] {
  display: none;
}

.field-pitch .eyebrow {
  color: var(--mint);
}

.field-pitch blockquote {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.16;
}

.field-pitch-close {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--coral);
  color: #c9d7d8;
  font-size: 15px;
}

.story-tabs {
  display: flex;
  width: fit-content;
  margin: 30px auto 0;
  padding: 4px;
  border: 1px solid #385057;
  border-radius: 7px;
  background: #0d2025;
}

.story-tabs button {
  min-width: 120px;
  min-height: 40px;
  padding: 8px 13px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #b9cacc;
  cursor: pointer;
  font-weight: 600;
}

.story-tabs button[aria-selected="true"] {
  background: var(--mint);
  color: #0d2025;
}

.video-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 26px;
  align-items: end;
  margin: 42px 0 48px;
}

.video-block video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--night);
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(16, 38, 48, 0.12);
}

.video-copy {
  padding-bottom: 4px;
}

.video-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
}

.section-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 18px;
}

.demo-tabs {
  display: flex;
  width: fit-content;
  margin: 48px 0 20px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--mist);
}

.demo-tabs button {
  min-width: 112px;
  min-height: 42px;
  padding: 8px 16px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 600;
}

.demo-tabs button[aria-selected="true"] {
  background: var(--paper);
  color: var(--teal);
  box-shadow: 0 1px 4px rgba(16, 38, 48, 0.12);
}

.product-demo {
  margin: 0;
}

.product-demo img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  object-position: top left;
  box-shadow: 0 24px 64px rgba(16, 38, 48, 0.12);
}

.product-demo figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
}

.workflow li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.workflow h3,
.capability-grid h3,
.security-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.workflow p,
.capability-grid p,
.security-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.approach-section {
  background: var(--night);
  color: white;
}

.approach-inner {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
}

.approach-section .eyebrow {
  color: var(--mint);
}

.approach-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.approach-tabs {
  display: flex;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid #385057;
  border-radius: 7px;
  background: #0d2025;
}

.approach-tabs button {
  min-width: 130px;
  min-height: 42px;
  padding: 8px 14px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #b9cacc;
  cursor: pointer;
  font-weight: 600;
}

.approach-tabs button[aria-selected="true"] {
  background: var(--mint);
  color: #0d2025;
}

.approach-panel {
  display: grid;
  min-height: 205px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid #385057;
}

.approach-panel[hidden] {
  display: none;
}

.approach-panel article {
  padding: 28px 34px 24px 0;
  border-right: 1px solid #385057;
}

.approach-panel article + article {
  padding-left: 34px;
}

.approach-panel article:last-child {
  border-right: 0;
}

.approach-panel .index {
  margin-bottom: 26px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
}

.approach-panel h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.approach-panel article p:last-child,
.approach-note {
  color: #b9cacc;
  font-size: 15px;
}

.approach-note {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #385057;
  font-size: 12px;
}

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

.pricing-summary {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.price {
  margin-bottom: 16px;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1;
}

.price span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 13px;
  text-transform: uppercase;
}

.price small {
  font-size: 18px;
}

.trial-copy {
  align-self: center;
  padding-left: 30px;
  border-left: 2px solid var(--mint);
}

.trial-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.trial-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.plan-table {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.plan-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.plan-row h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.plan-row div p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.plan-price {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-align: right;
}

.plan-price > span {
  font-size: 13px;
  text-transform: uppercase;
}

.plan-price small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 400;
}

.usage-rates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.usage-rates > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 32px 24px 0;
}

.usage-rates > div + div {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.usage-rates span {
  color: var(--ink-soft);
  font-size: 14px;
}

.usage-rates strong {
  font-size: 30px;
  white-space: nowrap;
}

.usage-rates small {
  font-size: 12px;
  font-weight: 400;
}

.commercial-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: none;
}

.commercial-terms li {
  position: relative;
  padding-left: 15px;
}

.commercial-terms li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.contact-section {
  background: var(--mist);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.contact-email {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 600;
}

#contact-form {
  padding-left: 50px;
  border-left: 1px solid #c6d5d7;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

input,
textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #b9cbcd;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 112, 120, 0.14);
}

.form-notice {
  color: var(--ink-soft);
  font-size: 12px;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 32px max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 12px;
}

footer p {
  margin: 0;
}

.footer-brand {
  color: var(--ink);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #edf7f5;
  --ink-soft: #adc1c4;
  --teal: #43bfc1;
  --teal-dark: #319da3;
  --mint: #43d9a3;
  --coral: #ed8083;
  --paper: #0f1f24;
  --mist: #192f35;
  --line: #365159;
  --night: #09181c;
}

html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(54, 81, 89, 0.9);
  background: rgba(15, 31, 36, 0.96);
}

html[data-theme="dark"] .hero-surface {
  background: rgba(9, 24, 28, 0.9);
}

html[data-theme="dark"] .hero-lead {
  color: #c0d1d3;
}

html[data-theme="dark"] .button-secondary {
  border-color: var(--line);
  background: rgba(25, 47, 53, 0.82);
}

html[data-theme="dark"] .theme-indicator {
  border-color: transparent;
  background: transparent;
  box-shadow: inset -4px -2px 0 currentColor;
}

html[data-theme="dark"] .product-demo img,
html[data-theme="dark"] .video-block video {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

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

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    row-gap: 18px;
  }

  .field-pitch-inner,
  .video-block,
  .pricing-summary,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .field-pitch-close {
    max-width: 520px;
  }

  .field-story {
    min-height: 380px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach-header {
    align-items: start;
    flex-direction: column;
  }

  .approach-panel {
    grid-template-columns: 1fr;
  }

  .approach-panel article,
  .approach-panel article + article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #385057;
  }

  .approach-panel article:last-child {
    border-bottom: 0;
  }

  #contact-form {
    padding-left: 0;
    border-left: 0;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 64px;
    padding: 8px 16px;
  }

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

  .brand small {
    display: none;
  }

  .theme-toggle {
    min-width: 42px;
    justify-content: center;
    padding: 6px;
  }

  .theme-toggle [data-theme-label] {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .section,
  .field-pitch-inner,
  .approach-inner,
  .contact-inner {
    width: min(100% - 32px, var(--max-width));
  }

  .hero-content {
    padding: 38px 0 30px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    margin-top: 30px;
  }

  .hero-facts li {
    min-height: 60px;
    padding: 0 12px;
  }

  .hero-facts strong {
    font-size: 19px;
  }

  .hero-facts span {
    font-size: 12px;
  }

  .section,
  .approach-inner,
  .contact-inner {
    padding: 66px 0;
  }

  .field-pitch-inner {
    padding: 46px 0;
  }

  .field-story {
    min-height: 440px;
  }

  .story-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .story-tabs button {
    min-width: 0;
    padding: 8px 5px;
    font-size: 13px;
  }

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

  .demo-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-tabs button {
    min-width: 0;
    padding: 8px 7px;
  }

  .product-demo img {
    aspect-ratio: 4 / 3;
  }

  .approach-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-tabs button {
    min-width: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .plan-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plan-price {
    text-align: left;
  }

  .usage-rates {
    grid-template-columns: 1fr;
  }

  .usage-rates > div,
  .usage-rates > div + div {
    padding: 20px 0;
    border-left: 0;
  }

  .usage-rates > div + div {
    border-top: 1px solid var(--line);
  }
}

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