    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #16235c; --navy-dark: #0b1230; --orange: #d97e25;
      --orange-light: #f2a64e; --white: #ffffff; --light: #f6f4ee;
      --gray: #5b6173; --text: #1c2336; --line: #e3ded2;
      --display: 'Archivo', sans-serif; --body: 'Inter', sans-serif; --mono: 'JetBrains Mono', monospace;
      --shadow-sm: 0 1px 3px rgba(11,18,48,0.06), 0 1px 2px rgba(11,18,48,0.07);
      --shadow-md: 0 8px 28px rgba(11,18,48,0.10);
      --shadow-lg: 0 22px 60px rgba(11,18,48,0.16);
      --ease: cubic-bezier(.22,.61,.36,1);
    }
    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    }
    body { font-family: var(--body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    ::selection { background: var(--orange); color: white; }
    a { color: inherit; }
    img { max-width: 100%; }
    button { font: inherit; }
    :focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

    .skip-link { position: absolute; top: -100px; left: 1rem; background: var(--navy); color: white; padding: 0.75rem 1.25rem; border-radius: 4px; z-index: 999; font-weight: 600; font-size: 0.9rem; transition: top 0.2s ease; }
    .skip-link:focus { top: 1rem; }

    .back-to-top { position: fixed; bottom: 1.75rem; right: 1.75rem; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: white; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease; z-index: 150; }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--orange); }
    .back-to-top svg { width: 20px; height: 20px; }

    .legal-content h2 { font-family: var(--display); color: var(--navy); font-size: 1.05rem; font-weight: 700; margin: 2.2rem 0 0.75rem; }
    .legal-content p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 0.9rem; }
    .legal-content ul { margin: 0 0 1rem 1.3rem; color: var(--gray); font-size: 0.92rem; line-height: 1.7; }
    .legal-content li { margin-bottom: 0.4rem; }
    .legal-content a { color: var(--orange); }
    .legal-content strong { color: var(--navy); }

    /* ICONS */
    .icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.16em; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
    .icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(11,18,48,0.96); backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 72px; border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: background .25s var(--ease);
    }
    .nav-logo img { height: 44px; display: block; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.86rem; font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s; position: relative; padding: 0.25rem 0; }
    .nav-links a::after { content:''; position:absolute; left:0; right:100%; bottom:-2px; height:1.5px; background:var(--orange); transition: right .25s var(--ease); }
    .nav-links a:hover { color: white; }
    .nav-links a:hover::after { right: 0; }
    .nav-cta { background: var(--orange); color: white; padding: 0.6rem 1.35rem; border-radius: 3px; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: background 0.2s, transform .2s var(--ease); white-space: nowrap; }
    .nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .nav-account { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; font-weight: 600; padding: 0.55rem 1rem; border: 1px solid rgba(255,255,255,0.22); border-radius: 3px; transition: border-color 0.2s, color 0.2s, background .2s; white-space: nowrap; }
    .nav-account:hover { border-color: var(--orange); color: var(--orange-light); background: rgba(255,255,255,0.03); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }

    /* HERO */
    .hero {
      min-height: 100vh;
      background:
        radial-gradient(ellipse 1100px 700px at 88% 12%, rgba(217,126,37,0.16), transparent 60%),
        linear-gradient(160deg, rgba(11,18,48,0.90) 0%, rgba(20,32,90,0.85) 58%, rgba(27,44,110,0.88) 100%),
        url('https://images.pexels.com/photos/29886913/pexels-photo-29886913.jpeg?auto=compress&cs=tinysrgb&w=1920') center 38%/cover no-repeat;
      display: flex; align-items: center; gap: 2.5rem; padding: 110px 5% 60px;
      position: relative; overflow: hidden;
    }

    /* PAGE BANNER — real photography intro strip used on secondary pages */
    .page-banner { position: relative; height: 300px; overflow: hidden; }
    .page-banner img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.94) contrast(1.02); }
    .page-banner::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,18,48,0.35) 0%, rgba(11,18,48,0.10) 55%, rgba(11,18,48,0.55) 100%); }
    .hero::before {
      content: ''; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
      background-size: 56px 56px;
      -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 78%);
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 78%);
    }
    .hero-content { position: relative; z-index: 1; max-width: 600px; flex: 1 1 480px; }
    .hero-eyebrow { color: var(--orange-light); font-family: var(--mono); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.6rem; }
    .hero-eyebrow::before { content:''; width: 22px; height: 1px; background: var(--orange-light); display: inline-block; }
    .hero h1 { font-family: var(--display); font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -0.01em; color: white; line-height: 1.08; margin-bottom: 0.9rem; }
    .hero h1 span { color: var(--orange-light); }
    .hero-slogan { color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.03em; margin-bottom: 1.6rem; }
    .hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 520px; margin-bottom: 2.6rem; line-height: 1.75; }
    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary { background: var(--orange); color: white; padding: 0.9rem 1.9rem; border-radius: 3px; text-decoration: none; font-weight: 600; font-size: 0.92rem; transition: background 0.2s, transform 0.18s var(--ease), box-shadow .2s; display: inline-block; border: none; cursor: pointer; font-family: var(--body); box-shadow: var(--shadow-sm); }
    .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-outline { border: 1px solid rgba(255,255,255,0.35); color: white; padding: 0.9rem 1.9rem; border-radius: 3px; text-decoration: none; font-weight: 600; font-size: 0.92rem; transition: border-color 0.2s, transform 0.18s var(--ease), background .2s; display: inline-block; background: transparent; }
    .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.06); transform: translateY(-2px); }

    /* HERO VISUAL — single-line diagram signature */
    .hero-visual { position: relative; z-index: 1; flex: 1 1 360px; max-width: 460px; display: flex; align-items: center; justify-content: center; }
    .hero-visual svg { width: 100%; height: auto; overflow: visible; }
    .hv-line { stroke: rgba(255,255,255,0.22); stroke-width: 1.4; fill: none; }
    .hv-line-hot { stroke: var(--orange-light); stroke-width: 1.6; fill: none; }
    .hv-node { fill: #0b1230; stroke: rgba(255,255,255,0.4); stroke-width: 1.4; }
    .hv-node-hot { fill: #0b1230; stroke: var(--orange-light); stroke-width: 1.6; }
    .hv-label { font-family: var(--mono); font-size: 9.5px; fill: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
    .hv-label-hot { font-family: var(--mono); font-size: 10px; fill: var(--orange-light); letter-spacing: 0.04em; font-weight: 500; }
    .hv-pulse { stroke-dasharray: 3 9; animation: hvflow 2.6s linear infinite; }
    @media (prefers-reduced-motion: reduce) { .hv-pulse { animation: none; } }
    @keyframes hvflow { to { stroke-dashoffset: -120; } }

    /* CREDENTIALS / VOLTAGE BAND */
    .voltage-band {
      background: rgba(255,255,255,0.04); border-top: 1px solid rgba(255,255,255,0.09);
      padding: 1.4rem 5%; display: flex; gap: 2rem; flex-wrap: wrap; align-items: center;
      position: relative; z-index: 1;
    }
    .voltage-band-label { color: rgba(255,255,255,0.4); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
    .voltage-pills { display: flex; gap: 0.7rem; flex-wrap: wrap; }
    .vpill { background: rgba(217,126,37,0.12); border: 1px solid rgba(217,126,37,0.4); color: var(--orange-light); font-family: var(--mono); font-weight: 500; font-size: 0.8rem; padding: 0.35rem 0.85rem; border-radius: 2px; white-space: nowrap; letter-spacing: 0.02em; }
    .vpill.dim { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.45); }

    /* SECTIONS */
    section { padding: 96px 5%; border-top: 1px solid var(--line); }
    .hero + .voltage-band + section { border-top: none; }
    .section-label { color: var(--orange); font-family: var(--mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.6rem; }
    .section-label::before { content:''; width: 16px; height: 1px; background: var(--orange); display: inline-block; }
    .section-title { font-family: var(--display); font-size: clamp(1.6rem, 2.7vw, 2.3rem); font-weight: 700; letter-spacing: -0.01em; color: var(--navy); line-height: 1.18; margin-bottom: 1.1rem; }
    .section-sub { color: var(--gray); max-width: 600px; font-size: 1.01rem; line-height: 1.75; }

    /* ABOUT */
    #about { background: var(--light); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
    .about-text p { color: var(--gray); margin-bottom: 1.1rem; line-height: 1.85; }
    .about-text h3 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.05rem; margin: 1.6rem 0 0.75rem; }
    .about-highlights { display: flex; flex-direction: column; gap: 1rem; }
    .highlight { display: flex; align-items: flex-start; gap: 1.1rem; background: white; padding: 1.25rem 1.5rem; border-radius: 4px; border: 1px solid var(--line); border-left: 2px solid var(--orange); box-shadow: var(--shadow-sm); transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
    .highlight:hover { box-shadow: var(--shadow-md); transform: translateX(2px); }
    .highlight-icon { font-size: 1.3rem; flex-shrink: 0; color: var(--orange); width: 2.2rem; height: 2.2rem; display: flex; align-items: center; justify-content: center; background: var(--light); border-radius: 50%; }
    .highlight h4 { font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; font-size: 0.92rem; font-family: var(--display); }
    .highlight p { color: var(--gray); font-size: 0.85rem; margin: 0; line-height: 1.6; }

    .about-image { width: 100%; border-radius: 5px; overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 2rem; position: relative; }
    .about-image::after { content:''; position:absolute; inset:0; background: linear-gradient(160deg, rgba(11,18,48,0.45), transparent 60%); }
    .about-image img { width: 100%; height: 280px; object-fit: cover; display: block; filter: saturate(0.92) contrast(1.03); }

    /* VISION MISSION VALUES */
    #vision { background: white; }
    .vmv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
    .vmv-card { background: var(--light); border-radius: 5px; padding: 2.25rem; border-top: 2px solid var(--orange); transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
    .vmv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .vmv-icon { font-size: 1.6rem; margin-bottom: 1.1rem; color: var(--orange); width: 2.6rem; height: 2.6rem; display: flex; align-items: center; justify-content: center; background: white; border-radius: 50%; box-shadow: var(--shadow-sm); }
    .vmv-card h3 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.1rem; margin-bottom: 0.75rem; }
    .vmv-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.8; }
    .values-heading { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.15rem; margin: 3.5rem 0 1.5rem; }
    .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
    .value-item { padding: 1.5rem; border-left: 2px solid var(--orange); background: var(--light); border-radius: 0 4px 4px 0; transition: background .2s; }
    .value-item:hover { background: #f0ece1; }
    .value-item h4 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 0.92rem; margin-bottom: 0.5rem; }
    .value-item p { color: var(--gray); font-size: 0.84rem; line-height: 1.7; }

    /* VOLTAGE CAPABILITY */
    #voltage { background: white; }
    .voltage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
    .voltage-card { border-radius: 5px; padding: 2rem 1.5rem; text-align: left; border: 1px solid var(--line); transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color .2s; position: relative; overflow: hidden; }
    .voltage-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width 0.3s var(--ease); }
    .voltage-card:hover::before { width: 100%; }
    .voltage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
    .voltage-card.primary { background: var(--navy); border-color: var(--navy); }
    .voltage-card.primary .v-kv { color: var(--orange-light); }
    .voltage-card.primary .v-label, .voltage-card.primary .v-desc { color: rgba(255,255,255,0.72); }
    .voltage-card.primary .v-title { color: white; }
    .v-kv { font-family: var(--display); font-size: 2.1rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
    .v-label { font-family: var(--mono); font-size: 0.68rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.85rem; }
    .v-title { font-weight: 700; color: var(--navy); font-size: 0.94rem; margin-bottom: 0.5rem; font-family: var(--display); }
    .v-desc { color: var(--gray); font-size: 0.82rem; line-height: 1.65; }

    /* SERVICES */
    #services { background: var(--light); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
    .service-card { border: 1px solid var(--line); border-radius: 5px; padding: 2rem; background: white; transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease); position: relative; overflow: hidden; }
    .service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width 0.3s var(--ease); }
    .service-card:hover::before { width: 100%; }
    .service-card:hover .service-img-wrap img { transform: scale(1.06); }
    .service-img-wrap { margin: -2rem -2rem 0 -2rem; height: 168px; overflow: hidden; position: relative; }
    .service-img-wrap::after { content:''; position:absolute; inset:0; background: linear-gradient(195deg, rgba(11,18,48,0.32), transparent 55%); }
    .service-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); filter: saturate(0.94); }
    .service-icon { position: absolute; bottom: -22px; left: 1.5rem; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--orange-light); box-shadow: 0 4px 14px rgba(11,18,48,0.4); border: 3px solid white; z-index: 1; }
    .service-card h3 { font-family: var(--display); font-weight: 700; color: var(--navy); margin: 1.85rem 0 0.75rem; font-size: 1.02rem; line-height: 1.35; }
    .service-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }
    .service-activities { list-style: none; margin: 0.9rem 0 0; padding: 0; border-top: 1px solid var(--line); padding-top: 0.85rem; }
    .service-activities li { color: var(--gray); font-size: 0.83rem; line-height: 1.55; padding-left: 1.1rem; position: relative; margin-bottom: 0.4rem; }
    .service-activities li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

    /* WHY */
    #why {
      background: linear-gradient(165deg, #0b1230 0%, #16235c 100%);
      position: relative; overflow: hidden; border-top-color: transparent;
    }
    #why::before {
      content:''; position:absolute; inset:0; opacity:0.4; pointer-events:none;
      background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 64px 64px;
    }
    #why .section-title { color: white; }
    #why .section-label { color: var(--orange-light); }
    #why .section-label::before { background: var(--orange-light); }
    #why .section-sub { color: rgba(255,255,255,0.6); }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; margin-top: 3rem; position: relative; z-index: 1; }
    .why-item { padding: 1.75rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 5px; background: rgba(255,255,255,0.03); transition: background .2s, border-color .2s; }
    .why-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(217,126,37,0.4); }
    .why-item .icon { font-size: 1.6rem; margin-bottom: 1.1rem; color: var(--orange-light); display: block; }
    .why-item h4 { color: white; font-weight: 700; margin-bottom: 0.6rem; font-size: 0.98rem; font-family: var(--display); }
    .why-item p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.7; }

    /* GET QUOTE */
    #quote { background: white; }
    .quote-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; margin-top: 3rem; align-items: start; }
    .quote-info h3 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.05rem; margin-bottom: 0.75rem; }
    .quote-info p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.75rem; }
    .quote-steps { display: flex; flex-direction: column; gap: 1.4rem; }
    .qstep { display: flex; gap: 1.1rem; align-items: flex-start; }
    .qstep-num { width: 30px; height: 30px; background: var(--navy); color: var(--orange-light); border-radius: 50%; font-weight: 700; font-family: var(--mono); font-size: 0.8rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .qstep div h4 { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.2rem; font-family: var(--display); }
    .qstep div p { color: var(--gray); font-size: 0.85rem; margin: 0; }
    .quote-form { display: flex; flex-direction: column; gap: 1.1rem; background: var(--light); padding: 2.25rem; border-radius: 6px; border: 1px solid var(--line); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.45rem; }
    .form-group label { font-size: 0.76rem; font-weight: 600; color: var(--navy); font-family: var(--mono); letter-spacing: 0.03em; text-transform: uppercase; }
    .form-group input, .form-group textarea, .form-group select { border: 1px solid #d3d0c4; border-radius: 3px; padding: 0.75rem 1rem; font-size: 0.92rem; font-family: var(--body); outline: none; transition: border-color 0.2s, box-shadow .2s; background: white; color: var(--text); }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(217,126,37,0.14); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit { background: var(--navy); color: white; border: none; padding: 0.95rem 2rem; border-radius: 3px; font-weight: 700; font-size: 0.92rem; cursor: pointer; transition: background 0.2s, transform .18s var(--ease); font-family: var(--body); }
    .form-submit:hover { background: var(--orange); transform: translateY(-1px); }
    .form-submit:disabled { opacity: 0.65; cursor: default; transform: none; }
    .hp-field { position: absolute; left: -9999px; top: -9999px; }
    .form-message { display: none; margin-top: 1rem; padding: 0.85rem 1.1rem; border-radius: 4px; font-size: 0.86rem; font-weight: 600; line-height: 1.5; background: rgba(34,150,90,0.1); border: 1px solid rgba(34,150,90,0.35); color: #1c6b45; }
    .form-message.is-visible { display: block; }
    .form-message.is-error { background: rgba(217,90,37,0.1); border-color: rgba(217,90,37,0.35); color: #a3441b; }
    .hiring-closed-notice { background: var(--light); border: 1px solid var(--line); border-left: 3px solid var(--navy); border-radius: 4px; padding: 1.1rem 1.4rem; }
    .hiring-closed-notice strong { display: block; color: var(--navy); font-family: var(--display); font-size: 0.98rem; margin-bottom: 0.4rem; }
    .hiring-closed-notice p { color: var(--gray); font-size: 0.86rem; line-height: 1.55; margin: 0; }
    .apply-deadline-note { font-family: var(--mono); font-size: 0.76rem; font-weight: 600; color: var(--orange); background: rgba(217,126,37,0.1); border: 1px solid rgba(217,126,37,0.3); padding: 0.6rem 0.9rem; border-radius: 4px; margin-bottom: 1rem; }

    /* ===== PORTAL ===== */
    #portal { max-width: 900px; }
    .portal-utility-bar { display: flex; flex-wrap: wrap; gap: 0; background: var(--navy); border-radius: 6px; margin-bottom: 2.2rem; overflow: hidden; }
    .portal-utility-bar a { flex: 1 1 150px; text-align: center; color: rgba(255,255,255,0.85); text-decoration: none; font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.04em; padding: 0.95rem 0.8rem; border-right: 1px solid rgba(255,255,255,0.12); transition: background .2s, color .2s; }
    .portal-utility-bar a:last-child { border-right: none; }
    .portal-utility-bar a:hover { background: rgba(255,255,255,0.08); color: var(--orange-light); }
    .portal-guard { text-align: center; padding: 4rem 1rem; border: 1px dashed var(--line); border-radius: 6px; }
    .portal-guard-icon { width: 3.4rem; height: 3.4rem; border-radius: 50%; background: var(--light); color: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.3rem; }
    .portal-guard h3 { color: var(--navy); font-family: var(--display); font-weight: 700; margin-bottom: 0.6rem; }
    .portal-guard p { color: var(--gray); margin-bottom: 1.5rem; font-size: 0.95rem; }
    .portal-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
    .portal-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--orange-light); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 1.5rem; flex-shrink: 0; }
    .portal-header h2 { color: var(--navy); font-family: var(--display); font-weight: 700; font-size: 1.3rem; margin-bottom: 0.2rem; }
    .portal-header p { color: var(--gray); font-size: 0.86rem; }
    .portal-badges { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
    .portal-badge { font-family: var(--mono); font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.28rem 0.65rem; border-radius: 20px; background: var(--light); border: 1px solid var(--line); color: var(--navy); }
    .portal-signout { margin-left: auto; background: none; border: 1px solid var(--line); color: var(--gray); font-size: 0.82rem; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; font-family: var(--body); }
    .portal-signout:hover { border-color: var(--orange); color: var(--orange); }

    .portal-tabs { display: flex; gap: 0.4rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; overflow-x: auto; }
    .portal-tab { background: none; border: none; padding: 0.8rem 1rem; font-family: var(--body); font-weight: 600; font-size: 0.86rem; color: var(--gray); cursor: pointer; border-bottom: 2px solid transparent; white-space: nowrap; }
    .portal-tab.active { color: var(--navy); border-bottom-color: var(--orange); }
    .opp-tab-panel { display: none; }
    .opp-tab-panel.active { display: block; }
    .portal-panel { display: none; }
    .portal-panel.active { display: block; }

    .portal-quick-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
    .portal-quick-card { border: 1px solid var(--line); border-radius: 6px; padding: 1.25rem; text-decoration: none; display: block; transition: border-color 0.2s, transform 0.2s; }
    .portal-quick-card:hover { border-color: var(--orange); transform: translateY(-2px); }
    .portal-quick-card h4 { color: var(--navy); font-family: var(--display); font-size: 0.98rem; margin-bottom: 0.35rem; }
    .portal-quick-card p { color: var(--gray); font-size: 0.82rem; line-height: 1.5; margin: 0; }

    .account-type-options { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.25rem; }
    .account-type-option { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--navy); cursor: pointer; }
    .account-type-option input { margin-top: 0.2rem; }

    .request-item { border: 1px solid var(--line); border-radius: 6px; padding: 1rem 1.25rem; margin-bottom: 0.85rem; }
    .request-item-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
    .request-type-tag { font-family: var(--mono); font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.25rem 0.6rem; border-radius: 20px; background: var(--light); color: var(--navy); }
    .request-status-tag { font-family: var(--mono); font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.25rem 0.6rem; border-radius: 20px; background: rgba(34,150,90,0.12); color: #1c6b45; }
    .request-date { color: var(--gray); font-size: 0.78rem; }
    .request-service { color: var(--navy); font-weight: 600; font-size: 0.9rem; margin-top: 0.6rem; }
    .request-message { color: var(--gray); font-size: 0.85rem; margin-top: 0.35rem; line-height: 1.5; }
    .portal-empty-state { text-align: center; padding: 3rem 1rem; color: var(--gray); font-size: 0.9rem; border: 1px dashed var(--line); border-radius: 6px; }

    /* PROJECTS */
    #projects { background: var(--light); }
    .coming-soon { margin-top: 2.5rem; background: white; border-radius: 6px; padding: 3.5rem; text-align: center; border: 1px dashed #c9c4b5; }
    .coming-soon .cs-icon { font-size: 1.7rem; margin-bottom: 1.25rem; color: var(--orange); display: inline-flex; align-items: center; justify-content: center; width: 3.4rem; height: 3.4rem; background: var(--light); border-radius: 50%; }
    .coming-soon h3 { color: var(--navy); font-weight: 700; margin-bottom: 0.6rem; font-family: var(--display); }
    .coming-soon p { color: var(--gray); max-width: 420px; margin: 0 auto; font-size: 0.9rem; line-height: 1.7; }

    /* PUBLICATIONS */
    #publications { background: white; }
    .pub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .pub-card { border: 1px solid var(--line); border-radius: 5px; padding: 1.85rem; transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color .2s; position: relative; overflow: hidden; }
    .pub-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
    .pub-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width 0.3s var(--ease); }
    .pub-card:hover::before { width: 100%; }
    .pub-tag { display: inline-block; background: var(--light); color: var(--navy); font-family: var(--mono); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; margin-bottom: 0.95rem; }
    .pub-card h3 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 0.6rem; line-height: 1.45; }
    .pub-card p { color: var(--gray); font-size: 0.86rem; line-height: 1.7; margin-bottom: 1.1rem; }
    .pub-date { font-family: var(--mono); font-size: 0.74rem; color: var(--gray); }
    .pub-card-link { text-decoration: none; display: block; height: 100%; }
    .pub-card-link .pub-card { height: 100%; }

    /* ARTICLE / LONG-FORM PUBLICATION */
    .article-header { max-width: 780px; margin: 0 auto 2.5rem; }
    .article-header .pub-tag { margin-bottom: 1.2rem; }
    .article-header h1 { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: clamp(1.6rem, 3.4vw, 2.35rem); line-height: 1.25; margin-bottom: 1.1rem; }
    .article-byline { display: flex; align-items: center; gap: 0.9rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
    .article-byline img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
    .article-byline-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
    .article-byline-role { font-family: var(--mono); font-size: 0.72rem; color: var(--gray); }
    .article-body { max-width: 780px; margin: 0 auto; color: var(--body-text, #333); font-size: 1.02rem; line-height: 1.85; }
    .article-body h2 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.35rem; margin: 2.4rem 0 1rem; }
    .article-body h3 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.1rem; margin: 1.8rem 0 0.8rem; }
    .article-body p { margin-bottom: 1.3rem; }
    .article-body ul, .article-body ol { margin: 0 0 1.3rem 1.3rem; }
    .article-body li { margin-bottom: 0.55rem; line-height: 1.75; }
    .article-body blockquote { border-left: 3px solid var(--orange); padding: 0.3rem 0 0.3rem 1.3rem; margin: 1.8rem 0; color: var(--navy); font-style: italic; font-size: 1.05rem; }
    .article-body strong { color: var(--navy); }
    .article-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.8rem; font-size: 0.9rem; }
    .article-table th, .article-table td { border: 1px solid var(--line); padding: 0.6rem 0.8rem; text-align: left; }
    .article-table th { background: var(--navy); font-family: var(--mono); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: white; border-color: var(--navy); }
    .article-table tbody tr:nth-child(even) { background: var(--light); }
    .article-table td { font-variant-numeric: tabular-nums; }
    .article-footer { max-width: 780px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line); }
    .article-back { display: inline-block; margin-bottom: 2rem; color: var(--gray); font-family: var(--mono); font-size: 0.82rem; text-decoration: none; }
    .article-back:hover { color: var(--orange); }
    .pub-coming { text-align: center; padding: 2.5rem; border: 1px dashed var(--line); border-radius: 6px; color: var(--gray); font-size: 0.9rem; }

    /* PARTNERS */
    #partners { background: var(--light); }
    .partners-intro { margin-bottom: 3rem; }
    .partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }
    .partner-card { background: white; border: 1px solid var(--line); border-radius: 5px; padding: 1.6rem; text-align: left; transition: box-shadow 0.2s var(--ease), transform .2s var(--ease); position: relative; overflow: hidden; }
    .partner-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .partner-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width 0.3s var(--ease); }
    .partner-card:hover::before { width: 100%; }
    .partner-icon { font-size: 1.3rem; margin-bottom: 0.9rem; color: var(--orange); width: 2.4rem; height: 2.4rem; display: flex; align-items: center; justify-content: center; background: var(--light); border-radius: 50%; }
    .partner-card h4 { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.3rem; font-family: var(--display); }
    .partner-card p { color: var(--gray); font-size: 0.78rem; line-height: 1.5; }
    .partners-note { margin-top: 2.25rem; color: var(--gray); font-size: 0.85rem; font-style: italic; max-width: 640px; }
    .partnership-open { margin-top: 3.5rem; background: var(--navy); border-radius: 6px; padding: 2.75rem; position: relative; overflow: hidden; }
    .partnership-open h3 { font-family: var(--display); font-weight: 700; color: white; font-size: 1.05rem; margin-bottom: 1.75rem; }
    .po-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
    .po-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 1.4rem; transition: background .2s; }
    .po-item:hover { background: rgba(255,255,255,0.09); }
    .po-item span { font-size: 1.2rem; display: block; margin-bottom: 0.7rem; color: var(--orange-light); }
    .po-item p { color: rgba(255,255,255,0.72); font-size: 0.83rem; line-height: 1.6; margin: 0; }
    .po-closing { color: rgba(255,255,255,0.55); font-size: 0.85rem; font-style: italic; margin-top: 1.85rem; }

    /* DELIVERY APPROACH */
    #delivery { background: white; }
    .delivery-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2.75rem; counter-reset: step; }
    .delivery-step { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--light); padding: 1.6rem; border-radius: 5px; border: 1px solid var(--line); transition: border-color .2s, transform .2s var(--ease); }
    .delivery-step:hover { border-color: var(--orange); transform: translateY(-2px); }
    .ds-num { width: 34px; height: 34px; background: var(--navy); color: var(--orange-light); border-radius: 50%; font-weight: 700; font-family: var(--mono); font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .delivery-step h4 { font-weight: 700; color: var(--navy); font-size: 0.94rem; margin-bottom: 0.4rem; font-family: var(--display); }
    .delivery-step p { color: var(--gray); font-size: 0.85rem; line-height: 1.65; margin: 0; }

    /* INDUSTRIES */
    #industries { background: var(--light); }
    .industries-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }
    .industry-chip { background: white; border: 1px solid var(--line); color: var(--navy); font-weight: 500; font-size: 0.84rem; padding: 0.6rem 1.15rem; border-radius: 30px; transition: background 0.2s, border-color 0.2s, transform .2s; }
    .industry-chip:hover { background: var(--navy); border-color: var(--navy); color: white; transform: translateY(-1px); }

    /* HSE & QUALITY */
    #hse { background: white; }
    .hse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.75rem; }
    .hse-card { background: var(--light); border: 1px solid var(--line); border-radius: 5px; padding: 2.1rem; }
    .hse-card h3 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.02rem; margin-bottom: 1.1rem; }
    .hse-card ul { padding-left: 1.1rem; display: flex; flex-direction: column; gap: 0.65rem; list-style: none; }
    .hse-card ul li { color: var(--gray); font-size: 0.87rem; line-height: 1.65; position: relative; padding-left: 1.1rem; }
    .hse-card ul li::before { content:''; position:absolute; left:0; top:0.55em; width:6px; height:1.5px; background:var(--orange); }

    /* SUSTAINABILITY */
    #sustainability { background: var(--light); }
    .sustain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 2.75rem; }
    .sustain-item { text-align: left; padding: 1.6rem; background: white; border: 1px solid var(--line); border-radius: 5px; transition: transform .2s var(--ease), box-shadow .2s; }
    .sustain-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .sustain-item span { font-size: 1.3rem; display: block; margin-bottom: 0.85rem; color: var(--orange); width: 2.3rem; height: 2.3rem; display: flex; align-items: center; justify-content: center; background: var(--light); border-radius: 50%; }
    .sustain-item p { color: var(--gray); font-size: 0.86rem; line-height: 1.65; margin: 0; }

    /* LEADERSHIP / TEAM */
    #leadership { background: white; }
    /* LEADERSHIP — featured execs row + supporting team */
    .team-execs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 2.85rem; }
    .team-card-featured {
      background: var(--navy); border-radius: 8px; overflow: hidden;
      display: flex; align-items: stretch; gap: 0;
      box-shadow: var(--shadow-lg); position: relative;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .team-card-featured:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(11,18,48,0.22); }
    .team-card-featured .tcf-photo {
      width: 200px; flex-shrink: 0; overflow: hidden; position: relative;
    }
    .team-card-featured .tcf-photo img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 10%; display: block;
      filter: saturate(0.9) contrast(1.05);
    }
    .team-card-featured .tcf-photo .tcf-initials {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      font-family: var(--display); font-weight: 800; font-size: 3rem; color: var(--orange-light);
      background: linear-gradient(145deg, #0b1230, #1b2c6e);
    }
    .team-card-featured .tcf-info {
      padding: 2rem 1.75rem; display: flex; flex-direction: column; justify-content: flex-end; flex: 1;
      background: linear-gradient(100deg, transparent 0%, rgba(11,18,48,0.45) 100%);
      position: relative;
    }
    .team-card-featured .tcf-info::before {
      content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 2px; background: var(--orange);
    }
    .team-card-featured h4 { font-family: var(--display); font-weight: 700; color: white; font-size: 1.25rem; margin-bottom: 0.4rem; }
    .team-card-featured .team-title { color: var(--orange-light); font-weight: 600; font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .team-card-featured .tcf-bio { color: rgba(255,255,255,0.82); font-size: 0.86rem; line-height: 1.55; margin-top: 0.85rem; }
    .team-card-featured .tcf-cred { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.03em; color: var(--orange-light); background: rgba(217,126,37,0.14); border: 1px solid rgba(217,126,37,0.3); padding: 0.35rem 0.75rem; border-radius: 20px; }

    .team-dept-heading { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1rem; margin: 3rem 0 0.25rem; display: flex; align-items: center; gap: 0.7rem; }
    .team-dept-heading::after { content:''; flex: 1; height: 1px; background: var(--line); }
    .team-dept-sub { color: var(--gray); font-size: 0.86rem; margin-bottom: 0; }

    .team-tag { display: inline-block; margin-top: 0.6rem; font-family: var(--mono); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); background: var(--light); border: 1px solid var(--line); padding: 0.28rem 0.65rem; border-radius: 20px; }

    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.25rem; margin-top: 1.75rem; }
    .team-card {
      background: var(--light); border-radius: 6px; text-align: center; padding: 1.85rem 1.1rem;
      border: 1px solid var(--line); border-top: 2px solid var(--navy);
      transition: box-shadow .22s var(--ease), transform .22s var(--ease);
    }
    .team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .team-photo {
      width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1rem; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      background: var(--navy);
      box-shadow: 0 0 0 3px #fff, 0 0 0 4.5px var(--line);
      font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--orange-light);
    }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: transform 0.2s ease; }
    .team-photo img:hover, .team-card-featured .tcf-photo img:hover { transform: scale(1.035); }
    .team-card-featured .tcf-photo img { cursor: zoom-in; }

    .photo-lightbox-overlay { position: fixed; inset: 0; background: rgba(10,14,30,0.92); display: flex; align-items: center; justify-content: center; z-index: 300; opacity: 0; visibility: hidden; transition: opacity 0.22s ease; cursor: zoom-out; padding: 2rem; }
    .photo-lightbox-overlay.active { opacity: 1; visibility: visible; }
    .photo-lightbox-overlay img { max-width: 88vw; max-height: 85vh; border-radius: 6px; box-shadow: 0 25px 70px rgba(0,0,0,0.55); animation: lightboxIn 0.22s ease; }
    .photo-lightbox-close { position: absolute; top: 1.25rem; right: 1.75rem; color: white; font-size: 2.1rem; line-height: 1; cursor: pointer; font-weight: 300; }
    @keyframes lightboxIn { from { transform: scale(0.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    .team-card h4 { font-family: var(--display); font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; font-size: 0.94rem; }
    .team-title { color: var(--orange); font-weight: 600; font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.4; margin: 0; }

    @media (max-width: 768px) {
      .team-execs { grid-template-columns: 1fr; }
      .team-card-featured .tcf-photo { width: 140px; }
    }

    @media (max-width: 768px) {
      .vmv-grid, .hse-grid { grid-template-columns: 1fr; }
    }

    /* OPPORTUNITIES */
    #opportunities { background: var(--light); }
    .opp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
    .opp-card { border: 1px solid var(--line); background: white; border-radius: 5px; padding: 2rem; position: relative; overflow: hidden; transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease); cursor: pointer; }
    .opp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .opp-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width 0.3s var(--ease); }
    .opp-card:hover::before { width: 100%; }
    .opp-badge { display: inline-block; font-family: var(--mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.32rem 0.75rem; border-radius: 2px; margin-bottom: 1.1rem; }
    .opp-badge.open { background: #eaf6ee; color: #1e6b3a; }
    .opp-badge.coming { background: #fbeed9; color: #9a5b13; }
    .opp-card h3 { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.04rem; margin-bottom: 0.5rem; }
    .opp-card .opp-type { color: var(--orange); font-size: 0.81rem; font-weight: 600; margin-bottom: 0.85rem; }
    .opp-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.35rem; }
    .opp-meta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.35rem; }
    .opp-meta span { font-size: 0.78rem; color: var(--gray); display: inline-flex; align-items: center; gap: 0.35rem; }
    .opp-meta span .icon { color: var(--orange); }
    .opp-link { color: var(--navy); font-weight: 700; font-size: 0.86rem; border-bottom: 2px solid var(--orange); padding-bottom: 1px; }
    .opp-cta { margin-top: 3rem; background: var(--navy); border-radius: 6px; padding: 2.25rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem; }
    .opp-cta h4 { font-family: var(--display); font-weight: 700; color: white; margin-bottom: 0.35rem; }
    .opp-cta p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }
    .btn-navy { background: var(--orange); color: white; padding: 0.8rem 1.85rem; border-radius: 3px; text-decoration: none; font-weight: 700; font-size: 0.88rem; white-space: nowrap; transition: background 0.2s, transform .18s var(--ease); display: inline-block; border: none; cursor: pointer; font-family: var(--body); }
    .btn-navy:hover { background: var(--orange-light); transform: translateY(-1px); }

    /* CONTACT */
    #contact { background: white; }
    .contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; margin-top: 3rem; align-items: start; }
    .contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
    .contact-item { display: flex; align-items: flex-start; gap: 1.1rem; }
    .contact-item .ci-icon { width: 42px; height: 42px; background: var(--light); border: 1px solid var(--line); color: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
    .contact-item h4 { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.25rem; font-family: var(--display); }
    .contact-item p, .contact-item a { color: var(--gray); font-size: 0.9rem; text-decoration: none; }
    .contact-item a:hover { color: var(--orange); }
    .contact-form { display: flex; flex-direction: column; gap: 1.1rem; background: var(--light); padding: 2.25rem; border-radius: 6px; border: 1px solid var(--line); }

    /* QUICK LINKS / FOOTER */
    footer { background: var(--navy-dark); color: rgba(255,255,255,0.55); padding: 4.5rem 5% 1.75rem; position: relative; }
    .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
    .footer-brand img { height: 48px; margin-bottom: 1.1rem; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; margin-bottom: 1rem; color: rgba(255,255,255,0.55); }
    .footer-slogan { color: var(--orange-light); font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.02em; }
    .footer-col h4 { color: white; font-weight: 700; margin-bottom: 1.1rem; font-size: 0.78rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
    .footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--orange-light); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.09); margin-bottom: 1.5rem; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-bottom p { font-size: 0.8rem; font-family: var(--mono); }

    .auth-toggle { display: flex; gap: 0; margin-bottom: 1.5rem; border-radius: 4px; overflow: hidden; border: 1px solid #d3d0c4; }
    .auth-toggle button { flex: 1; padding: 0.7rem; border: none; background: white; color: var(--gray); font-weight: 600; font-size: 0.86rem; cursor: pointer; font-family: var(--body); transition: background 0.2s, color 0.2s; }
    .auth-toggle button.active { background: var(--navy); color: white; }
    .auth-error { background: #fdf1ed; border: 1px solid #e3a98c; color: #9a3a1d; border-radius: 4px; padding: 0.75rem 1rem; font-size: 0.85rem; display: none; }
    .auth-success { background: #eef6ef; border: 1px solid #9bc9a4; color: #1e5b32; border-radius: 4px; padding: 0.75rem 1rem; font-size: 0.85rem; display: none; }
    .profile-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
    .profile-avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: var(--orange-light); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 1.25rem; flex-shrink: 0; }
    .profile-header h3 { color: var(--navy); font-family: var(--display); font-weight: 700; font-size: 1.08rem; }
    .profile-header p { color: var(--gray); font-size: 0.85rem; }
    .profile-cv-status { display: flex; align-items: center; gap: 0.5rem; background: var(--light); border-radius: 4px; padding: 0.75rem 1rem; font-size: 0.85rem; color: var(--navy); margin-bottom: 1rem; }
    .signout-link { color: var(--gray); font-size: 0.82rem; text-decoration: underline; cursor: pointer; margin-top: 0.5rem; display: inline-block; }
    .auth-loading { text-align: center; padding: 2rem; color: var(--gray); font-size: 0.9rem; }

    /* MODALS */
    .modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(7,12,32,0.78); backdrop-filter: blur(5px); align-items: center; justify-content: center; padding: 1.5rem; }
    .modal-overlay.active { display: flex; }
    .modal-box { background: white; border-radius: 6px; max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2.5rem; position: relative; animation: modalIn 0.25s var(--ease); border-top: 3px solid var(--orange); }
    @keyframes modalIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
    .modal-close { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--light); border: 1px solid var(--line); width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; color: var(--navy); display: flex; align-items: center; justify-content: center; transition: background 0.2s; line-height: 1; }
    .modal-close:hover { background: #ece8db; }
    .modal-title { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.01em; }
    .modal-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
    .modal-meta span { font-size: 0.85rem; color: var(--gray); display: inline-flex; align-items: center; gap: 0.4rem; }
    .modal-meta span .icon { color: var(--orange); }
    .modal-section { margin-bottom: 1.5rem; }
    .modal-section h4 { font-weight: 700; color: var(--navy); margin-bottom: 0.65rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--mono); }
    .modal-section p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; }
    .modal-section ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
    .modal-section ul li { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
    .modal-divider { border: none; border-top: 1px solid var(--line); margin: 1.5rem 0; }
    .apply-form { display: flex; flex-direction: column; gap: 1rem; }
    .apply-form-title { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; }
    .file-upload-label { display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px dashed #c9c4b5; border-radius: 4px; padding: 1.5rem; cursor: pointer; transition: border-color 0.2s, background .2s; text-align: center; background: var(--light); }
    .file-upload-label:hover { border-color: var(--orange); background: #f1ede1; }
    .file-upload-label .icon { font-size: 1.4rem; color: var(--orange); }
    .file-upload-label span { font-size: 0.85rem; color: var(--gray); margin-top: 0.5rem; }
    .file-upload-label input { display: none; }
    .file-name { font-size: 0.8rem; color: var(--orange); margin-top: 0.5rem; }
    .apply-success { background: #eef6ef; border: 1px solid #9bc9a4; border-radius: 4px; padding: 1rem 1.25rem; color: #1e5b32; font-size: 0.9rem; display: none; }

    @media (max-width: 1024px) {
      .hero-visual { display: none; }
    }
    @media (max-width: 900px) {
      .voltage-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-right { display: none; }
      .hamburger { display: flex; }
      .about-grid, .contact-grid, .quote-grid { grid-template-columns: 1fr; gap: 2rem; }
      .form-row { grid-template-columns: 1fr; }
      .voltage-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .modal-box { padding: 1.5rem; }
      .modal-title { font-size: 1.2rem; }
      section { padding: 64px 6%; }
    }
    @media (max-width: 480px) {
      .voltage-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ============================================================
       SCROLL-TRIGGERED ANIMATIONS
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .reveal.reveal-left {
      transform: translateX(-28px);
    }
    .reveal.reveal-right {
      transform: translateX(28px);
    }
    .reveal.reveal-scale {
      transform: translateY(20px) scale(0.96);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }
    /* Staggered children — each child gets delay via --i */
    .stagger-children > * {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
      transition-delay: calc(var(--i, 0) * 90ms);
    }
    .stagger-children > *.is-visible {
      opacity: 1;
      transform: none;
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .stagger-children > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }
