:root {
  --bg: #08111f;
  --bg-soft: #0c1930;
  --panel: #101d33;
  --panel-strong: #152845;
  --text: #f6f8ff;
  --muted: #aeb9d3;
  --line: rgba(255, 255, 255, 0.16);
  --brand: #6be7ff;
  --brand-strong: #34b8ff;
  --accent: #ff7ad9;
  --warm: #ffd166;
  --success: #23d18b;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(107, 231, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 80% 20%, rgba(255, 122, 217, 0.14), transparent 28rem),
    linear-gradient(135deg, #07101d 0%, #0d1325 48%, #07101d 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: #07101d;
  background: var(--brand);
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

.bg-orb {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
}

.bg-orb-one {
  top: -14rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(107, 231, 255, 0.42), transparent 68%);
}

.bg-orb-two {
  right: -12rem;
  bottom: 8rem;
  background: radial-gradient(circle, rgba(255, 122, 217, 0.32), transparent 68%);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), var(--max-width));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #091423;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(107, 231, 255, 0.28);
  background: #08111f;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 16px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 0 35px rgba(107, 231, 255, 0.36);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.94rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: rgba(246, 248, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: #14233b;
}

.site-nav .nav-cta {
  color: #06111f;
  background: linear-gradient(135deg, var(--brand), var(--warm));
}

.site-nav .nav-cta:hover {
  color: #06111f;
  transform: translateY(-1px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(107, 231, 255, 0.18);
  border-radius: 999px;
  background: #0f1d32;
}

.language-button {
  min-width: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: rgba(246, 248, 255, 0.7);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.language-button:hover,
.language-button.is-active {
  color: #06111f;
  background: var(--brand);
}

.language-button:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: #14233b;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 116px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 44px;
  padding-top: 150px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.career-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  isolation: isolate;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(120%);
}

.button-primary {
  color: #06111f;
  background: linear-gradient(135deg, var(--brand), var(--warm));
  box-shadow: 0 18px 44px rgba(107, 231, 255, 0.22);
}

.button-secondary {
  border-color: rgba(107, 231, 255, 0.34);
  background: #102a43;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: #101d33;
}

.button-whatsapp {
  color: #05160d;
  background: linear-gradient(135deg, #25d366, #b4ffce);
}

.hero-visual {
  display: grid;
  min-height: 620px;
  place-items: center;
  perspective: 1200px;
}

.signal-card {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.88;
  border: 1px solid rgba(107, 231, 255, 0.2);
  border-radius: 46px;
  background:
    linear-gradient(145deg, #122744, #07111f 72%),
    radial-gradient(circle at 50% 32%, rgba(107, 231, 255, 0.26), transparent 42%);
  box-shadow: var(--shadow);
  transform: rotateX(8deg) rotateY(-10deg);
  animation: floatCard 7s ease-in-out infinite;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 34px;
}

.signal-ring {
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(107, 231, 255, 0.36);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.signal-ring::after,
.signal-ring::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 24px var(--brand);
}

.signal-ring::before {
  top: -7px;
  left: 50%;
}

.signal-ring::after {
  right: 12%;
  bottom: 5%;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
}

.signal-ring-two {
  inset: 31%;
  border-color: rgba(255, 209, 102, 0.36);
  animation-duration: 12s;
  animation-direction: reverse;
}

.headset-icon {
  position: absolute;
  inset: 35%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #07111f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 60px rgba(107, 231, 255, 0.28);
}

.headset-icon span {
  position: relative;
  width: 82px;
  height: 70px;
  border: 9px solid var(--text);
  border-bottom: 0;
  border-radius: 70px 70px 0 0;
}

.headset-icon span::before,
.headset-icon span::after {
  content: "";
  position: absolute;
  bottom: -28px;
  width: 22px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
}

.headset-icon span::before {
  left: -14px;
}

.headset-icon span::after {
  right: -14px;
}

.pulse-line {
  position: absolute;
  width: 24%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.9;
  animation: pulseLine 2.8s ease-in-out infinite;
}

.pulse-one {
  top: 28%;
  left: 13%;
}

.pulse-two {
  right: 11%;
  bottom: 30%;
  animation-delay: 1.2s;
}

.mini-panel {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 158px;
  padding: 18px;
  border: 1px solid rgba(107, 231, 255, 0.22);
  border-radius: 22px;
  background: #0b1728;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.mini-panel strong {
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
}

.mini-panel span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-panel-top {
  top: 10%;
  right: -4%;
}

.mini-panel-bottom {
  left: -4%;
  bottom: 12%;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-content {
  padding-top: 8px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  max-width: 650px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solid-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(107, 231, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #132743 0%, #0b1728 72%),
    radial-gradient(circle at 90% 12%, rgba(107, 231, 255, 0.16), transparent 30%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.solid-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -50% 16%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 231, 255, 0.18), transparent 68%);
  transform: translateZ(-1px);
}

.solid-card:hover {
  border-color: rgba(107, 231, 255, 0.4);
  background:
    linear-gradient(145deg, #19375d 0%, #0e1d33 72%),
    radial-gradient(circle at 90% 12%, rgba(255, 122, 217, 0.16), transparent 30%);
}

.card-number {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 88px;
  border-radius: 18px;
  color: #06111f;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.service-card p {
  margin-bottom: 0;
}

.why-section {
  position: relative;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0f1d32;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.why-item:hover {
  border-color: rgba(107, 231, 255, 0.35);
  transform: translateY(-3px);
}

.why-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
}

.why-item p {
  margin-bottom: 0;
}

.career-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  padding: clamp(30px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(107, 231, 255, 0.26);
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 20%, rgba(107, 231, 255, 0.22), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(255, 122, 217, 0.18), transparent 34%),
    linear-gradient(135deg, #142945, #091423);
  box-shadow: var(--shadow);
}

.career-panel p {
  max-width: 720px;
  margin-bottom: 0;
}

.career-actions {
  justify-content: flex-end;
}

.careers-page-hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 32px;
  align-items: center;
  padding-top: 150px;
}

.careers-page-copy {
  min-width: 0;
}

.career-info-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(107, 231, 255, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 122, 217, 0.14), transparent 30%),
    linear-gradient(145deg, #132743 0%, #0b1728 72%);
  box-shadow: var(--shadow);
}

.career-info-card h2 {
  margin-top: 34px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.career-info-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-info-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.career-info-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(107, 231, 255, 0.55);
}

.application-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  align-items: start;
  padding-top: 70px;
}

.application-intro {
  position: sticky;
  top: 130px;
}

.application-form {
  scroll-margin-top: 130px;
}

.trust-card {
  padding: clamp(30px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: #0f1d32;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(107, 231, 255, 0.16);
  border-radius: 26px;
  background: #081423;
}

.stat strong {
  color: var(--brand);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.85;
  letter-spacing: -0.09em;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0f1d32;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-methods a:hover {
  border-color: rgba(107, 231, 255, 0.36);
  transform: translateX(4px);
}

.contact-methods span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 1rem;
}

.contact-form {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(107, 231, 255, 0.18);
  border-radius: 34px;
  background: #0f1d32;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: rgba(246, 248, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(107, 231, 255, 0.16);
  border-radius: 16px;
  color: var(--text);
  background: #081423;
  color-scheme: dark;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input,
select {
  min-height: 52px;
  padding: 0 15px;
}

textarea {
  min-height: 132px;
  padding: 15px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(107, 231, 255, 0.65);
  background: #07111f;
  box-shadow: 0 0 0 4px rgba(107, 231, 255, 0.1);
}

select option {
  color: var(--text);
  background-color: #081423;
}

select option:checked {
  color: #06111f;
  background-color: var(--brand);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.86rem;
}

.form-note a {
  color: var(--brand);
  font-weight: 800;
}

.submission-status {
  display: none;
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(107, 231, 255, 0.24);
  border-radius: 16px;
  color: var(--text);
  background: #081423;
  font-weight: 800;
}

.submission-status.is-visible {
  display: block;
}

.submission-status.is-error {
  border-color: rgba(255, 122, 217, 0.42);
  color: #ffd9f3;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  color: #05160d;
  font-size: 0.88rem;
  font-weight: 900;
  background: linear-gradient(135deg, #25d366, #b4ffce);
  box-shadow: 0 18px 50px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: var(--text);
  font-weight: 800;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 16px 48px;
}

.simple-card {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: #0f1d32;
  box-shadow: var(--shadow);
}

.simple-card h1 {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.simple-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: rotateX(8deg) rotateY(-10deg) translateY(0);
  }
  50% {
    transform: rotateX(4deg) rotateY(-6deg) translateY(-16px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.24;
    transform: scaleX(0.65);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #08111f;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .split-section,
  .contact-section,
  .career-panel,
  .careers-page-hero,
  .application-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    padding-top: 132px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .card-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy {
    position: static;
  }

  .careers-page-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .application-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max-width));
  }

  .brand-text {
    display: none;
  }

  .section {
    width: min(calc(100% - 22px), var(--max-width));
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .careers-page-hero {
    padding-top: 118px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12.5vw, 3.7rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .button,
  .career-actions .button,
  .simple-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .signal-card {
    width: min(100%, 360px);
    border-radius: 32px;
  }

  .mini-panel {
    min-width: 126px;
    padding: 14px;
  }

  .mini-panel-top {
    right: 0;
  }

  .mini-panel-bottom {
    left: 0;
  }

  .card-grid,
  .stats-grid,
  .why-list,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .solid-card {
    min-height: 250px;
  }

  .card-number {
    margin-bottom: 54px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
