:root {
  --mint: #C3DECE; --mint-soft: #e8f1ec;
  --green-mid: #91C2A6; --green-deep: #165225; --green-deep-2: #0d3a1a;
  --crimson: #B62D4F; --bordeaux: #6A1823;
  --bg: #ffffff; --bg-2: #f5f7f5;
  --ink: #14140f; --ink-soft: #5a5a52;
  --rule: rgba(20,20,15,.14); --rule-soft: rgba(20,20,15,.06);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: 'Ysabeau Office', sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.4; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--mint); color: var(--green-deep); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--rule); }
.nav-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 40px; padding: 18px 40px; }
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-logo svg path { fill: var(--ink); }
.nav-logo img { height: 22px; width: auto; display: block; }
.footer-logo img { height: 22px; width: auto; display: block; filter: invert(1); }
.nav-logo .logo-tag { color: var(--green-deep); padding-top: 2px; }
.nav-links { display: flex; gap: 28px; justify-self: end; font-size: 14.5px; }
.nav-links a { color: var(--ink-soft); position: relative; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--green-deep); transition: width .25s; }
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-locale { display: flex; gap: 2px; font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.nav-locale span { padding: 4px 8px; border-radius: 2px; cursor: pointer; }
.nav-locale .on { background: var(--ink); color: var(--bg); }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border: 1px solid var(--ink); border-radius: 999px; font-size: 14px; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--ink); color: var(--bg); }
.nav-cta::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); }

/* PAGE HEAD */
.page-head { max-width: 1440px; margin: 0 auto; padding: 32px 40px 0; }
.page-head .meta { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--rule); color: var(--ink-soft); }
.page-head .meta .issue { color: var(--green-deep); font-weight: 500; }

/* HERO */
.hero { max-width: 1440px; margin: 0 auto; padding: 56px 40px 80px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; border-bottom: 1px solid var(--rule); }
.hero h1 { font-size: clamp(56px, 7vw, 124px); line-height: .92; letter-spacing: -.025em; font-weight: 400; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--green-deep); }
.hero h1 .accent { color: var(--crimson); font-style: italic; font-weight: 400; }
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(.4em); animation: rise .9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero h1 .word:nth-child(1) { animation-delay: .05s; }
.hero h1 .word:nth-child(2) { animation-delay: .15s; }
.hero h1 .word:nth-child(3) { animation-delay: .25s; }
.hero h1 .word:nth-child(4) { animation-delay: .35s; }
.hero h1 .word:nth-child(5) { animation-delay: .45s; }
@keyframes rise { to { opacity: 1; transform: none; } }
.hero p { font-size: 19px; line-height: 1.5; color: var(--ink-soft); max-width: 560px; margin-top: 28px; }
.hero p strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 26px; border-radius: 999px; font-family: 'Ysabeau Office'; font-size: 16px; font-weight: 500; cursor: pointer; transition: all .25s; border: 1px solid transparent; }
.btn::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); }
.btn-primary { background: var(--green-deep); color: var(--bg); }
.btn-primary:hover { background: var(--green-deep-2); transform: translateY(-1px); }
.btn-primary.big { padding: 22px 34px; font-size: 19px; }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-ghost .arrow, .btn .arrow { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); display: inline-block; }
.btn-ghost::after { display: none; }

/* HERO STATS */
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.stat { background: var(--bg); padding: 36px 28px; display: flex; flex-direction: column; gap: 14px; min-height: 180px; justify-content: space-between; }
.stat .num { font-size: 72px; line-height: .9; font-weight: 400; letter-spacing: -.03em; color: var(--ink); }
.stat .num small { font-size: .55em; color: var(--green-deep); }
.stat .lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; line-height: 1.45; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.stat.highlight { background: var(--green-deep); color: var(--mint); }
.stat.highlight .num { color: #fff; }
.stat.highlight .lbl { color: var(--mint); }

/* SECTION HEAD */
.section-head { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: end; padding-bottom: 28px; border-bottom: 1px solid var(--rule); margin-bottom: 32px; }
.section-head .lbl { color: var(--green-deep); font-weight: 500; }
.section-head .right { color: var(--ink-soft); }
.section-head h2 { font-size: clamp(32px, 3.2vw, 50px); line-height: 1.05; font-weight: 400; letter-spacing: -.02em; max-width: 28ch; }
.section-head h2 em { color: var(--green-deep); font-style: italic; }

/* VACANCIES */
.vacancies { max-width: 1440px; margin: 0 auto; padding: 100px 40px; }
.vac-card { display: block; padding: 40px 44px; border-bottom: 1px solid var(--rule); transition: background .25s, padding-left .3s; position: relative; }
.vac-card:first-of-type { border-top: 1px solid var(--rule); }
.vac-card:hover { background: var(--mint-soft); padding-left: 56px; }
.vc-tag { color: var(--crimson); margin-bottom: 20px; }
.vc-title { font-size: clamp(36px, 4.4vw, 64px); line-height: 1.02; font-weight: 400; letter-spacing: -.02em; }
.vc-title em { color: var(--green-deep); font-style: italic; }
.vc-meta { display: grid; grid-template-columns: repeat(4, auto); gap: 56px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--rule-soft); justify-content: start; }
.vc-meta span { display: flex; flex-direction: column; gap: 6px; font-size: 16px; color: var(--ink); }
.vc-meta span b { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--ink-soft); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.vc-meta .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green-mid); margin-right: 4px; animation: pulse 1.6s ease-in-out infinite; vertical-align: middle; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.vc-foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: 28px; }
.vc-foot .salary { font-size: 28px; font-weight: 500; color: var(--green-deep); letter-spacing: -.01em; }
.arrow-link { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink); }
.arrow-link .arrow { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); display: inline-block; transition: transform .25s; }
.vac-card:hover .arrow-link .arrow { transform: rotate(45deg) translate(2px,-2px); }

/* WHY */
.why { max-width: 1440px; margin: 0 auto; padding: 0 40px 100px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.why-card { background: var(--bg); padding: 36px 30px; display: flex; flex-direction: column; gap: 14px; min-height: 240px; transition: background .25s; }
.why-card:hover { background: var(--mint-soft); }
.why-card .num { color: var(--green-deep); }
.why-card h4 { font-size: 22px; font-weight: 500; line-height: 1.2; letter-spacing: -.01em; margin-top: 6px; }
.why-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ABOUT */
.about { background: var(--bg-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.about-inner { max-width: 1440px; margin: 0 auto; padding: 100px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-l h2 { font-size: clamp(32px, 3.2vw, 48px); line-height: 1; font-weight: 700; letter-spacing: -.02em; margin-top: 12px; }
.about-l h2 sup { font-size: .65em; vertical-align: .55em; color: var(--ink); font-weight: 700; margin-left: .08em; }
.about-lede { font-size: 24px; line-height: 1.3; margin-top: 28px; color: var(--ink); max-width: 460px; }
.about-lede em { color: var(--green-deep); font-style: italic; }
.about-body { font-size: 16px; line-height: 1.55; color: var(--ink-soft); margin-top: 20px; max-width: 460px; }
.about-l .btn { margin-top: 32px; }
.about-r { display: flex; flex-direction: column; }
.about-row { display: flex; justify-content: space-between; padding: 22px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.about-row:first-child { border-top: 1px solid var(--rule); }
.about-row span { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; }
.about-row b { font-size: 19px; color: var(--ink); font-weight: 500; }

/* OPEN APP */
.open-app { max-width: 1440px; margin: 0 auto; padding: 100px 40px; text-align: center; }
.oa-inner { max-width: 760px; margin: 0 auto; }
.open-app .lbl { color: var(--green-deep); }
.open-app h2 { font-size: clamp(40px, 5vw, 80px); line-height: 1; font-weight: 400; letter-spacing: -.025em; margin-top: 18px; }
.open-app h2 em { color: var(--green-deep); font-style: italic; }
.open-app p { font-size: 18px; line-height: 1.55; color: var(--ink-soft); margin-top: 22px; }
.open-app p strong { color: var(--ink); font-weight: 500; }
.open-app .btn { margin-top: 36px; }
.oa-note { font-size: 14px; margin-top: 18px; }

/* FOOTER */
footer { background: var(--ink); color: var(--bg); padding: 0 0 32px; }
.fi { max-width: 1440px; margin: 0 auto; padding: 60px 40px 0; }
.ft { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ft p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.5; max-width: 320px; margin-top: 14px; }
.ft ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft ul a, .ft ul li { color: rgba(255,255,255,.85); font-size: 14.5px; }
.ft ul a:hover { color: var(--mint); }
.ft h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 18px; font-weight: 500; }
.footer-logo svg path { fill: #fff; }
.fb { margin-top: 32px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.45); }

/* JOB PAGE */
.job-breadcrumbs { max-width: 1440px; margin: 0 auto; padding: 28px 40px 0; }
.job-breadcrumbs a { color: var(--ink-soft); font-size: 13px; }
.job-breadcrumbs a:hover { color: var(--green-deep); }
.job-breadcrumbs .sep { color: var(--rule); margin: 0 10px; }
.job-breadcrumbs .here { color: var(--ink); }

.job-hero { max-width: 1440px; margin: 0 auto; padding: 36px 40px 64px; border-bottom: 1px solid var(--rule); }
.job-tag { color: var(--crimson); margin-bottom: 20px; }
.job-hero h1 { font-size: clamp(56px, 7vw, 120px); line-height: .92; font-weight: 400; letter-spacing: -.025em; max-width: 14ch; }
.job-hero h1 em { color: var(--green-deep); font-style: italic; font-weight: 400; }
.job-meta-row { display: grid; grid-template-columns: repeat(5, auto); gap: 64px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--rule); justify-content: start; }
.job-meta-row > div { display: flex; flex-direction: column; gap: 8px; }
.job-meta-row b { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--ink-soft); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.job-meta-row span { font-size: 19px; color: var(--ink); font-weight: 500; }
.job-meta-row span em { color: var(--green-deep); font-style: italic; font-weight: 500; }
.job-meta-row .salary { font-size: 22px; color: var(--green-deep); }

.job-cta-row { display: flex; gap: 16px; margin-top: 36px; align-items: center; flex-wrap: wrap; }
.job-cta-note { font-size: 13.5px; color: var(--ink-soft); max-width: 320px; }

/* JOB BODY */
.job-body { max-width: 1440px; margin: 0 auto; padding: 80px 40px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }
.job-content { display: flex; flex-direction: column; gap: 56px; }
.job-section h2 { font-size: clamp(28px, 3vw, 44px); line-height: 1.05; font-weight: 400; letter-spacing: -.02em; padding-bottom: 16px; border-bottom: 1px solid var(--rule); margin-bottom: 24px; }
.job-section h2 em { color: var(--green-deep); font-style: italic; }
.job-section p { font-size: 17px; line-height: 1.55; color: var(--ink); }
.job-section p + p { margin-top: 16px; }
.job-section ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.job-section ul li { padding-left: 32px; position: relative; font-size: 17px; line-height: 1.5; color: var(--ink); }
.job-section ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 16px; height: 1px; background: var(--green-deep); }
.job-section ul li strong { color: var(--green-deep); font-weight: 600; }
.job-callout { background: var(--mint-soft); border-left: 3px solid var(--green-deep); padding: 22px 28px; font-size: 16px; line-height: 1.55; color: var(--ink); }
.job-callout strong { color: var(--green-deep); font-weight: 600; }

.job-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.job-table th { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--ink-soft); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--rule); }
.job-table td { padding: 18px 16px; font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--rule-soft); }
.job-table tr:last-child td { border-bottom: none; }
.job-table td:first-child { font-weight: 500; }
.job-table td:last-child { color: var(--green-deep); font-weight: 500; font-size: 17px; white-space: nowrap; }

/* JOB SIDE */
.job-side { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 24px; }
.apply-card { background: var(--green-deep); color: var(--mint); padding: 36px 32px; }
.apply-card h3 { font-size: 28px; line-height: 1.1; color: #fff; font-weight: 400; letter-spacing: -.015em; }
.apply-card h3 em { color: var(--mint); font-style: italic; }
.apply-card p { font-size: 14.5px; line-height: 1.55; margin-top: 14px; color: rgba(195,222,206,.85); }
.apply-card .apply-btn { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; padding: 16px 24px; background: var(--mint); color: var(--green-deep); border-radius: 999px; font-weight: 500; font-size: 15px; transition: background .2s; }
.apply-card .apply-btn:hover { background: #fff; }
.apply-card .apply-btn::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); }
.apply-card .subj { display: block; font-size: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(195,222,206,.2); color: rgba(195,222,206,.7); font-family: 'JetBrains Mono', monospace; line-height: 1.5; letter-spacing: .03em; }
.apply-card .subj strong { color: var(--mint); }

.company-card { border: 1px solid var(--rule); padding: 28px; }
.company-card .lbl { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--green-deep); letter-spacing: .06em; text-transform: uppercase; }
.company-card h4 { font-size: 24px; font-weight: 500; margin-top: 14px; letter-spacing: -.01em; }
.company-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin-top: 10px; }
.company-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--green-deep); margin-top: 16px; font-size: 14px; }

/* JOB FOOT */
.job-foot { background: var(--bg-2); border-top: 1px solid var(--rule); }
.job-foot-inner { max-width: 1440px; margin: 0 auto; padding: 80px 40px; text-align: center; }
.job-foot h2 { font-size: clamp(40px, 4.6vw, 72px); line-height: 1; font-weight: 400; letter-spacing: -.025em; max-width: 14ch; margin: 0 auto; }
.job-foot h2 em { color: var(--green-deep); font-style: italic; }
.job-foot p { font-size: 18px; line-height: 1.5; color: var(--ink-soft); margin-top: 22px; max-width: 560px; margin-left: auto; margin-right: auto; }
.job-foot .actions { display: flex; gap: 14px; margin-top: 32px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero, .about-inner, .ft, .job-body { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .section-head .right { display: none; }
  .vc-meta, .job-meta-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .vac-card { padding: 28px; }
  .job-side { position: static; }
}
