:root{
    /* --gold, --gold-deep, --text, --muted, --glass, --glass-border
       now live in css/root.css (shared by all pages) */
    --cream:#faf8f2;
    --cream-2:#f2ede0;
    --panel-dark:#1c1712;
    --panel-dark-2:#241d15;
    --gold-soft:#f0cf82;
    --text-on-dark:#f4efe2;
    --muted-on-dark:#b8ab8f;
    --danger:#c0392b;
  }
  *{ margin:0; padding:0; box-sizing:border-box; }
  body{
    font-family:'Segoe UI',-apple-system,BlinkMacSystemFont,Roboto,Arial,sans-serif;
    background:#fff !important;
    color:var(--text);
    overflow-x:hidden;
  
  }
  .serif{ font-family:'Fraunces', Georgia, serif; }

  /* ============ TOP BANNER ============ */
  .banner{
    position:relative;
    background:radial-gradient(120% 160% at 50% -20%, #2c2318 0%, var(--panel-dark) 55%, #130f0a 100%);
    padding:64px 64px 64px;
    text-align:center;
    overflow:hidden;
    width: 100%;
  }
  .banner::before{
    content:"";
    position:absolute; inset:0;
    background-image:
      radial-gradient(circle at 15% 30%, rgba(225,181,76,0.10), transparent 40%),
      radial-gradient(circle at 85% 70%, rgba(225,181,76,0.08), transparent 40%);
    pointer-events:none;
  }
  .banner-title{
    position:relative;
    font-size:clamp(26px,4vw,36px);
    font-weight:700;
    color:#fff;
    letter-spacing:.01em;
    margin-bottom:14px;
    animation:fadeDown .6s ease both;
  }
  .breadcrumb{
    position:relative;
    display:inline-flex; align-items:center; gap:10px;
    font-size:12.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
    color:var(--muted-on-dark);
    animation:fadeDown .6s ease .08s both;
  }
  .breadcrumb a{ color:var(--muted-on-dark); text-decoration:none; transition:color .2s ease; }
  .breadcrumb a:hover{ color:var(--gold); }
  .breadcrumb .dot{ width:4px; height:4px; border-radius:50%; background:var(--gold); }
  .breadcrumb .current{ color:var(--gold); }

  @keyframes fadeDown{
    from{ opacity:0; transform:translateY(-10px); }
    to{ opacity:1; transform:translateY(0); }
  }
  
/* ============ WHO WE ARE ============ */
.who-we-are{
  padding:50px 50px;
  background:#fff;
}
.wwa-wrap{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.wwa-image{
  position:relative;
  border-radius:24px;
  overflow:hidden;
}
.wwa-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:24px;
  display:block;
}
.wwa-eyebrow{
  display:block;
  font-size:14px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:#e1b54c;
  margin-bottom:12px;
}
.wwa-title{
  font-size:clamp(26px,3vw,36px);
  font-weight:700;
  color:var(--text);
  line-height:1.25;
  margin-bottom:18px;
}
.wwa-desc{
  font-size:15.5px;
  line-height:1.7;
  color:var(--muted);
  margin-bottom:28px;
  max-width:520px;
}

/* ============ LIFE AT BILOXX ============ */
.life-at-biloxx{
  padding:50px 50px;
  background:#fff;
}
.lab-wrap{
  max-width:1200px;
  margin:0 auto;
}
.lab-title{
  font-size:clamp(30px,4vw,44px);
  font-weight:700;
  color:var(--text);
  letter-spacing:-0.01em;
  margin-bottom:28px;
}
.lab-divider{
  height:1px;
  width:100%;
  background:var(--glass-border, #e5e0d4);
  margin-bottom:40px;
}
.lab-body{
  display:grid;
  grid-template-columns:1fr 220px;
  gap:48px;
  align-items:stretch;
}
.lab-left{
  display:flex;
  flex-direction:column;
  gap:32px;
}
.lab-intro{
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
  max-width:600px;
}
.lab-checklist{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px 32px;
}
.lab-checklist li{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.lab-check{
  flex-shrink:0;
  width:22px;
  height:22px;
  border-radius:50%;
  border:1.5px solid var(--gold);
  color:var(--gold-deep);
  font-size:12px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:2px;
}
.lab-checklist strong{
  display:block;
  font-size:15px;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}
.lab-checklist p{
  font-size:13.5px;
  line-height:1.6;
  color:var(--muted);
}
.lab-arrow-box{
  background:#e1b54c;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  min-height:220px;
  transition:background .25s ease, transform .25s ease;
}
.lab-arrow-box:hover{
  background:var(--panel-dark-2);
  transform:translateY(-3px);
}
.lab-arrow{
  font-size:32px;
  color:#fff;
  transform:rotate(0deg);
}


/* ============ OPEN OPPORTUNITIES ============ */
.open-opps{
  position:relative;
  padding:50px 50px;
  background:var(--cream);
  overflow:hidden;
}
.oo-glow{
  position:absolute;
  top:-120px; right:-120px;
  width:400px; height:400px;
  background:radial-gradient(circle, rgba(225,181,76,0.14), transparent 70%);
  pointer-events:none;
}
.oo-wrap{
  position:relative;
  max-width:1200px;
  margin:0 auto;
}
.oo-header{
  margin-bottom:44px;
}
.oo-eyebrow{
  display:block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#e1b54c;
  margin-bottom:10px;
}
.oo-title{
  font-size:clamp(28px,3.5vw,40px);
  font-weight:700;
  color:var(--text);
  letter-spacing:-0.01em;
  margin-bottom:12px;
}
.oo-subtitle{
  font-size:15.5px;
  color:var(--muted);
  max-width:520px;
  line-height:1.6;
}

.oo-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-bottom:44px;
}
.oo-card{
  position:relative;
  background:#fff;
  border-radius:20px;
  padding:26px;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  gap:14px;
  border:1px solid rgba(28,23,18,0.06);
  box-shadow:0 2px 8px rgba(28,23,18,0.04);
  transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.oo-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 32px rgba(28,23,18,0.10);
  border-color:rgba(225,181,76,0.35);
}
.oo-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.oo-icon{
  width:44px;
  height:44px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.oo-icon svg{ width:20px; height:20px; }
.oo-icon-1{ background:#fbe7d0; color:#b3701a; }
.oo-icon-2{ background:#d9ede3; color:#2f7d5c; }
.oo-icon-3{ background:#f4e2e9; color:#a5406d; }
.oo-icon-4{ background:#dbe6f5; color:#3560ac; }
.oo-arrow-btn{
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--cream-2);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .25s ease, color .25s ease, transform .25s ease;
}
.oo-arrow-btn svg{ width:15px; height:15px; }
.oo-card:hover .oo-arrow-btn{
  background:var(--panel-dark);
  color:var(--gold-soft);
  transform:rotate(45deg);
}
.oo-tag{
  align-self:flex-start;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--gold-deep);
  background:rgba(225,181,76,0.12);
  padding:5px 12px;
  border-radius:999px;
}
.oo-role{
  font-size:17px;
  font-weight:700;
  color:var(--text);
  line-height:1.35;
}
.oo-desc{
  font-size:13px;
  line-height:1.55;
  color:var(--muted);
}
.oo-meta{
  margin-top:auto;
  padding-top:14px;
  border-top:1px solid rgba(28,23,18,0.07);
}
.oo-loc{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12.5px;
  color:var(--muted);
}
.oo-loc svg{ width:14px; height:14px; flex-shrink:0; }

.oo-cta-wrap{
  display:flex;
  justify-content:center;
}
.oo-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--gold);
  color:#fff;
  font-weight:600;
  font-size:14.5px;
  padding:15px 34px;
  border-radius:999px;
  text-decoration:none;
  transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow:0 6px 18px rgba(225,181,76,0.25);
}
.oo-cta svg{ width:16px; height:16px; }
.oo-cta:hover{
  background:var(--gold-deep);
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(225,181,76,0.35);
}





  
   /* ======================================================
     RESPONSIVE — TABLET (≤960px)
     ====================================================== */
  @media (max-width:960px){
    .banner{ padding:48px 28px; }
    
      .who-we-are{ padding:56px 28px; }
  .wwa-wrap{ grid-template-columns:1fr; gap:32px; }
  .wwa-image{ order:-1; }
   .life-at-biloxx{ padding:56px 28px; }
  .lab-body{ grid-template-columns:1fr; }
  .lab-arrow-box{ min-height:80px; order:-1; }
  .lab-checklist{ grid-template-columns:1fr; }
  
    .open-opps{ padding:60px 28px; }
  .oo-grid{ grid-template-columns:repeat(2,1fr); }

   

    
  }

  /* ======================================================
     RESPONSIVE — MOBILE (≤640px)
     ====================================================== */
  @media (max-width:640px){
    .banner{ padding:38px 20px; }
    .banner-title{ font-size:24px; margin-bottom:10px; }
    .breadcrumb{ font-size:11px; gap:8px; }
      .who-we-are{ padding:40px 20px; }
  .wwa-title{ font-size:22px; }
  .wwa-desc{ font-size:14px; }
    .life-at-biloxx{ padding:40px 20px; }
  .lab-title{ font-size:26px; margin-bottom:20px; }
  .lab-divider{ margin-bottom:28px; }
  .lab-body{ gap:28px; }
  .lab-left{ gap:24px; }
  .lab-intro{ font-size:14.5px; }
  .lab-checklist{ gap:20px; }
  .lab-checklist strong{ font-size:14px; }
  .lab-checklist p{ font-size:13px; }
  
    .open-opps{ padding:44px 20px; }
  .oo-title{ font-size:25px; }
  .oo-subtitle{ font-size:13.5px; }
  .oo-grid{ grid-template-columns:1fr; gap:16px; }
  .oo-card{ padding:20px; }
  .oo-role{ font-size:16px; }


  }

  /* ======================================================
     RESPONSIVE — SMALL MOBILE (≤420px)
     ====================================================== */
  @media (max-width:420px){
    .banner{ padding:32px 16px; }
    .banner-title{ font-size:21px; }
     .who-we-are{ padding:32px 16px; }
  .wwa-title{ font-size:20px; margin-bottom:14px; }
  .wwa-desc{ font-size:13px; margin-bottom:22px; }
  .wwa-image img{ border-radius:16px; }
  .wwa-image{ border-radius:16px; }
    .life-at-biloxx{ padding:32px 16px; }
  .lab-title{ font-size:22px; margin-bottom:16px; }
  .lab-divider{ margin-bottom:22px; }
  .lab-arrow-box{ min-height:60px; border-radius:12px; }
  .lab-arrow{ font-size:24px; }
  .lab-checklist strong{ font-size:13.5px; }
  .lab-checklist p{ font-size:12.5px; }
  
   .open-opps{ padding:34px 16px; }
  .oo-glow{ width:240px; height:240px; }
  .oo-title{ font-size:21px; }
  .oo-icon{ width:38px; height:38px; }
  .oo-icon svg{ width:17px; height:17px; }
  .oo-arrow-btn{ width:32px; height:32px; }
  .oo-role{ font-size:15px; }
  .oo-desc{ font-size:12.5px; }
  .oo-cta{ padding:13px 26px; font-size:13.5px; width:100%; justify-content:center; }
  


  }