:root {
      --ink: #1c1b1b;
      --muted: #404a3a;
      --line: #c0cab5;
      --paper: #fcf8f8;
      --soft: #f6f3f2;
      --soft-2: #f0edec;
      --soft-3: #e5e2e1;
      --white: #ffffff;
      --primary: #266d00;
      --primary-2: #6ac043;
      --primary-dark: #062100;
      --tertiary: #6ebe6a;
      --tertiary-text: #004b0f;
      --secondary-soft: #d9defd;
      --secondary-text: #5c617b;
      --night: #12182e;
      --deep: #0a0e1a;
      --radius: 8px;
      --shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Manrope, Inter, Segoe UI, Arial, sans-serif;
      line-height: 1.6;
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

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

    .nav {
      position: fixed;
      z-index: 50;
      inset: 0 0 auto;
      background: transparent !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
    }

    .nav-inner {
      width: min(100% - 48px, 1200px);
      min-height: 80px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      width: auto;
      height: 46px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 38px;
    }

    .nav-links a {
      color: var(--white);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: color 220ms ease;
    }

    .nav-links a:hover,
    .nav-links .active {
      color: var(--primary-2);
    }

    .nav-links .active {
      border-bottom: 2px solid var(--primary-2);
      padding-bottom: 4px;
    }

    .mobile-menu {
      display: none;
      position: relative;
    }

    .mobile-menu summary {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: var(--radius);
      color: var(--white);
      cursor: pointer;
      list-style: none;
      position: relative;
      z-index: 90;
    }

    .mobile-menu summary::-webkit-details-marker {
      display: none;
    }

    .menu-lines,
    .menu-lines::before,
    .menu-lines::after {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .menu-lines {
      position: relative;
    }

    .menu-lines::before,
    .menu-lines::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .menu-lines::before {
      top: -7px;
    }

    .menu-lines::after {
      top: 7px;
    }

    .mobile-panel {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 80;
      width: min(84vw, 340px);
      height: 100vh;
      display: grid;
      align-content: start;
      gap: 8px;
      padding: 88px 18px 24px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 0;
      background: rgba(18, 24, 46, 0.98);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }

    .mobile-menu[open]::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 70;
      background: rgba(0, 0, 0, 0.42);
      backdrop-filter: blur(3px);
    }

    .mobile-panel a {
      color: var(--white);
      padding: 10px 12px;
      border-radius: var(--radius);
      font-weight: 800;
    }

    .mobile-panel a:hover,
    .mobile-panel .active {
      color: var(--primary-2);
      background: rgba(255, 255, 255, 0.06);
    }

    .mobile-panel .mobile-cta {
      margin-top: 6px;
      color: var(--white);
      background: var(--primary-2);
      text-align: center;
    }

    .nav-cta {
      color: var(--white);
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 24px;
      border-radius: var(--radius);
      font-weight: 900;
      transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
      white-space: nowrap;
    }

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

    .btn-primary {
      background: var(--primary-2);
      color: var(--primary-dark);
    }

    .btn-dark {
      background: var(--primary);
      color: var(--white);
    }

    .btn-glass {
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.24);
      backdrop-filter: blur(12px);
    }

    main {
      padding-top: 0 !important;
    }

    .hero {
      position: relative;
      min-height: 870px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      isolation: isolate;
      padding: 120px 0 70px;
      color: var(--white);
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(18, 24, 46, 0.92), rgba(18, 24, 46, 0.62), rgba(18, 24, 46, 0.08));
    }

    .hero-copy {
      max-width: 690px;
    }

    .pill {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 7px 15px;
      border-radius: 999px;
      background: var(--tertiary);
      color: var(--tertiary-text);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .hero h1 {
      margin: 0 0 28px;
      font-size: clamp(3.4rem, 7vw, 5.4rem);
      line-height: 1.08;
      letter-spacing: -0.055em;
    }

    .hero h1 span {
      color: var(--primary-2);
    }

    .hero p {
      margin: 0 0 36px;
      color: #e2e8f0;
      font-size: 1.2rem;
      font-weight: 400;
    }

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

    section {
      padding: 70px 0;
    }

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

    h2 {
      margin-bottom: 18px;
      font-size: clamp(2.35rem, 5vw, 3rem);
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .culture-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 24px;
    }

    .culture-card {
      position: relative;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      border-radius: var(--radius);
      padding: 42px;
      background: var(--soft);
    }

    .culture-card.main {
      grid-column: span 8;
    }

    .culture-card.small {
      grid-column: span 4;
      justify-content: space-between;
      min-height: 260px;
      padding: 32px;
    }

    .culture-card.wide {
      grid-column: span 8;
      min-height: 280px;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 32px;
      background: var(--soft-3);
    }

    .culture-card.green {
      color: var(--tertiary-text);
      background: var(--tertiary);
    }

    .culture-card.blue {
      color: var(--secondary-text);
      background: var(--secondary-soft);
    }

    .culture-card h2,
    .culture-card h3 {
      margin-bottom: 12px;
    }

    .culture-card p {
      max-width: 560px;
      color: var(--muted);
      margin-bottom: 0;
    }

    .culture-card.green p,
    .culture-card.blue p {
      color: inherit;
      opacity: 0.88;
    }

    .big-symbol {
      position: absolute;
      top: 20px;
      right: 28px;
      color: rgba(28, 27, 27, 0.09);
      font-size: 8rem;
      font-weight: 900;
      line-height: 1;
      user-select: none;
    }

    .benefit-icon {
      font-size: 2.1rem;
      font-weight: 900;
    }

    .culture-image {
      width: min(100%, 220px);
      aspect-ratio: 1 / 1;
      border-radius: var(--radius);
      overflow: hidden;
      flex: 0 0 auto;
    }

    .jobs {
      background: var(--soft);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 56px;
    }

    .section-head p {
      max-width: 620px;
      margin-bottom: 0;
      color: var(--muted);
    }

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

    .tag {
      padding: 8px 14px;
      border: 1px solid rgba(192, 202, 181, 0.45);
      border-radius: 999px;
      background: var(--white);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .job-list {
      display: grid;
      gap: 22px;
    }

    .job-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      border-radius: var(--radius);
      background: var(--white);
      padding: 30px;
      transition: box-shadow 220ms ease, transform 220ms ease;
    }

    .job-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.07);
    }

    .job-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .dept {
      color: var(--primary);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--line);
    }

    .type {
      color: var(--muted);
    }

    .job-card h3 {
      margin-bottom: 8px;
      font-size: 1.55rem;
      line-height: 1.2;
    }

    .location {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 0;
      color: var(--muted);
    }

    .pin {
      width: 11px;
      height: 11px;
      border: 3px solid var(--muted);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      flex: 0 0 auto;
    }

    .job-side {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .salary {
      text-align: right;
      white-space: nowrap;
    }

    .salary span {
      display: block;
      color: var(--muted);
      font-size: 0.86rem;
    }

    .salary strong {
      display: block;
      font-size: 1rem;
    }

    .application {
      max-width: 900px;
      margin: 0 auto;
    }

    .text-center {
      text-align: center;
    }

    .text-center p {
      color: var(--muted);
    }

    .application form {
      margin-top: 48px;
      padding: 48px;
      border: 1px solid rgba(192, 202, 181, 0.35);
      border-radius: var(--radius);
      background: var(--soft);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    }

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

    .field {
      display: grid;
      gap: 8px;
      margin-bottom: 28px;
    }

    label {
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 0;
      border-bottom: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
      color: var(--ink);
      padding: 12px 0;
      outline: none;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-bottom-color: var(--primary);
    }

    .form-submit {
      display: flex;
      justify-content: center;
    }

    .footer {
      background: var(--deep);
      color: var(--white);
      padding: 86px 0 42px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
    }

    .footer h4 {
      margin-bottom: 18px;
      color: var(--white);
    }

    .footer p,
    .footer a {
      color: #cbd5e1;
    }

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

    .footer a {
      transition: color 220ms ease, transform 220ms ease;
    }

    .footer a:hover {
      color: var(--primary-2);
      transform: translateX(4px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      margin-top: 68px;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: #64748b;
      font-size: 0.82rem;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .container,
      .nav-inner {
        width: min(100% - 32px, 1200px);
      }

      .nav-inner {
        min-height: 70px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .nav .btn {
        min-height: 40px;
        padding: 10px 14px;
        font-size: 0.86rem;
      }

      .hero {
        min-height: 600px;
        padding-top: 100px;
      }

      section {
        padding: 60px 0;
      }

      .culture-card.main,
      .culture-card.small,
      .culture-card.wide {
        grid-column: 1 / -1;
      }

      .job-card,
      .section-head,
      .job-side,
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .salary {
        display: none;
      }

      .job-side,
      .job-side .btn {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .hero {
        min-height: 520px;
        padding-top: 88px;
      }

      .nav-inner {
        min-height: 64px;
      }

      section {
        padding: 48px 0;
      }

      .hero-actions,
      .hero-actions .btn {
        width: 100%;
      }

      .culture-card,
      .culture-card.small,
      .culture-card.wide {
        min-height: auto;
        padding: 28px;
      }

      .culture-card.wide {
        flex-direction: column;
        align-items: flex-start;
      }

      .culture-image {
        width: 100%;
      }

      .form-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .application form {
        padding: 28px;
      }

      .logo img {
        height: 36px;
      }
    }