  :root {
    --green: #005526;
    --green-deep: #003d1b;
    --green-ink: #002912;
    --yellow: #FFD100;
    --yellow-soft: #ffe066;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --charcoal-soft: #2a2a2a;
    --ash: #8a8a8a;
    --cream: #f6f5f0;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Archivo', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  ::selection { background: var(--yellow); color: var(--green-ink); }

  /* ========== NAV ========== */
  .nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1320px;
    z-index: 100;
    background: rgba(0, 41, 18, 0.55);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 209, 0, 0.15);
    border-radius: 18px;
    padding: 12px 18px 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.4);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(255, 209, 0, 0.35));
  }

  .nav-logo-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .nav-logo-text small {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--yellow);
    margin-top: 3px;
  }

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

  .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
    letter-spacing: -0.005em;
  }

  .nav-links a:hover {
    color: var(--yellow);
    background: rgba(255, 209, 0, 0.08);
  }

  .nav-cta {
    background: var(--yellow);
    color: var(--green-ink) !important;
    font-weight: 700 !important;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    margin-left: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -4px rgba(255, 209, 0, 0.5);
    background: var(--yellow) !important;
    color: var(--green-ink) !important;
  }

  .nav-mobile-toggle { display: none; }

  /* ========== DROPDOWN ========== */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
    letter-spacing: -0.005em;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
  }

  .nav-dropdown-toggle:hover {
    color: var(--yellow);
    background: rgba(255, 209, 0, 0.08);
  }

  .nav-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .nav-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: rgba(0, 20, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 209, 0, 0.15);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 300;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.18s ease;
    letter-spacing: -0.005em;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 209, 0, 0.1);
    color: var(--yellow);
  }

  .nav-dropdown-menu a .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.5;
    flex-shrink: 0;
    transition: opacity 0.18s ease;
  }

  .nav-dropdown-menu a:hover .dot { opacity: 1; }

  /* ========== HERO ========== */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 32px 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/Powerplant.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(0, 41, 18, 0.96) 0%, rgba(0, 61, 27, 0.82) 40%, rgba(0, 85, 38, 0.55) 100%),
      radial-gradient(ellipse at bottom left, rgba(255, 209, 0, 0.12), transparent 60%);
    z-index: 1;
  }

  .hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  }

  .hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 209, 0, 0.12);
    border: 1px solid rgba(255, 209, 0, 0.35);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: var(--yellow);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--yellow);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(44px, 6.5vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
    color: var(--white);
  }

  .hero-title .pill {
    position: relative;
    display: inline-block;
    padding: 6px 22px 8px 22px;
    background: var(--yellow);
    color: var(--green-ink);
    border-radius: 100px;
    margin: 6px 2px;
    box-shadow: 0 10px 30px -5px rgba(255, 209, 0, 0.35);
  }

  .hero-title .under {
    position: relative;
    white-space: nowrap;
  }

  .hero-title .under::after {
    display: none;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin-bottom: 40px;
    font-weight: 400;
  }

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

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: -0.005em;
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--green-ink);
    box-shadow: 0 10px 30px -8px rgba(255, 209, 0, 0.55);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -6px rgba(255, 209, 0, 0.7);
  }

  .btn-primary .arrow {
    transition: transform 0.25s ease;
  }

  .btn-primary:hover .arrow {
    transform: translateX(4px);
  }

  .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--yellow);
  }

  /* Hero stats card */
  .hero-stats {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .hero-stats::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 209, 0, 0.4), transparent 60%);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
  }

  .stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 8px;
  }

  .stat-value {
    font-weight: 900;
    font-size: 38px;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--white);
  }

  .stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
  }

  /* Marquee */
  .marquee {
    position: relative;
    background: var(--yellow);
    color: var(--green-ink);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--green-ink);
    border-bottom: 1px solid var(--green-ink);
  }

  .marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 28s linear infinite;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
  }

  .marquee-track span { display: inline-flex; align-items: center; gap: 60px; }

  .marquee-track .dot-sep {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--green-ink);
    border-radius: 50%;
  }

  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ========== SECTIONS ========== */
  section { position: relative; }

  .section-pad { padding: 120px 32px; }

  .container {
    max-width: 1320px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
  }

  .section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--yellow);
  }

  .section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 4.8vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--green-ink);
    max-width: 900px;
    margin-bottom: 24px;
  }

  .section-title em {
    font-style: normal;
    color: var(--green);
    position: relative;
    display: inline-block;
  }

  .section-title em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4%;
    width: 100%;
    height: 10px;
    background: var(--yellow);
    z-index: -1;
  }

  .section-intro {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 640px;
    line-height: 1.6;
  }

  /* ========== WHO WE ARE ========== */
  .about-section { padding: 120px 32px; background: var(--cream); }
  .about-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-img-wrap {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.22);
    position: relative;
  }
  .about-img-wrap img { width: 100%; display: block; object-fit: cover; height: 580px; }
  .about-img-badge {
    position: absolute; bottom: 28px; left: 28px;
    background: var(--green-ink); padding: 18px 22px; border-radius: 14px;
  }
  .about-img-badge strong { display: block; font-size: 30px; font-weight: 900; color: var(--yellow); line-height: 1; }
  .about-img-badge span { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
  .about-content { display: flex; flex-direction: column; gap: 24px; }
  .about-text { font-size: 17px; color: #4a4a4a; line-height: 1.72; }
  .about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
  .pillar {
    background: var(--white); border: 1.5px solid rgba(0,85,38,0.1);
    border-radius: 14px; padding: 20px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .pillar:hover { border-color: var(--yellow); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
  .pillar-icon {
    width: 40px; height: 40px; border-radius: 10px; background: var(--green-ink);
    color: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  }
  .pillar-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .pillar-title { font-weight: 700; font-size: 14px; color: var(--green-ink); margin-bottom: 4px; }
  .pillar-sub { font-size: 12px; color: #6b7280; line-height: 1.5; }

  /* ========== DIVISIONS (image-backed cards) ========== */
  .bento-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 56px;
  }

  .bento-head-right {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--cream);
    border: 1px solid rgba(0, 85, 38, 0.12);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--green);
    white-space: nowrap;
  }

  .bento-head-right .chip {
    padding: 4px 10px;
    background: var(--green-ink);
    color: var(--yellow);
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .bento-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    isolation: isolate;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Full-bleed background image */
  .bento-card .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .bento-card:hover .bg {
    transform: scale(1.06);
  }

  /* Gradient overlay — darker at bottom for text legibility, lighter at top */
  .bento-card .overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(0, 41, 18, 0.15) 0%,
        rgba(0, 41, 18, 0.35) 35%,
        rgba(0, 25, 10, 0.88) 78%,
        rgba(0, 20, 8, 0.96) 100%);
    z-index: -1;
    transition: background 0.5s ease;
  }

  .bento-card:hover .overlay {
    background:
      linear-gradient(180deg,
        rgba(0, 41, 18, 0.25) 0%,
        rgba(0, 41, 18, 0.5) 35%,
        rgba(0, 25, 10, 0.92) 78%,
        rgba(0, 20, 8, 0.98) 100%);
  }

  .bento-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 30px 60px -20px rgba(0, 0, 0, 0.5),
      0 0 0 2px var(--yellow);
  }

  /* Top-right icon tile */
  .bento-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.4);
    z-index: 2;
  }

  .bento-card:hover .bento-icon {
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 15px 40px -6px rgba(255, 209, 0, 0.5);
  }

  .bento-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--green-ink);
    transition: transform 0.4s ease;
  }

  .bento-card:hover .bento-icon svg {
    transform: scale(1.05);
  }

  /* Top-left index badge */
  .bento-card .index {
    position: absolute;
    top: 36px;
    left: 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--yellow);
    font-weight: 500;
    z-index: 2;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 209, 0, 0.25);
    border-radius: 100px;
  }

  /* Content block anchored to bottom */
  .bento-card .content {
    position: relative;
    padding: 32px;
    z-index: 1;
  }

  .bento-card .sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
  }

  .bento-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 32px;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.05;
    max-width: 90%;
  }

  .bento-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin-bottom: 26px;
    max-width: 42ch;
  }

  .bento-card .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .bento-card .arrow-link .circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .bento-card:hover .arrow-link .circle {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--green-ink);
    transform: rotate(-45deg);
  }

  .bento-card .arrow-link svg { transition: stroke 0.4s ease; }
  .bento-card:hover .arrow-link .circle svg { stroke: var(--green-ink); }

  /* ========== IMPACT STRIP ========== */
  .impact {
    background: var(--cream);
    padding: 100px 32px;
    border-top: 1px solid rgba(0, 85, 38, 0.08);
    border-bottom: 1px solid rgba(0, 85, 38, 0.08);
  }

  .impact-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(0, 85, 38, 0.1);
    border-radius: 20px;
    overflow: hidden;
  }

  .impact-cell {
    background: var(--cream);
    padding: 40px 32px;
    position: relative;
  }

  .impact-cell .num {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 68px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--green-ink);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .impact-cell .num sup {
    font-size: 28px;
    color: var(--green);
    font-weight: 700;
    top: -18px;
  }

  .impact-cell .lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
  }

  /* ========== CAREER SECTION ========== */
  .career {
    background: var(--yellow);
    color: var(--green-ink);
    padding: 140px 32px;
    position: relative;
    overflow: hidden;
  }

  .career::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 3px 3px, rgba(0, 41, 18, 0.08) 1.5px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
  }

  .career-inner {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .career-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1.5px solid var(--green-ink);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-ink);
    margin-bottom: 32px;
  }

  .career-label .dot {
    width: 8px;
    height: 8px;
    background: var(--green-ink);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  .career h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    color: var(--green-ink);
    margin-bottom: 32px;
  }

  .career h2 .stroke {
    -webkit-text-stroke: 2.5px var(--green-ink);
    color: transparent;
  }

  .career p {
    font-size: 19px;
    line-height: 1.55;
    color: var(--green-ink);
    opacity: 0.85;
    max-width: 540px;
    margin-bottom: 40px;
  }

  .career-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 32px;
    background: var(--green-ink);
    color: var(--yellow);
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: -0.005em;
    transition: all 0.3s ease;
  }

  .career-cta:hover {
    transform: translateY(-2px);
    background: var(--green);
    box-shadow: 0 20px 40px -10px rgba(0, 41, 18, 0.4);
  }

  .career-cta .icon {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .career-cta:hover .icon { transform: rotate(-45deg); }

  .career-jobs {
    background: rgba(0, 41, 18, 0.04);
    border: 1.5px solid rgba(0, 41, 18, 0.15);
    border-radius: 20px;
    padding: 8px;
  }

  .job {
    padding: 22px 24px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.25s ease;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 41, 18, 0.1);
  }

  .job:last-child { border-bottom: none; }

  .job:hover {
    background: var(--green-ink);
    color: var(--yellow);
  }

  .job:hover .job-meta { color: rgba(255, 209, 0, 0.7); }
  .job:hover .job-arrow { color: var(--yellow); transform: translateX(4px); }

  .job-text h4 {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }

  .job-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(0, 41, 18, 0.6);
    text-transform: uppercase;
  }

  .job-arrow {
    font-size: 22px;
    color: var(--green-ink);
    transition: all 0.25s ease;
  }

  /* ========== WHY CHOOSE US ========== */
  .why {
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .why::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 209, 0, 0.08), transparent 70%);
    pointer-events: none;
  }

  .why-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }

  .why-head p.section-intro {
    padding-bottom: 10px;
  }

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

  .why-card {
    position: relative;
    border-radius: 24px;
    background: var(--cream);
    border: 1.5px solid rgba(0, 85, 38, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
  }

  .why-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .why-card:nth-child(1).in-view { transition-delay: 0s, 0s, 0s, 0s; }
  .why-card:nth-child(2).in-view { transition-delay: 0.1s, 0.1s, 0s, 0s; }
  .why-card:nth-child(3).in-view { transition-delay: 0.2s, 0.2s, 0s, 0s; }
  .why-card:nth-child(4).in-view { transition-delay: 0.3s, 0.3s, 0s, 0s; }

  .why-card-inner {
    padding: 40px;
    position: relative;
    z-index: 2;
  }

  .why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 209, 0, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(0, 85, 38, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
  }

  .why-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 85, 38, 0.08) 1.5px, transparent 0);
    background-size: 14px 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
  }

  .why-card:hover {
    border-color: var(--yellow);
    box-shadow:
      0 30px 60px -20px rgba(0, 85, 38, 0.2),
      0 0 0 1px rgba(255, 209, 0, 0.6);
    transform: translateY(-6px) !important;
  }

  .why-card:hover::before { opacity: 1; }
  .why-card:hover::after { opacity: 1; }

  .why-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .why-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.15em;
    padding: 6px 12px;
    border: 1.5px solid rgba(0, 85, 38, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
  }

  .why-card:hover .why-num {
    background: var(--green-ink);
    color: var(--yellow);
    border-color: var(--green-ink);
  }

  .why-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--green-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
  }

  .why-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    border: 2px dashed var(--yellow);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
    animation: spin 12s linear infinite;
    animation-play-state: paused;
  }

  .why-card:hover .why-icon::before {
    opacity: 0.5;
    animation-play-state: running;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .why-card:hover .why-icon {
    background: var(--yellow);
    color: var(--green-ink);
    transform: rotate(-6deg) scale(1.05);
  }

  .why-icon svg {
    width: 34px;
    height: 34px;
    transition: transform 0.5s ease;
  }

  .why-card:hover .why-icon svg {
    transform: scale(1.08);
  }

  .why-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 2.3vw, 32px);
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--green-ink);
    margin-bottom: 18px;
  }

  .why-desc {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 44ch;
  }

  .why-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 85, 38, 0.12);
  }

  .why-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    padding: 6px 12px;
    background: rgba(0, 85, 38, 0.06);
    border-radius: 100px;
  }

  .why-card:hover .why-tag {
    background: var(--yellow);
    color: var(--green-ink);
  }

  .why-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--green-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--green-ink);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .why-card:hover .why-arrow {
    background: var(--green-ink);
    color: var(--yellow);
    border-color: var(--green-ink);
    transform: rotate(-45deg);
  }

  /* ========== FOOTER ========== */
  footer {
    background: var(--green-ink);
    color: var(--white);
    padding: 100px 32px 32px;
    position: relative;
    overflow: hidden;
  }

  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    opacity: 0.4;
  }

  .footer-top {
    max-width: 1320px;
    margin: 0 auto 64px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
  }

  .footer-brand .logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .footer-brand .logo-row img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: contain;
  }

  .footer-brand .logo-row .text {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .footer-brand .logo-row .text small {
    display: block;
    font-size: 10px;
    color: var(--yellow);
    letter-spacing: 0.22em;
    margin-top: 4px;
    font-weight: 600;
  }

  .footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;
    max-width: 360px;
    margin-bottom: 28px;
  }

  .socials {
    display: flex;
    gap: 10px;
  }

  .social {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .social:hover {
    background: var(--yellow);
    color: var(--green-ink);
    border-color: var(--yellow);
    transform: translateY(-2px);
  }

  .social svg { width: 18px; height: 18px; }

  .footer-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
  }

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

  .footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
  }

  .footer-bottom .legal { display: flex; gap: 24px; }
  .footer-bottom .legal a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
  .footer-bottom .legal a:hover { color: var(--yellow); }

  .wordmark {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(80px, 18vw, 240px);
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 209, 0, 0.25);
    text-align: center;
    margin-top: 40px;
    margin-bottom: -30px;
    pointer-events: none;
    user-select: none;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .nav-mobile-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--yellow);
      border: none;
      cursor: pointer;
    }
    .hero { padding: 130px 20px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .section-pad { padding: 80px 20px; }
    .career { padding: 100px 20px; }
    .bento-head { grid-template-columns: 1fr; gap: 24px; }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento-card { min-height: 420px; }
    .bento-card h3 { font-size: 26px; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .career-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-img-wrap img { height: 420px; }
    .approach-grid { grid-template-columns: 1fr; }
    .why-head { grid-template-columns: 1fr; gap: 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card-inner { padding: 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 600px) {
    .nav { padding: 10px 12px 10px 16px; }
    .nav-logo-text { font-size: 15px; }
    .nav-logo-text small { font-size: 8px; }
    .hero-title { font-size: 44px; }
    .hero-stats { grid-template-columns: 1fr; padding: 24px; }
    .bento { grid-template-columns: 1fr; }
    .bento-card.wide { grid-column: span 1; min-height: 300px; }
    .impact-grid { grid-template-columns: 1fr; }
    .impact-cell .num { font-size: 52px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .job { flex-wrap: wrap; }
  }

  /* Subtle entry animation */
  .fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s ease-out forwards; }
  .fade-up.d1 { animation-delay: 0.1s; }
  .fade-up.d2 { animation-delay: 0.2s; }
  .fade-up.d3 { animation-delay: 0.3s; }
  .fade-up.d4 { animation-delay: 0.4s; }
  .fade-up.d5 { animation-delay: 0.5s; }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

/* back-to-top */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; border-radius: 12px; border: none;
  background: #005526; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(0,85,38,0.4);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.2s ease;
  pointer-events: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); filter: brightness(1.15); }
