:root {
  --primary: #00C86F;
  --deep-green: #007A3A;
  --forest: #00572A;
  --fog: #74E8A0;
  --soft-gray: #E7EEE7;
  --charcoal: #0E0F0E;
  --gold: #E8C26A;
  --accent-red: #D24A4A;
  --accent-red-deep: #8B2323;
  --accent-red-soft: #FF8A8A;
  --white: #ffffff;
  --border: rgba(231, 238, 231, 0.12);
  --glass: rgba(255, 255, 255, 0.05);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  color-scheme: dark light;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  background: var(--charcoal);
  color: var(--white);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.subpage {
  background: var(--charcoal);
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 20px 0 auto;
  z-index: 120;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 14, 11, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.brand-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  isolation: isolate;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-logotype {
  width: min(104px, 22vw);
  height: auto;
  object-fit: contain;
}

.home-page .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
}

html.home-returning .home-page:not(.nav-visible) .site-header {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: translateY(0);
  transition-duration: var(--home-header-fade-duration, 760ms);
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page.nav-visible .site-header {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.home-page.home-header-entering:not(.nav-visible) .site-header {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: translateY(0);
  transition-duration: var(--home-header-fade-duration, 760ms);
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page.home-header-entering.home-header-entering-fade:not(.nav-visible) .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--fog);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
}

.section-rail {
  position: fixed;
  top: 50%;
  right: 28px;
  z-index: 12;
  transform: translateY(-50%);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.section-rail.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(10px);
}

.section-rail-list {
  display: grid;
  gap: 16px;
}

.section-rail-link {
  --rail-scale: 1;
  --rail-dot-opacity: 0.58;
  --rail-label-opacity: 0.24;
  --rail-label-shift: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.section-rail-label {
  max-width: 220px;
  font-size: 0.92rem;
  line-height: 1.2;
  text-align: right;
  opacity: var(--rail-label-opacity);
  transform: translateX(var(--rail-label-shift));
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.section-rail-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: rgba(231, 238, 231, 0.46);
  box-shadow: 0 0 0 1px rgba(231, 238, 231, 0.12);
  opacity: var(--rail-dot-opacity);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  transform: scale(var(--rail-scale));
}

.section-rail-link:hover .section-rail-label,
.section-rail-link.is-active .section-rail-label {
  opacity: 0.92;
  transform: translateX(0);
  color: var(--white);
}

.section-rail-link:hover .section-rail-dot {
  opacity: 0.95;
  box-shadow:
    0 0 0 1px rgba(231, 238, 231, 0.18),
    0 0 12px rgba(255, 255, 255, 0.08);
}

.section-rail-link.is-active .section-rail-dot {
  opacity: 1;
  background: var(--fog);
  box-shadow:
    0 0 0 6px rgba(116, 232, 160, 0.12),
    0 0 18px rgba(116, 232, 160, 0.2);
}

body.modal-open .section-rail {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .section-rail {
    display: none;
  }
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--page-transition-duration, 620ms) ease,
    visibility 0s linear var(--page-transition-duration, 620ms);
}

.page-transition::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.16), rgba(8, 10, 9, 0.54));
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--page-transition-duration, 620ms) ease;
}

.page-transition-glow,
.page-transition-ripple {
  display: none;
}

@keyframes pageContentExit {
  from {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
  to {
    opacity: 0.04;
    filter: blur(8px);
    transform: none;
  }
}

@keyframes pageContentEnter {
  from {
    opacity: 0.08;
    filter: blur(8px);
    transform: none;
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

body.page-transition-leaving,
body.page-transition-entering {
  overflow: hidden;
}

body.page-transition-leaving .page-transition,
body.page-transition-entering .page-transition {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

body.page-transition-leaving .page-transition::before,
body.page-transition-entering .page-transition::before {
  opacity: 1;
}

body.page-transition-entering.page-transition-active .page-transition {
  opacity: 0;
  visibility: hidden;
}

body.page-transition-entering.page-transition-active .page-transition::before {
  opacity: 0;
}

body.page-transition-leaving .section-rail,
body.page-transition-leaving main,
body.page-transition-leaving .site-footer {
  animation: pageContentExit var(--page-transition-duration, 620ms) ease forwards;
}

body.page-transition-entering .section-rail,
body.page-transition-entering main,
body.page-transition-entering .site-footer {
  animation: pageContentEnter var(--page-transition-duration, 620ms) ease forwards;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #071109 0%, #0b0f0d 40%, #102619 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(14, 15, 14, 0.25), rgba(14, 15, 14, 0.7)),
    linear-gradient(to right, rgba(14, 15, 14, 0.25), rgba(14, 15, 14, 0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  text-align: center;
  padding: 112px 0 78px;
  transform: translateY(-24px);
}

.hero-brand {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(640px, 100%);
  margin: 0 auto 4px;
  isolation: isolate;
}

.hero-brand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: min(560px, 92%);
  height: min(220px, 34vw);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.hero-logo {
  width: min(430px, 74vw);
  margin: 0 auto 8px;
  filter:
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 28px rgba(116, 232, 160, 0.12));
}

.hero-logotype {
  width: min(520px, 86%);
  margin: clamp(-82px, -6vw, -46px) auto 28px;
  filter:
    drop-shadow(0 22px 34px rgba(0, 0, 0, 0.26))
    drop-shadow(0 0 22px rgba(116, 232, 160, 0.08));
}

.claim {
  margin: 0 0 20px;
  color: var(--soft-gray);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.022em;
  text-transform: uppercase;
}

.claim-word {
  display: inline-flex;
  align-items: flex-end;
}

.claim-initial {
  font-size: calc(1em + 10px);
  line-height: 0.92;
}

.hero-subtitle {
  width: min(760px, 100%);
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--deep-green));
  color: var(--white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(0, 200, 111, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button-secondary {
  background: transparent;
  border: 1px solid rgba(231, 238, 231, 0.24);
  box-shadow: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0, 200, 111, 0.34);
}

.cta-button-secondary:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  width: 36px;
  height: 58px;
  border: 1px solid rgba(231, 238, 231, 0.28);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.scroll-indicator span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: var(--soft-gray);
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.section-alt {
  background: linear-gradient(180deg, #111311 0%, #0f1511 100%);
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.layout-reverse > :first-child {
  order: 2;
}

.layout-reverse > :last-child {
  order: 1;
}

.section-label {
  margin: 0 0 14px;
  color: var(--fog);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.22em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
  line-height: 1;
}

.section-label-word {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}

.section-label-initial {
  display: inline-block;
  font-size: calc(1em + 3px);
  font-weight: 300;
  opacity: 0.94;
  letter-spacing: -0.01em;
  line-height: 1;
}

.section-label-word > span:last-child {
  line-height: 1;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.text-block p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.8;
}

.glass-card,
.mini-card,
.icon-item,
.contact-form,
.application-form {
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.glass-card {
  border-radius: 28px;
  padding: 34px;
}

.glass-card h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
}

.glass-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.metric-line {
  width: 82px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.section-intro {
  padding-top: 108px;
}

.intro-section-layout {
  align-items: center;
}

.intro-section-layout .text-block {
  max-width: 620px;
}

.intro-section-layout .text-block h2 {
  max-width: 10ch;
}

.intro-section-layout .text-block p:not(.section-label) {
  max-width: 56ch;
}

.intro-section-visual {
  display: flex;
  justify-content: center;
}

.intro-section-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  min-height: 280px;
}

.intro-section-icon-wrap::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(116, 232, 160, 0.16), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
  animation: sectionIconAura 8.6s ease-in-out infinite;
}

.intro-section-icon {
  position: relative;
  z-index: 1;
  width: min(280px, 80%);
  height: auto;
  object-fit: contain;
  animation: sectionIconBreathe 8.6s ease-in-out infinite;
  filter:
    drop-shadow(0 22px 36px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 28px rgba(116, 232, 160, 0.12));
}

.section-statement {
  padding-top: 18px;
}

.statement-layout {
  align-items: center;
}

.statement-block {
  width: min(760px, 100%);
}

.statement-block h2 {
  max-width: 14ch;
}

.statement-block p:not(.section-label) {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.statement-visual {
  display: flex;
  justify-content: center;
}

.statement-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(380px, 100%);
  min-height: 280px;
}

.statement-icon-wrap::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(116, 232, 160, 0.14), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
  animation: sectionIconAura 9.1s ease-in-out infinite 0.6s;
}

.statement-icon {
  position: relative;
  z-index: 1;
  width: min(300px, 84%);
  height: auto;
  object-fit: contain;
  animation: sectionIconBreathe 9.1s ease-in-out infinite 0.6s;
  filter:
    drop-shadow(0 22px 36px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 24px rgba(116, 232, 160, 0.1));
}

.page-hero {
  position: relative;
  min-height: 72vh;
  min-height: 72svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  padding: 176px 0 96px;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.ambient-glow-field {
  position: absolute;
  inset: -12%;
  z-index: 1;
  pointer-events: none;
}

.ambient-glow-orb {
  position: absolute;
  top: var(--glow-y, 10%);
  left: var(--glow-x, 10%);
  width: var(--glow-size, 280px);
  height: var(--glow-size, 280px);
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(var(--glow-scale, 1));
  transition-property: opacity, filter;
  transition-timing-function: ease-in-out;
  will-change: transform, opacity;
  background:
    radial-gradient(circle, rgba(116, 232, 160, 0.3) 0%, rgba(0, 200, 111, 0.22) 34%, rgba(0, 122, 58, 0.11) 56%, transparent 74%);
  filter: blur(var(--glow-blur, 48px));
}

.ambient-glow-orb.is-visible {
  opacity: var(--glow-alpha, 0.28);
}

.ambient-glow-orb:nth-child(2n) {
  background:
    radial-gradient(circle, rgba(116, 232, 160, 0.24) 0%, rgba(0, 200, 111, 0.18) 34%, rgba(0, 122, 58, 0.09) 56%, transparent 76%);
}

.ambient-glow-orb:nth-child(3n) {
  background:
    radial-gradient(circle, rgba(0, 200, 111, 0.26) 0%, rgba(116, 232, 160, 0.16) 38%, rgba(0, 122, 58, 0.08) 58%, transparent 74%);
}

.page-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  border: 1px solid rgba(231, 238, 231, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.page-icon-image {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.recruitment-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  width: min(1160px, 100%);
}

.recruitment-hero-copy .hero-subtitle {
  margin: 0 0 32px;
}

.recruitment-hero-copy .button-row {
  justify-content: flex-start;
}

.recruitment-hero-visual {
  display: flex;
  justify-content: center;
}

.hero-icon-float {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
}

.hero-icon-float::before,
.hero-icon-float::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-icon-float::before {
  width: 78%;
  height: 78%;
  background: radial-gradient(circle, rgba(116, 232, 160, 0.18), transparent 62%);
  filter: blur(16px);
  animation: heroAura 7.4s ease-in-out infinite;
}

.hero-icon-float::after {
  width: 116%;
  height: 116%;
  background:
    radial-gradient(circle at 34% 38%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 70% 68%, rgba(0, 122, 58, 0.18), transparent 24%);
  opacity: 0.92;
}

.hero-page-icon {
  position: relative;
  z-index: 2;
  width: min(350px, 82%);
  height: auto;
  object-fit: contain;
  animation: heroBreathe 7.4s ease-in-out infinite;
  filter:
    drop-shadow(0 24px 36px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 38px rgba(116, 232, 160, 0.18));
}

@keyframes heroBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes heroAura {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes sectionIconBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes sectionIconAura {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.98;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition,
  .page-transition::before,
  .page-transition-glow,
  .page-transition-ripple {
    transition-duration: 160ms !important;
  }

  body.page-transition-leaving .section-rail,
  body.page-transition-leaving main,
  body.page-transition-leaving .site-footer,
  body.page-transition-entering .section-rail,
  body.page-transition-entering main,
  body.page-transition-entering .site-footer {
    animation: none !important;
  }

  .hero-icon-float::before,
  .hero-page-icon,
  .intro-section-icon-wrap::before,
  .intro-section-icon,
  .statement-icon-wrap::before,
  .statement-icon,
  .mini-card-icon,
  .audience-card-icon-wrap::before,
  .audience-card-icon,
  .scroll-indicator span {
    animation: none !important;
  }
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 36px;
}

.section-heading p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(116, 232, 160, 0.08));
  box-shadow: var(--shadow);
}

.intro-panel p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.company-details-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.company-legal-name {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.company-detail-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.company-detail-line + .company-detail-line {
  margin-top: 10px;
}

.company-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.company-data-item {
  padding: 18px;
  border: 1px solid rgba(231, 238, 231, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.company-data-item-wide {
  grid-column: 1 / -1;
  text-align: center;
}

.company-data-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--fog);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-data-item strong {
  color: var(--white);
  font-size: 1.02rem;
}

.company-data-item-wide span {
  text-transform: none;
  letter-spacing: 0.03em;
}

.company-data-item-wide strong {
  display: inline-block;
  letter-spacing: 0.02em;
}

.keyword-card h3 {
  margin: 0 0 20px;
}

.keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.keyword-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(231, 238, 231, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.traits-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.traits-list li {
  position: relative;
  padding: 22px 22px 22px 64px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.traits-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  box-shadow: 0 0 0 8px rgba(0, 200, 111, 0.08);
}

.position-item {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.position-item summary {
  list-style: none;
}

.position-item summary::-webkit-details-marker {
  display: none;
}

.position-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  cursor: pointer;
}

.position-summary-text h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.position-label {
  margin: 0 0 10px;
  color: var(--fog);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.position-toggle {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 18px;
  border: 1px solid rgba(231, 238, 231, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.position-toggle::before,
.position-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.position-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.position-item[open] .position-toggle {
  border-color: rgba(116, 232, 160, 0.3);
  background: rgba(0, 200, 111, 0.08);
}

.position-item[open] .position-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.position-content {
  display: grid;
  gap: 28px;
  padding: 0 32px 32px;
  border-top: 1px solid rgba(231, 238, 231, 0.1);
}

.position-intro {
  margin: 0;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.position-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.position-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(231, 238, 231, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.job-info-card,
.job-section-card {
  padding: 28px;
  border: 1px solid rgba(231, 238, 231, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.job-info-card h4,
.job-section-card h4 {
  margin: 0 0 18px;
  font-size: 1.15rem;
}

.job-info-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(231, 238, 231, 0.08);
}

.job-info-row:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.job-info-row span {
  color: rgba(255, 255, 255, 0.68);
}

.job-info-row strong {
  color: var(--white);
  font-weight: 600;
}

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

.job-section-card-wide {
  grid-column: 1 / -1;
}

.job-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-list li {
  position: relative;
  padding-left: 38px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.job-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("assets/icon/check.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter:
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 10px rgba(116, 232, 160, 0.1));
}

.job-list-muted li::before {
  opacity: 0.58;
  filter:
    grayscale(1)
    brightness(1.18)
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.job-subheading {
  margin-top: 0;
}

.job-subheading-spacer {
  height: 34px;
}

.job-about-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

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

.position-block {
  padding: 24px;
  border: 1px solid rgba(231, 238, 231, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.position-block h4 {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

.position-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.process-card {
  display: grid;
  gap: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 200, 111, 0.22), rgba(0, 122, 58, 0.5));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.process-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: start;
}

.application-form {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 28px;
  padding: 30px;
  scrollbar-width: thin;
  scrollbar-color: rgba(116, 232, 160, 0.42) rgba(255, 255, 255, 0.04);
}

.contact-form,
.application-form,
.application-modal-dialog {
  position: relative;
  isolation: isolate;
}

.contact-form,
.application-form {
  background: linear-gradient(180deg, rgba(19, 24, 20, 0.96), rgba(18, 22, 19, 0.985));
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.contact-form label,
.application-form label {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.application-form input:not([type="checkbox"]),
.application-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(231, 238, 231, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  font: inherit;
  outline: none;
}

.application-form textarea,
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.application-form input[type="file"] {
  padding: 14px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.application-form input:not([type="checkbox"]):focus,
.application-form textarea:focus {
  border-color: rgba(0, 200, 111, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 200, 111, 0.12);
}

.checkbox-field {
  margin-bottom: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(231, 238, 231, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--primary);
  flex: 0 0 20px;
}

.checkbox-label span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.contact-form button,
.application-form button {
  width: 100%;
  padding: 16px 20px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--deep-green));
  color: var(--white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.application-form button:disabled {
  opacity: 0.78;
  cursor: wait;
}

.application-form::-webkit-scrollbar {
  width: 10px;
}

.application-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.application-form::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(116, 232, 160, 0.9), rgba(0, 122, 58, 0.82)) padding-box,
    linear-gradient(180deg, transparent, transparent) border-box;
}

.application-form::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(116, 232, 160, 1), rgba(0, 122, 58, 0.92)) padding-box,
    linear-gradient(180deg, transparent, transparent) border-box;
}

.open-application-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(116, 232, 160, 0.08));
  box-shadow: var(--shadow);
}

.open-application-panel p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.open-application-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: min(280px, 100%);
}

.open-application-actions .cta-button {
  width: 100%;
}

.application-modal[hidden] {
  display: none;
}

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

.application-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 6, 0.72);
  backdrop-filter: blur(8px);
}

.application-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(92vh, 920px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(12, 16, 13, 0.995), rgba(16, 21, 17, 0.99));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.application-alert[hidden] {
  display: none;
}

.application-alert {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
}

.application-alert[data-state="success"] .application-alert-dialog {
  border-color: rgba(116, 232, 160, 0.38);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(116, 232, 160, 0.12);
}

.application-alert[data-state="pending"] .application-alert-dialog {
  border-color: rgba(116, 232, 160, 0.24);
}

.application-alert-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 6, 0.58);
  backdrop-filter: blur(10px);
}

.application-alert[data-state="pending"] .application-alert-backdrop {
  cursor: progress;
}

.application-alert-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, calc(100% - 32px));
  padding: 28px;
  border: 1px solid rgba(231, 238, 231, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 16, 13, 0.995), rgba(16, 21, 17, 0.99));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.application-alert-dialog h3 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}

.application-alert-copy {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.application-alert-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(231, 238, 231, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.application-alert-button {
  width: 100%;
  min-width: 0;
}

.application-alert[data-state="pending"] .application-alert-close,
.application-alert[data-state="pending"] .application-alert-button {
  opacity: 0.78;
  cursor: wait;
  pointer-events: none;
}

.application-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(231, 238, 231, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.application-modal-header {
  margin-bottom: 24px;
  padding-right: 54px;
}

.application-modal-role {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
}

.application-modal-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.download-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.download-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.download-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(116, 232, 160, 0.12);
  color: var(--fog);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: auto;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 200, 111, 0.22);
  background: linear-gradient(135deg, rgba(0, 200, 111, 0.22), rgba(0, 122, 58, 0.44));
  color: var(--white);
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 200, 111, 0.16);
  border-color: rgba(116, 232, 160, 0.42);
}

.download-card-purchase {
  border-color: rgba(210, 74, 74, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(210, 74, 74, 0.06));
}

.download-card-purchase .download-badge {
  background: rgba(210, 74, 74, 0.14);
  color: var(--accent-red-soft);
}

.download-card-purchase .download-button {
  border-color: rgba(224, 58, 58, 0.34);
  background: linear-gradient(135deg, rgba(236, 78, 78, 0.3), rgba(170, 22, 22, 0.58));
}

.download-card-purchase .download-button:hover {
  box-shadow: 0 14px 36px rgba(224, 58, 58, 0.22);
  border-color: rgba(255, 110, 110, 0.52);
}

.download-button-disabled {
  border: 1px solid rgba(231, 238, 231, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
}

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

.mini-card {
  min-height: 140px;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: end;
  font-size: 1.05rem;
  color: var(--soft-gray);
}

.mini-card-with-icon {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.mini-card-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  animation: sectionIconBreathe 9.6s ease-in-out infinite 0.35s;
  filter:
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 18px rgba(116, 232, 160, 0.1));
}

.mini-card-with-icon span {
  display: block;
}

.mini-card:last-child {
  grid-column: 1 / -1;
}

.cards-grid-equal .mini-card:last-child {
  grid-column: auto;
}

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

.audience-card {
  position: relative;
  min-height: 232px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(231, 238, 231, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 26%, rgba(116, 232, 160, 0.08), transparent 48%);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: center;
  overflow: hidden;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 34%);
  pointer-events: none;
}

.audience-card-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(190px, 100%);
  min-height: 164px;
}

.audience-card-icon-wrap::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(116, 232, 160, 0.16), transparent 70%);
  filter: blur(18px);
  animation: sectionIconAura 9.4s ease-in-out infinite;
  pointer-events: none;
}

.audience-card-icon {
  position: relative;
  z-index: 1;
  width: min(178px, 96%);
  height: auto;
  object-fit: contain;
  animation: sectionIconBreathe 9.4s ease-in-out infinite;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 22px rgba(116, 232, 160, 0.1));
}

.audience-card-label {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--soft-gray);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.mail-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.site-footer {
  position: relative;
  padding: 26px 0 34px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.contact-form {
  border-radius: 28px;
  padding: 28px;
}

.reveal {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(60px);
}

.reveal-down {
  transform: translateY(-60px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    inset: 12px 0 auto;
  }

  .site-header-inner {
    flex-direction: column;
    justify-content: center;
    border-radius: 28px;
  }

  .section-rail {
    display: none;
  }

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

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

  .open-application-actions {
    width: 100%;
    align-items: center;
  }

  .brand-link,
  .site-nav,
  .button-row {
    justify-content: center;
  }

  .brand-logotype {
    width: min(92px, 30vw);
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .layout-reverse > :first-child,
  .layout-reverse > :last-child {
    order: initial;
  }

  .intro-section-layout .text-block h2,
  .intro-section-layout .text-block p:not(.section-label) {
    max-width: none;
  }

  .intro-section-visual {
    justify-content: center;
  }

  .intro-section-icon-wrap {
    width: min(260px, 100%);
    min-height: 220px;
  }

  .intro-section-icon {
    width: min(210px, 74%);
  }

  .statement-block h2,
  .statement-block p:not(.section-label) {
    max-width: none;
  }

  .statement-visual {
    justify-content: center;
  }

  .statement-icon-wrap {
    width: min(290px, 100%);
    min-height: 240px;
  }

  .statement-icon {
    width: min(240px, 80%);
  }

  .application-layout,
  .application-form-grid,
  .position-content-grid,
  .job-sections-grid,
  .job-info-row {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .company-data-grid,
  .downloads-grid {
    grid-template-columns: 1fr;
  }

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

  .audience-card {
    min-height: 176px;
    padding: 18px 14px 14px;
    gap: 12px;
    border-radius: 24px;
  }

  .audience-card-icon-wrap {
    width: min(132px, 100%);
    min-height: 112px;
  }

  .audience-card-icon {
    width: min(118px, 92%);
  }

  .audience-card-label {
    font-size: 0.92rem;
  }

  .mini-card:last-child {
    grid-column: auto;
  }

  .hero-logo {
    width: min(280px, 74vw);
  }

  .hero-logotype {
    margin: -46px auto 24px;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 140px;
  }

  .hero-content {
    transform: translateY(-14px);
  }

  .recruitment-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .recruitment-hero-copy {
    text-align: center;
  }

  .recruitment-hero-copy .hero-subtitle {
    margin: 0 auto 32px;
  }

  .recruitment-hero-copy .button-row {
    justify-content: center;
  }

  .page-icon-badge {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 22px;
  }

  .page-icon-image {
    width: 38px;
    height: 38px;
  }

  .hero-icon-float {
    width: min(380px, 100%);
  }

  .hero-page-icon {
    width: min(250px, 76%);
  }

  .section {
    padding: 88px 0;
  }

  .position-summary,
  .application-modal-dialog {
    padding: 24px;
  }

  .application-form {
    padding: 24px;
  }

  .position-content {
    padding: 0 24px 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 32px));
  }

  .site-header-inner {
    padding: 12px 16px;
    gap: 16px;
  }

  .site-nav {
    gap: 12px 16px;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

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

  .audience-card {
    min-height: 158px;
    padding: 14px 10px 12px;
    gap: 10px;
    border-radius: 22px;
  }

  .audience-card-icon-wrap {
    width: min(110px, 100%);
    min-height: 92px;
  }

  .audience-card-icon {
    width: min(96px, 88%);
  }

  .audience-card-label {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .section {
    padding: 76px 0;
  }

  .scroll-indicator {
    bottom: 18px;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --charcoal: #f5f8f3;
    --soft-gray: #172218;
    --border: rgba(0, 87, 42, 0.12);
    --glass: rgba(255, 255, 255, 0.72);
    --shadow: 0 24px 80px rgba(20, 34, 24, 0.12);
    color-scheme: light;
  }

  body,
  .subpage,
  .section {
    background: var(--charcoal);
    color: #162118;
  }

  .section-alt {
    background: linear-gradient(180deg, #ecf3ea 0%, #f8fbf6 100%);
  }

  .site-header-inner {
    border-color: rgba(0, 87, 42, 0.12);
    background: rgba(248, 251, 246, 0.76);
    box-shadow: 0 18px 60px rgba(20, 34, 24, 0.08);
  }

  .site-nav a {
    color: rgba(22, 33, 24, 0.76);
  }

  .site-nav a:hover {
    color: var(--deep-green);
  }

  .site-nav a[aria-current="page"] {
    color: #162118;
  }

  .section-rail-link {
    color: rgba(22, 33, 24, 0.72);
  }

  .section-rail-dot {
    background: rgba(22, 33, 24, 0.24);
    box-shadow: 0 0 0 1px rgba(0, 87, 42, 0.12);
  }

  .section-rail-link:hover .section-rail-label,
  .section-rail-link.is-active .section-rail-label {
    color: #162118;
  }

  .section-rail-link:hover .section-rail-dot {
    box-shadow:
      0 0 0 1px rgba(0, 87, 42, 0.18),
      0 0 12px rgba(0, 87, 42, 0.08);
  }

  .section-rail-link.is-active .section-rail-dot {
    background: var(--forest);
    box-shadow:
      0 0 0 6px rgba(0, 87, 42, 0.1),
      0 0 18px rgba(0, 122, 58, 0.1);
  }

  .video-placeholder {
    background: linear-gradient(135deg, #f8fbf6 0%, #edf5ec 42%, #e3eee1 100%);
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(245, 248, 243, 0.08), rgba(245, 248, 243, 0.74)),
      linear-gradient(to right, rgba(245, 248, 243, 0.06), rgba(245, 248, 243, 0.18));
  }

  .section-intro {
    background:
      linear-gradient(180deg, #f7fbf6 0%, #eef6ee 100%);
  }

  .section-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 72% 46%, rgba(116, 232, 160, 0.16), transparent 24%),
      radial-gradient(circle at 64% 54%, rgba(0, 200, 111, 0.08), transparent 20%);
    pointer-events: none;
    z-index: 1;
  }

  .intro-section-layout .text-block {
    position: relative;
    z-index: 2;
  }

  .intro-section-layout .text-block h2 {
    max-width: 11ch;
  }

  .intro-section-layout .text-block p:not(.section-label) {
    max-width: 58ch;
  }

  .intro-section-visual {
    justify-content: flex-end;
  }

  .intro-section-icon-wrap {
    width: min(400px, 100%);
    min-height: 320px;
  }

  .intro-section-icon-wrap::before {
    width: 94%;
    height: 94%;
    background:
      radial-gradient(circle, rgba(116, 232, 160, 0.18), rgba(0, 200, 111, 0.08) 42%, transparent 70%);
    filter: blur(22px);
  }

  .intro-section-icon {
    width: min(300px, 86%);
  }

  .page-transition::before {
    background: linear-gradient(180deg, rgba(245, 248, 243, 0.18), rgba(227, 236, 225, 0.62));
  }

  .claim,
  h1,
  h2,
  h3,
  h4,
  .company-legal-name,
  .application-modal-role,
  .position-summary-text h3,
  .download-card h3 {
    color: var(--forest);
  }

  .section-label,
  .position-label,
  .company-data-item span,
  .download-badge {
    color: var(--deep-green);
  }

  .hero-subtitle,
  .text-block p:not(.section-label),
  .glass-card p,
  .statement-block p:not(.section-label),
  .section-heading p:not(.section-label),
  .intro-panel p:not(.section-label),
  .company-detail-line,
  .open-application-panel p:not(.section-label),
  .application-modal-copy,
  .download-card p,
  .job-about-text,
  .position-intro,
  .position-list,
  .process-item p,
  .job-list li,
  .company-data-item,
  .traits-list li,
  .application-modal-copy,
  .contact-form label,
  .application-form label,
  .checkbox-label span {
    color: rgba(22, 33, 24, 0.82);
  }

  .glass-card,
  .intro-panel,
  .company-details-card,
  .contact-form,
  .application-form,
  .open-application-panel,
  .position-item,
  .job-info-card,
  .job-section-card,
  .position-block,
  .process-item,
  .download-card,
  .audience-card,
  .mini-card,
  .company-data-item,
  .keyword-chip,
  .position-tag,
  .checkbox-label,
  .position-toggle,
  .application-modal-close {
    border-color: rgba(0, 87, 42, 0.12);
    box-shadow: 0 24px 70px rgba(20, 34, 24, 0.08);
  }

  .glass-card,
  .intro-panel,
  .company-details-card,
  .open-application-panel,
  .audience-card,
  .mini-card,
  .job-info-card,
  .job-section-card,
  .position-block,
  .process-item,
  .position-item {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 252, 248, 0.94));
  }

  .audience-card {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 252, 248, 0.94)),
      radial-gradient(circle at 50% 26%, rgba(116, 232, 160, 0.09), transparent 48%);
  }

  .audience-card::before {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.45), transparent 34%);
  }

  .download-card {
    border-color: rgba(0, 122, 58, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(233, 245, 237, 0.98));
    box-shadow:
      0 24px 70px rgba(20, 34, 24, 0.08),
      0 0 0 1px rgba(0, 122, 58, 0.08) inset;
  }

  .download-badge {
    background: linear-gradient(135deg, rgba(0, 122, 58, 0.1), rgba(0, 87, 42, 0.16));
    color: var(--forest);
    box-shadow: 0 10px 18px rgba(0, 122, 58, 0.08);
  }

  .download-button {
    border-color: rgba(0, 87, 42, 0.32);
    background: linear-gradient(135deg, rgba(0, 122, 58, 0.9), rgba(0, 87, 42, 0.72));
    box-shadow:
      0 16px 34px rgba(0, 87, 42, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  }

  .download-button:hover {
    box-shadow:
      0 18px 38px rgba(0, 87, 42, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.26) inset;
  }

  .contact-form,
  .application-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 245, 0.97));
  }

  .contact-form input,
  .contact-form textarea,
  .application-form input:not([type="checkbox"]),
  .application-form textarea,
  .application-form input[type="file"] {
    border-color: rgba(0, 87, 42, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #162118;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder,
  .application-form input:not([type="checkbox"])::placeholder,
  .application-form textarea::placeholder {
    color: rgba(22, 33, 24, 0.42);
  }

  .contact-form input:focus,
  .contact-form textarea:focus,
  .application-form input:not([type="checkbox"]):focus,
  .application-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(0, 200, 111, 0.1);
  }

  .application-form {
    scrollbar-color: rgba(0, 122, 58, 0.28) rgba(0, 87, 42, 0.06);
  }

  .application-form::-webkit-scrollbar-track {
    background: rgba(0, 87, 42, 0.06);
  }

  .position-item[open] .position-toggle {
    border-color: rgba(0, 200, 111, 0.26);
    background: rgba(0, 200, 111, 0.08);
  }

  .position-toggle::before,
  .position-toggle::after {
    background: #162118;
  }

  .position-content {
    border-top-color: rgba(0, 87, 42, 0.08);
  }

  .company-data-item strong,
  .job-info-row strong,
  .audience-card-label {
    color: var(--forest);
  }

  .keyword-chip,
  .position-tag,
  .company-data-item,
  .checkbox-label,
  .application-modal-close,
  .application-alert-close {
    background: rgba(255, 255, 255, 0.84);
    color: rgba(22, 33, 24, 0.86);
  }

  .application-alert-backdrop {
    background: rgba(233, 239, 232, 0.6);
  }

  .application-alert-dialog {
    border-color: rgba(0, 87, 42, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 242, 0.99));
    box-shadow: 0 32px 90px rgba(20, 34, 24, 0.18);
  }

  .application-alert-dialog h3 {
    color: var(--forest);
  }

  .application-alert-copy {
    color: rgba(22, 33, 24, 0.82);
  }

  .mail-link {
    color: var(--deep-green);
  }

  .mail-link:hover {
    color: var(--primary);
  }

  .site-footer {
    border-top-color: rgba(0, 87, 42, 0.1);
    background: rgba(255, 255, 255, 0.5);
  }

  .site-footer p {
    color: rgba(22, 33, 24, 0.62);
  }

  .site-header .brand-link::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 18px);
    height: calc(100% + 14px);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background:
      radial-gradient(circle at 30% 48%, rgba(20, 34, 24, 0.2) 0%, rgba(20, 34, 24, 0.1) 18%, transparent 44%),
      radial-gradient(circle at 66% 50%, rgba(20, 34, 24, 0.14) 0%, rgba(20, 34, 24, 0.08) 24%, transparent 52%);
    filter: blur(12px);
    opacity: 0.96;
    z-index: -1;
    pointer-events: none;
  }

  .site-header .brand-mark,
  .site-header .brand-logotype {
    filter:
      contrast(1.08)
      saturate(1.12)
      drop-shadow(0 0 1px rgba(20, 34, 24, 0.34))
      drop-shadow(0 8px 14px rgba(20, 34, 24, 0.2))
      drop-shadow(0 0 12px rgba(20, 34, 24, 0.1));
  }

  .hero-logo {
    filter:
      contrast(1.08)
      saturate(1.14)
      drop-shadow(0 0 1px rgba(20, 34, 24, 0.3))
      drop-shadow(0 10px 18px rgba(20, 34, 24, 0.18))
      drop-shadow(0 20px 30px rgba(20, 34, 24, 0.18))
      drop-shadow(0 0 18px rgba(0, 122, 58, 0.08));
  }

  .hero-logotype {
    filter:
      contrast(1.12)
      saturate(1.1)
      drop-shadow(0 0 1px rgba(20, 34, 24, 0.34))
      drop-shadow(0 10px 18px rgba(20, 34, 24, 0.16))
      drop-shadow(0 20px 28px rgba(20, 34, 24, 0.18))
      drop-shadow(0 0 14px rgba(0, 122, 58, 0.06));
  }

  .hero-brand::before {
    opacity: 0.9;
    background:
      radial-gradient(circle at 50% 44%, rgba(20, 34, 24, 0.24) 0%, rgba(20, 34, 24, 0.14) 28%, rgba(20, 34, 24, 0.05) 50%, transparent 72%);
    filter: blur(22px);
  }

  .intro-section-icon,
  .statement-icon,
  .hero-page-icon,
  .mini-card-icon,
  .audience-card-icon {
    filter:
      drop-shadow(0 16px 26px rgba(20, 34, 24, 0.14))
      drop-shadow(0 0 18px rgba(0, 200, 111, 0.08));
  }

  .process-item span {
    box-shadow: 0 14px 34px rgba(0, 200, 111, 0.14);
  }

  .download-meta,
  .job-info-row span {
    color: rgba(22, 33, 24, 0.58);
  }

  .download-button-disabled {
    border-color: rgba(0, 87, 42, 0.1);
    background: rgba(255, 255, 255, 0.76);
    color: rgba(22, 33, 24, 0.54);
  }

  .download-card-purchase {
    border-color: rgba(210, 74, 74, 0.24);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 239, 239, 0.98));
    box-shadow:
      0 24px 70px rgba(20, 34, 24, 0.08),
      0 0 0 1px rgba(210, 74, 74, 0.08) inset;
  }

  .download-card-purchase .download-badge {
    background: linear-gradient(135deg, rgba(255, 183, 183, 0.72), rgba(210, 74, 74, 0.16));
    color: var(--accent-red-deep);
    box-shadow: 0 10px 18px rgba(210, 74, 74, 0.08);
  }

  .download-card-purchase .download-button {
    border-color: rgba(224, 58, 58, 0.38);
    background: linear-gradient(135deg, rgba(255, 134, 134, 0.96), rgba(224, 58, 58, 0.68));
    box-shadow:
      0 16px 34px rgba(224, 58, 58, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  }

  .download-card-purchase .download-button:hover {
    box-shadow:
      0 18px 38px rgba(224, 58, 58, 0.24),
      0 0 0 1px rgba(255, 255, 255, 0.26) inset;
  }

  .application-modal-backdrop {
    background: rgba(233, 239, 232, 0.72);
  }

  .application-modal-dialog {
    border-color: rgba(0, 87, 42, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 242, 0.99));
    box-shadow: 0 32px 90px rgba(20, 34, 24, 0.18);
  }

  .application-modal-close,
  .application-alert-close {
    color: #162118;
  }

  .scroll-indicator {
    border-color: rgba(0, 87, 42, 0.14);
    background: rgba(255, 255, 255, 0.56);
  }

  .scroll-indicator span {
    background: var(--forest);
  }

  .ambient-glow-orb {
    background:
      radial-gradient(circle, rgba(116, 232, 160, 0.2) 0%, rgba(0, 200, 111, 0.12) 34%, rgba(0, 122, 58, 0.05) 56%, transparent 74%);
  }

  .ambient-glow-orb:nth-child(2n) {
    background:
      radial-gradient(circle, rgba(116, 232, 160, 0.16) 0%, rgba(0, 200, 111, 0.1) 34%, rgba(0, 122, 58, 0.04) 56%, transparent 76%);
  }

  .ambient-glow-orb:nth-child(3n) {
    background:
      radial-gradient(circle, rgba(0, 200, 111, 0.16) 0%, rgba(116, 232, 160, 0.08) 38%, rgba(0, 122, 58, 0.04) 58%, transparent 74%);
  }

  .job-list li::before {
    filter:
      drop-shadow(0 4px 10px rgba(0, 87, 42, 0.08))
      drop-shadow(0 0 8px rgba(116, 232, 160, 0.08));
  }

  .job-list-muted li::before {
    filter:
      grayscale(1)
      brightness(1.08)
      drop-shadow(0 4px 10px rgba(0, 87, 42, 0.06));
  }
}
