:root {
  --page-bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef3f7;
  --ink: #0a1628;
  --muted: #657184;
  --accent: #0077b6;
  --accent-2: #c29a0f;
  --line: rgba(10, 22, 40, 0.12);
  --line-strong: rgba(10, 22, 40, 0.22);
  --radius: 10px;
  --shadow: 0 24px 70px -38px rgba(10, 22, 40, 0.35);
  --nav-bg: color-mix(in srgb, var(--page-bg) 84%, transparent);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-main);
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --button-ink: #ffffff;
  --hero-gradient-a: color-mix(in srgb, var(--accent) 18%, transparent);
  --hero-gradient-b: color-mix(in srgb, var(--accent-2) 14%, transparent);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: color-mix(in srgb, var(--accent) 28%, transparent);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 70%, #ffffff);
  outline-offset: 3px;
}

.mono {
  font-family: var(--font-mono);
}

.back {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  color: var(--muted);
  font-size: 12px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.back:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  transform: translateY(-2px);
}

.logo-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.theme-toggle,
.nav__menu {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.theme-toggle:hover,
.nav__menu:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

.theme-toggle__sun,
.theme-toggle__moon {
  position: absolute;
  transition: opacity 0.28s ease, transform 0.32s ease;
}

[data-theme="light"] .theme-toggle__sun,
html:not([data-theme="dark"]) .theme-toggle__sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

[data-theme="light"] .theme-toggle__moon,
html:not([data-theme="dark"]) .theme-toggle__moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-toggle__sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-toggle__moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand__txt {
  min-width: 0;
}

.brand__txt strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__txt small {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
}

.nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--accent);
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.nav__links .nav__cta,
.nav__cta {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 65%, transparent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--button-ink);
  box-shadow: 0 14px 32px -22px var(--accent);
}

.nav__links .nav__cta:hover,
.nav__links .nav__cta.is-active,
.nav__cta:hover {
  color: var(--button-ink);
  background: color-mix(in srgb, var(--accent) 78%, var(--ink));
}

.nav__links .nav__cta.is-active::after {
  display: none;
}

.nav__menu {
  display: none;
}

.nav__menu span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.nav__menu span:first-child {
  transform: translateY(-4px);
}

.nav__menu span:last-child {
  transform: translateY(4px);
}

.nav__menu[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav__menu[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

main section {
  scroll-margin-top: 86px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  align-items: center;
  overflow: hidden;
  padding: clamp(62px, 8vw, 126px) clamp(18px, 5vw, 64px) clamp(58px, 8vw, 110px);
}

.hero__animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__animated-bg::before,
.hero__animated-bg::after {
  content: "";
  position: absolute;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.72;
  animation: corporateFloat 15s ease-in-out infinite alternate;
}

.hero__animated-bg::before {
  top: -18%;
  right: -8%;
  background: radial-gradient(circle, var(--hero-gradient-a), transparent 68%);
}

.hero__animated-bg::after {
  bottom: -24%;
  left: -10%;
  background: radial-gradient(circle, var(--hero-gradient-b), transparent 70%);
  animation-duration: 18s;
}

@keyframes corporateFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 5%, 0) scale(1.08);
  }
}

.hero__grid,
.section-inner,
.footer__inner {
  position: relative;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.kicker,
.welcome-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.welcome-note::before,
.kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero h1,
.section-head h2,
.cta-panel h2 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 13ch;
  margin: 18px 0 20px;
  font-size: clamp(44px, 7.8vw, 104px);
  line-height: 0.96;
}

.hero h1 span,
.accent {
  color: var(--accent);
}

.tagline {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.hero__cta,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--accent);
  color: var(--button-ink);
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--accent) 78%, var(--ink));
}

.btn--ghost {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  color: var(--accent);
}

.service-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 32px 0 0;
}

.service-summary span {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 74%, transparent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.service-summary strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.hero__visual {
  position: relative;
}

.visual-card,
.story-panel,
.value-card,
.career-card,
.service-card,
.contact-panel,
.map-card,
.form-card,
.footer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
}

.visual-card {
  overflow: hidden;
}

.visual-card__image {
  position: relative;
  min-height: 220px;
}

.visual-card__image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.visual-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.38));
}

.visual-card__body {
  padding: clamp(20px, 3vw, 30px);
}

.chart-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.chart-lines span {
  display: block;
  width: var(--w, 72%);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1240px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stats > div {
  min-width: 0;
  padding: 24px 20px;
  background: var(--surface);
}

.stats strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  display: grid;
  width: 24px;
  height: 38px;
  place-items: start center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding-top: 7px;
}

.scroll-cue span:last-child::before {
  content: "";
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  animation: scrollCue 1.5s ease-in-out infinite;
}

@keyframes scrollCue {
  50% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 5vw, 64px);
}

.section--soft {
  background: var(--surface-soft);
}

.section-head {
  max-width: 780px;
  margin: 0 0 44px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.story-panel {
  overflow: hidden;
}

.story-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.story-panel__body {
  padding: clamp(22px, 3vw, 32px);
}

.story-panel__body p {
  margin: 0;
  color: var(--muted);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-card {
  padding: 22px;
}

.value-card h3,
.career-card h3,
.service-card h3,
.contact-panel h3,
.form-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.16;
}

.value-card p,
.career-card p,
.service-card p,
.contact-panel p,
.form-card p {
  margin: 0;
  color: var(--muted);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.values-list div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.values-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.values-list span {
  color: var(--muted);
  font-size: 13px;
}

.careers {
  margin-top: clamp(44px, 6vw, 72px);
}

.careers__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.careers__head p {
  max-width: 58ch;
  margin: 8px 0 0;
  color: var(--muted);
}

.careers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.career-card {
  padding: 24px;
  box-shadow: none;
}

.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 0;
}

.career-meta span,
.feature-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process div {
  padding: 18px;
  background: var(--surface);
}

.process span {
  display: block;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.process strong {
  display: block;
  margin-top: 4px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 28px 80px -44px color-mix(in srgb, var(--accent) 55%, transparent);
  transform: translateY(-5px);
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

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

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.service-visual {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.service-visual span {
  display: block;
  width: var(--w, 70%);
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 70%, var(--accent-2));
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-panel,
.form-card,
.map-card {
  padding: clamp(22px, 3vw, 30px);
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.info-list div {
  display: grid;
  gap: 2px;
}

.info-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.socials a:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

.map-card {
  overflow: hidden;
  padding: 0;
}

.map-card iframe,
.mock-map {
  width: 100%;
  height: 290px;
  border: 0;
}

.mock-map {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49%, color-mix(in srgb, var(--accent) 12%, transparent) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, color-mix(in srgb, var(--accent) 12%, transparent) 50%, transparent 51%),
    color-mix(in srgb, var(--surface-soft) 80%, var(--surface));
  background-size: 48px 48px;
}

.map-pin {
  display: inline-grid;
  place-items: center;
  min-width: 190px;
  padding: 14px 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 0.75);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  color: var(--ink);
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: color-mix(in srgb, var(--accent) 70%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 12%, transparent);
  outline: 0;
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #d94848;
  box-shadow: 0 0 0 4px rgba(217, 72, 72, 0.12);
}

.field__error {
  min-height: 15px;
  color: #d94848;
  font-size: 12px;
  font-weight: 700;
}

.form-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: calc(var(--radius) * 0.75);
  font-weight: 750;
}

.form-message.is-success {
  display: block;
  border: 1px solid rgba(39, 174, 96, 0.32);
  background: rgba(39, 174, 96, 0.12);
  color: color-mix(in srgb, #27ae60 75%, var(--ink));
}

.form-message.is-error {
  display: block;
  border: 1px solid rgba(217, 72, 72, 0.32);
  background: rgba(217, 72, 72, 0.12);
  color: color-mix(in srgb, #d94848 80%, var(--ink));
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer {
  padding: 44px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 76%, var(--page-bg));
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(160px, 0.7fr));
  gap: 28px;
}

.footer h3,
.footer h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-display);
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: var(--muted);
  font-weight: 650;
}

.footer a:hover {
  color: var(--accent);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 13px;
}

.newsletter-form button {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--button-ink);
  padding: 10px 14px;
  font-weight: 800;
}

.newsletter-message {
  min-height: 18px;
  margin-top: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

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

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1020px) {
  .hero__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 16ch;
  }

  .services__grid,
  .careers__grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-list,
  .process,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .nav {
    min-height: 70px;
  }

  .nav__menu {
    display: inline-grid;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100svh - 96px);
    overflow: auto;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: grid;
  }

  .nav__links a {
    min-height: 44px;
    padding: 4px 2px;
  }

  .nav__links .nav__cta {
    justify-content: center;
    margin-top: 8px;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 680px) {
  .brand__txt small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .service-summary,
  .services__grid,
  .careers__grid,
  .mv-grid,
  .values-list,
  .process,
  .stats,
  .footer__inner,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    flex-direction: column;
  }
}
