/* =========================================================
   EdgeSilica — Design Tokens
   Concept: the site reads like a chip datasheet — wafer-grid
   texture, spec-table components, caliper-tick dividers,
   part-number style eyebrows.
   ========================================================= */

:root{
  --paper:      #F5F4FA;
  --surface:    #FFFFFF;
  --ink:        #15122B;
  --indigo:     #2B1568;
  --indigo-2:   #4726A8;
  --magenta:    #D31C6E;
  --magenta-2:  #FF4FA0;
  --steel:      #6E6C82;
  --steel-soft: #9997AC;
  --line:       #E1DFEC;
  --die:        #F0EBE4;
  --die-line:   #DED5C6;
  --die-text:   #5B564C;
  --footer-bg:      #404D6C;
  --footer-line:    #59647F;
  --footer-accent:  #F3F0EB;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;
  --font-ms:      'Segoe UI', 'Segoe UI Web', system-ui, -apple-system, BlinkMacSystemFont, Roboto, Inter, sans-serif;

  --container: 1180px;
  --radius: 2px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  margin:0;
  color:var(--ink);
  font-weight:600;
  letter-spacing:-0.01em;
}
p{ margin:0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline:2px solid var(--magenta);
  outline-offset:3px;
}

.wrap{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

/* ---------- eyebrow / part-number label ---------- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--magenta);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:22px;
  height:1px;
  background:var(--magenta);
  display:inline-block;
}
.eyebrow span.num{ color:var(--steel); }


/* wafer-grid texture removed per feedback — classes kept as no-ops so
   existing markup referencing them doesn't break */
.wafer-grid,
.wafer-grid-dark{ background-image:none; }

/* ============ HEADER ============ */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 32px;
  max-width:var(--container);
  margin:0 auto;
}
.logo{ display:flex; align-items:center; }
.logo-img{ height:48px; width:auto; display:block; }
.footer-brand .logo{
  background:var(--footer-accent);
  padding:10px 16px;
  border-radius:6px;
  width:fit-content;
}
.logo-img-footer{ height:30px; }

nav.main-nav ul{ display:flex; gap:32px; }
nav.main-nav a{
  font-family:var(--font-ms);
  font-size:15px;
  font-weight:400;
  letter-spacing:normal;
  text-transform:none;
  color:var(--ink);
  position:relative;
  padding:6px 0;
}
nav.main-nav a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:2px; background:var(--magenta);
  transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a[aria-current="page"]::after{ transform:scaleX(1); }
nav.main-nav a[aria-current="page"]{ color:var(--magenta); }

.header-cta{ display:flex; align-items:center; gap:20px; }
.menu-toggle{
  display:none;
  background:none;
  border:1px solid var(--line);
  width:40px; height:40px;
  align-items:center; justify-content:center;
  cursor:pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after{
  content:""; display:block; width:18px; height:2px; background:var(--ink); position:relative;
}
.menu-toggle span::before{ position:absolute; top:-6px; }
.menu-toggle span::after{ position:absolute; top:6px; }

/* ---------- buttons ---------- */
.btn{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:13px 22px;
  border:1px solid var(--ink);
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  background:transparent;
}
.btn-primary{
  background:var(--indigo);
  border-color:var(--indigo);
  color:#fff;
}
.btn-primary:hover{ background:var(--magenta); border-color:var(--magenta); transform:translateY(-1px); }
.btn-ghost{ border-color:var(--ink); color:var(--ink); }
.btn-ghost:hover{ background:var(--ink); color:#fff; }
.btn-on-dark{ border-color:rgba(255,255,255,0.7); color:#fff; }
.btn-on-dark:hover{ background:#fff; color:var(--die); border-color:#fff; }
.btn-arrow{ transition:transform .2s ease; }
.btn:hover .btn-arrow{ transform:translateX(3px); }

/* ============ HERO (Microsoft-style full-bleed banner) ============ */
.hero{
  position:relative;
  overflow:hidden;
  min-height:64vh;
  height:64vh;
  display:flex;
  align-items:center;
  background:#1B1440;
  --tint: 47 20 120;
  --tint-hue: 0deg;
}
.hero::before{
  /* the photo, isolated on its own layer so a hue filter can recolor it
     per page without touching the text sitting above it */
  content:"";
  position:absolute; inset:0;
  background:url("hero-banner.jpg") center 38% / cover no-repeat;
  filter:hue-rotate(var(--tint-hue)) saturate(1.1);
  z-index:0;
}
.hero::after{
  /* dark, hued scrim so white headline text stays legible over the photo,
     echoing the deep navy wash Microsoft uses behind its hero shots */
  content:"";
  position:absolute; inset:0;
  z-index:0;
  pointer-events:none;
  background:linear-gradient(100deg, rgb(var(--tint) / 0.94) 0%, rgb(var(--tint) / 0.87) 32%, rgb(var(--tint) / 0.6) 55%, rgb(var(--tint) / 0.3) 75%, rgb(var(--tint) / 0.12) 100%);
}
.hero-inner{
  position:relative;
  z-index:1;
  width:100%;
}
.hero-copy{ max-width:640px; }
.hero-copy .eyebrow{ margin-bottom:18px; font-family:var(--font-ms); letter-spacing:0.04em; color:var(--magenta-2); }
.hero-copy .eyebrow::before{ background:var(--magenta-2); }
.hero h1{
  font-family:var(--font-ms);
  font-weight:600;
  font-size:clamp(34px,4.6vw,58px);
  line-height:1.05;
  margin-bottom:20px;
  color:#fff;
}
.hero h1 em{
  font-style:normal;
  background:linear-gradient(90deg,#fff,var(--magenta-2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p.lede{
  font-family:var(--font-ms);
  font-size:18px;
  color:#D6D2EC;
  max-width:46ch;
  margin-bottom:30px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-actions .btn{
  font-family:var(--font-ms);
  text-transform:none;
  letter-spacing:normal;
  font-size:15.5px;
  font-weight:600;
  border-radius:999px;
  padding:14px 26px;
}
.hero-actions .btn-primary{ background:#fff; border-color:#fff; color:var(--ink); }
.hero-actions .btn-primary:hover{ background:var(--magenta-2); border-color:var(--magenta-2); color:#fff; }
.hero-actions .btn-ghost{ border-color:rgba(255,255,255,0.55); color:#fff; }
.hero-actions .btn-ghost:hover{ background:rgba(255,255,255,0.12); border-color:#fff; }
.hero-art{ display:none; }

/* small floating chip / IC accents, in the spirit of Microsoft's scattered
   product-icon hero treatment, sized down and pushed to the quiet side of the frame */
.hero-chips{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
}
.hero-chip{ position:absolute; filter:drop-shadow(0 10px 18px rgba(8,4,30,0.35)); }
.hero-chip svg{ width:100%; height:100%; display:block; }
.hero-chip.c1{ width:58px; height:58px; top:16%; right:14%; transform:rotate(-8deg); }
.hero-chip.c2{ width:40px; height:40px; top:62%; right:24%; transform:rotate(10deg); }
.hero-chip.c3{ width:46px; height:46px; top:38%; right:7%; transform:rotate(6deg); }
.hero-chip.c4{ width:32px; height:32px; top:78%; right:11%; transform:rotate(-14deg); }


.hero-stats{
  border-top:1px solid var(--line);
}
.hero-stats .wrap{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.hero-stats .stat{
  padding:26px 32px;
  border-right:1px solid var(--line);
}
.hero-stats .stat:last-child{ border-right:none; }
.hero-stats .stat .n{
  font-family:var(--font-mono);
  font-size:26px;
  color:var(--indigo);
}
.hero-stats .stat .l{
  font-size:12.5px;
  color:var(--steel);
  margin-top:4px;
}

/* ============ PROMO BANNER (Microsoft-365-style, scattered tiles) ============ */
.promo-banner{
  position:relative;
  overflow:hidden;
  padding:0;
  background:linear-gradient(120deg,#F3EFE9 0%,#EFE9EE 55%,#EDE7F2 100%);
}
.promo-inner{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
}
.promo-copy{ max-width:520px; position:relative; z-index:2; }
.promo-copy h2{
  font-family:var(--font-ms);
  font-weight:600;
  font-size:clamp(30px,3.6vw,46px);
  line-height:1.1;
  color:var(--ink);
  margin-bottom:22px;
}
.promo-copy p{
  font-family:var(--font-ms);
  font-size:17px;
  color:var(--steel);
  max-width:44ch;
  margin-bottom:30px;
}
.promo-btn{
  font-family:var(--font-ms);
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--indigo);
  color:#fff;
  font-weight:600;
  font-size:15.5px;
  padding:14px 26px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.promo-btn:hover{ background:var(--magenta); transform:translateY(-1px); }

.tile-field{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
}
.svc-tile{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:22%;
  box-shadow:0 18px 30px -8px rgba(30,15,70,0.32);
}
.svc-tile svg{ width:56%; height:56%; }

/* individual tile placement, size and rainbow palette — arranged loosely like
   a scattered product cluster, echoing the M365 icon layout, each a
   different hue carrying a small chip / semiconductor glyph */
.t-rtl{ width:96px; height:96px; top:10%;  right:38%; background:#0E7C86; transform:rotate(-6deg); }
.t-fv { width:76px; height:76px; top:4%;   right:20%; background:#D13438; transform:rotate(8deg); }
.t-pd { width:110px;height:110px;top:34%;  right:6%;  background:#5B2D8E; transform:rotate(4deg); }
.t-sta{ width:64px; height:64px; top:58%;  right:34%; background:#C19C00; transform:rotate(-10deg); }
.t-dft{ width:84px; height:84px; top:60%;  right:16%; background:#107C41; transform:rotate(9deg); }
.t-pv { width:58px; height:58px; top:20%;  right:2%;  background:#0078D4; transform:rotate(-8deg); }
.t-tape{width:70px; height:70px; top:80%;  right:44%; background:#E3008C; transform:rotate(6deg); }


.section-head{
  max-width:680px;
  margin-bottom:56px;
}
.section-head h2{ font-size:clamp(28px,3vw,38px); line-height:1.12; }
.section-head p{ color:var(--steel); font-size:17px; margin-top:16px; }

.die-section{
  background:var(--die);
  color:var(--die-text);
  position:relative;
}
.die-section .eyebrow{ color:var(--magenta); }
.die-section h2, .die-section h3{ color:var(--ink); }
.die-section .section-head p{ color:var(--die-text); }

/* ---------- who we are ---------- */
.split{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:64px;
}
.lead-text p, .body-text p{ font-size:16.5px; line-height:1.65; color:var(--steel); margin-bottom:18px; text-align:justify; text-justify:inter-word; }

/* ---------- boxed promo cards on light-blue band (Microsoft "For business" style) ---------- */
.card-band{
  background:#DBEDF9;
}
.promo-card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.promo-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 12px 28px -8px rgba(20,20,70,0.16);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}
.promo-card:hover{ transform:translateY(-3px); box-shadow:0 18px 34px -8px rgba(20,20,70,0.22); }
.promo-card-media{
  height:170px;
  background:linear-gradient(135deg,#F1F0F7,#E7E5F2);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.promo-card-media svg{ width:72px; height:72px; }
.promo-card-badge{
  position:absolute;
  top:14px; left:14px;
  background:#FFC83D;
  color:var(--ink);
  font-family:var(--font-ms);
  font-weight:700;
  font-size:12px;
  padding:5px 12px;
  border-radius:5px;
}
.promo-card-body{
  padding:22px 22px 24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.promo-card-body h3{
  font-family:var(--font-ms);
  font-weight:700;
  font-size:18px;
  color:var(--ink);
  margin-bottom:10px;
  line-height:1.25;
}
.promo-card-body p{
  font-family:var(--font-ms);
  font-size:14.5px;
  color:var(--steel);
  line-height:1.5;
  margin-bottom:22px;
  flex:1;
}
.promo-card-link{
  align-self:flex-start;
  font-family:var(--font-ms);
  font-weight:600;
  font-size:14px;
  color:#fff;
  background:var(--indigo);
  padding:10px 20px;
  border-radius:6px;
  transition:background .2s ease;
}
.promo-card-link:hover{ background:var(--magenta); }

/* ---------- vendor tool rows (compact, one line per vendor) ---------- */
.vendor-list{ border-top:1px solid var(--die-line); }
.vendor-row{
  display:flex;
  gap:28px;
  padding:18px 0;
  border-bottom:1px solid var(--die-line);
  align-items:baseline;
}
.vendor-label{
  width:150px;
  flex-shrink:0;
  font-family:var(--font-mono);
  font-weight:600;
  font-size:15px;
  color:var(--ink);
}
.vendor-tools{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  flex:1;
}


.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.card{
  background:var(--surface);
  padding:34px 30px;
  transition:background .2s ease;
}
.card:hover{ background:#FBFAFF; }
.card .idx{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--magenta);
  margin-bottom:18px;
  display:block;
}
.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ color:var(--steel); font-size:14.5px; margin-bottom:16px; }
.card ul{ margin-top:14px; }
.card ul li{
  font-family:var(--font-mono);
  font-size:12.5px;
  color:var(--steel);
  padding:6px 0;
  border-top:1px solid var(--line);
}
.card ul li:first-child{ border-top:none; }

/* ---------- why choose us checklist ---------- */
.check-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid var(--line);
}
.check-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:20px 16px;
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
}
.check-item:nth-child(4n){ border-right:none; }
.check-mark{
  font-family:var(--font-mono);
  color:var(--magenta);
  font-size:14px;
  flex-shrink:0;
}
.check-item span.txt{ font-size:14.5px; }

/* ---------- tag pills (industries / tech) ---------- */
.pill-row{ display:flex; flex-wrap:wrap; gap:12px; }
.pill-row-nowrap{
  flex-wrap:nowrap;
  overflow-x:auto;
  padding-bottom:6px;
  scrollbar-width:thin;
}
.pill-row-nowrap .pill{ flex-shrink:0; }
.pill{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.04em;
  padding:10px 16px;
  border:1px solid var(--line);
  color:var(--ink);
  background:var(--surface);
}
.die-section .pill{ border-color:var(--die-line); color:var(--die-text); background:transparent; }

/* ---------- spec table (datasheet) ---------- */
.spec-table{ width:100%; border-collapse:collapse; }
.spec-table th{
  text-align:left;
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--magenta-2);
  padding:12px 16px;
  border-bottom:1px solid var(--die-line);
}
.spec-table td{
  padding:16px;
  border-bottom:1px solid var(--die-line);
  font-size:14.5px;
}
.spec-table td.mono, .spec-table th.mono{ font-family:var(--font-mono); }
.spec-table tr:hover td{ background:rgba(255,255,255,0.03); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg,var(--indigo),var(--magenta));
  color:#fff;
  padding:52px 0;
}
.cta-banner .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.cta-banner h2{ color:#fff; font-size:clamp(24px,3vw,32px); max-width:520px; }

/* ---------- footer (Microsoft-style: light gray, dense link columns) ---------- */
footer.site-footer{
  background:#F2F2F2;
  color:#3B3A39;
  padding-top:48px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap:32px;
  padding-bottom:36px;
  border-bottom:1px solid #DCDBD9;
}
.footer-grid h4{
  color:#201F1E;
  font-family:var(--font-ms);
  font-weight:700;
  font-size:15px;
  letter-spacing:normal;
  text-transform:none;
  margin-bottom:18px;
}
.footer-grid li{ margin-bottom:12px; font-size:14px; }
.footer-grid a{ color:#494847; }
.footer-grid a:hover{ color:var(--indigo); text-decoration:underline; }
.footer-brand .logo{ background:transparent; padding:0; }
.footer-brand .logo-img{ height:40px; }
.footer-brand .logo-word{ color:#201F1E; }
.footer-brand p{ color:#605E5C; font-size:14px; margin-top:16px; max-width:32ch; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  font-family:var(--font-ms);
  font-size:12.5px;
  color:#605E5C;
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom a{ margin-left:18px; color:#605E5C; }
.footer-bottom a:hover{ color:var(--indigo); text-decoration:underline; }

/* ---------- back to top pill ---------- */
.back-to-top{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:90;
  background:#1B1A19;
  color:#fff;
  font-family:var(--font-ms);
  font-weight:600;
  font-size:13.5px;
  padding:12px 20px;
  border-radius:999px;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.back-to-top.visible{ opacity:1; transform:translateY(0); pointer-events:auto; }
.back-to-top:hover{ background:#000; }

/* ---------- page hero (interior pages) — same full-bleed photo
   banner treatment as the home hero, at a shorter, IDENTICAL height
   across every interior page regardless of how much copy it holds ---------- */
.page-hero{
  position:relative;
  overflow:hidden;
  height:clamp(360px, 42vh, 440px);
  min-height:360px;
  display:flex;
  align-items:center;
  padding:56px 0;
  background:#1B1440;
  --tint: 47 20 120;
  --tint-hue: 0deg;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background:url("hero-banner.jpg") center 38% / cover no-repeat;
  filter:hue-rotate(var(--tint-hue)) saturate(1.1);
  z-index:0;
}
.page-hero::after{
  content:"";
  position:absolute; inset:0;
  z-index:0;
  pointer-events:none;
  background:linear-gradient(100deg, rgb(var(--tint) / 0.94) 0%, rgb(var(--tint) / 0.88) 30%, rgb(var(--tint) / 0.62) 55%, rgb(var(--tint) / 0.32) 75%, rgb(var(--tint) / 0.14) 100%);
}
.page-hero .wrap{ position:relative; z-index:1; }
.page-hero h1{ font-family:var(--font-ms); font-weight:600; font-size:clamp(32px,4vw,48px); margin-bottom:14px; color:#fff; }
.page-hero p{ font-family:var(--font-ms); color:#D6D2EC; font-size:17px; max-width:60ch; }
.page-hero .eyebrow{ color:var(--magenta-2); }
.page-hero .eyebrow::before{ background:var(--magenta-2); }
.page-hero .eyebrow span.num{ color:#B9B4D6; }

/* ---------- rainbow banner tints, one per page ---------- */
.tint-violet  { --tint: 47 20 120;  --tint-hue: 0deg;   }
.tint-indigo  { --tint: 14 22 138;  --tint-hue: -34deg; }
.tint-blue    { --tint: 9 66 158;   --tint-hue: -62deg; }
.tint-teal    { --tint: 5 100 104;  --tint-hue: -140deg;}
.tint-amber   { --tint: 150 88 8;   --tint-hue: 140deg; }
.tint-magenta { --tint: 145 16 98;  --tint-hue: 42deg;  }
.tint-red     { --tint: 138 22 38;  --tint-hue: 100deg; }

.crumbs{
  font-family:var(--font-mono);
  font-size:12px;
  color:#B9B4D6;
  letter-spacing:.05em;
  margin-bottom:18px;
}
.crumbs a{ color:var(--magenta-2); }

/* ---------- form ---------- */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field{ display:flex; flex-direction:column; gap:6px; }
.field.full{ grid-column:1 / -1; }
.field label{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--steel);
}
.field input, .field select, .field textarea{
  font-family:var(--font-body);
  font-size:15px;
  padding:11px 14px;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--ink);
  border-radius:var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--magenta);
}
.field textarea{ resize:vertical; min-height:96px; }

/* ---------- resume / file upload control ---------- */
.file-drop{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  border:1.5px dashed var(--line);
  background:var(--surface);
  padding:16px 18px;
  border-radius:var(--radius);
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease;
}
.file-drop:hover, .file-drop.has-file{ border-color:var(--magenta); background:#FBF7FB; }
.file-drop input[type="file"]{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
  width:100%;
  height:100%;
}
.file-drop-icon{
  flex-shrink:0;
  width:38px; height:38px;
  border-radius:50%;
  background:var(--paper);
  display:flex; align-items:center; justify-content:center;
  color:var(--indigo);
  font-family:var(--font-mono);
  font-size:15px;
}
.file-drop-text{ font-size:14px; color:var(--steel); }
.file-drop-text strong{ color:var(--ink); font-weight:600; }
.file-drop-name{ font-family:var(--font-mono); font-size:12.5px; color:var(--magenta); margin-top:2px; display:block; }
.file-hint{ font-size:12px; color:var(--steel-soft); margin-top:6px; }
.form-status{ margin-top:14px; font-size:13.5px; }
.form-status-error{ color:var(--magenta); }
.form-status-success{ color:#1E7A46; font-weight:600; }

.contact-info-row{ display:flex; gap:16px; align-items:flex-start; padding:20px 0; border-top:1px solid var(--line); }
.contact-info-row:last-child{ }
.contact-info-row .ico{ font-family:var(--font-mono); color:var(--magenta); font-size:12px; padding-top:3px; }
.contact-info-row h4{ font-size:15px; margin-bottom:4px; }
.contact-info-row p, .contact-info-row a{ color:var(--steel); font-size:14.5px; }

/* ---------- job listings (grid of cards, no per-row button —
   every card leads to the single shared apply form) ---------- */
.job-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.job-card{
  display:block;
  background:var(--surface);
  padding:28px 26px;
  transition:background .2s ease;
}
.job-card:hover{ background:var(--paper); }
.job-card h3{ font-size:17px; margin-bottom:8px; }
.job-card .meta{ font-family:var(--font-mono); font-size:12px; color:var(--steel); line-height:1.6; }

/* ---------- values / benefits grid ---------- */
.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.value-card .n{ font-family:var(--font-mono); font-size:34px; color:var(--magenta); opacity:.5; }
.value-card h3{ margin:10px 0 8px; font-size:17px; }
.value-card p{ color:var(--steel); font-size:14.5px; }

/* ---------- engagement models ---------- */
.model-list{ border-top:1px solid var(--line); }
.model-row{
  display:grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap:24px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
  align-items:baseline;
}
.model-row .tag{ font-family:var(--font-mono); font-size:12px; color:var(--magenta); }
.model-row h3{ font-size:19px; }
.model-row p{ color:var(--steel); font-size:14.5px; }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero{ height:auto; min-height:0; padding:56px 0; }
  .hero::before{ background-position:65% center; }
  .hero::after{ background:linear-gradient(180deg, rgb(var(--tint) / 0.92) 0%, rgb(var(--tint) / 0.88) 60%, rgb(var(--tint) / 0.76) 100%); }
  .hero-chips{ display:none; }
  .page-hero{ height:auto; min-height:0; padding:44px 0 40px; }
  .page-hero::before{ background-position:65% center; }
  .page-hero::after{ background:linear-gradient(180deg, rgb(var(--tint) / 0.94) 0%, rgb(var(--tint) / 0.9) 60%, rgb(var(--tint) / 0.8) 100%); }
  .split{ grid-template-columns:1fr; gap:36px; }
  .job-grid{ grid-template-columns:repeat(2,1fr); }
  .promo-card-grid{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .check-grid{ grid-template-columns:repeat(2,1fr); }
  .check-item:nth-child(4n){ border-right:1px solid var(--line); }
  .check-item:nth-child(even){ border-right:none; }
  .value-grid{ grid-template-columns:1fr 1fr; }
  .hero-stats .wrap{ grid-template-columns:repeat(2,1fr); }
  .hero-stats .stat:nth-child(2){ border-right:none; }
  .promo-inner{ min-height:0; padding-top:48px; padding-bottom:32px; flex-direction:column; align-items:flex-start; }
  .promo-copy{ max-width:100%; }
  .tile-field{
    position:static;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:32px;
    width:100%;
  }
  .svc-tile{ position:static; transform:none !important; }
}
@media (max-width: 760px){
  nav.main-nav{
    position:fixed; inset:64px 0 0 0; z-index:150;
    background:#F5F4FA; opacity:1;
    box-shadow:-8px 0 24px rgba(20,15,50,0.12);
    display:flex; align-items:flex-start; padding:24px 32px;
    transform:translateX(100%); transition:transform .3s ease;
  }
  nav.main-nav.open{ transform:translateX(0); }
  nav.main-nav ul{ flex-direction:column; gap:0; width:100%; }
  nav.main-nav li{ border-bottom:1px solid var(--line); width:100%; }
  nav.main-nav a{ display:block; padding:18px 0; font-size:14px; }
  .menu-toggle{ display:flex; }
  .header-cta .btn-primary{ display:none; }
  .promo-card-grid{ grid-template-columns:1fr; }
  .vendor-row{ flex-direction:column; gap:10px; }
  .vendor-label{ width:auto; }
  .grid-3{ grid-template-columns:1fr; }
  .job-grid{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .check-grid{ grid-template-columns:1fr; }
  .check-item{ border-right:none !important; }
  .footer-grid{ grid-template-columns:1fr; }
  .value-grid{ grid-template-columns:1fr; }
  .model-row{ grid-template-columns:1fr; gap:6px; }
  .form-grid{ grid-template-columns:1fr; }
  .cta-banner .wrap{ flex-direction:column; align-items:flex-start; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .footer-bottom a{ margin-left:0; margin-right:14px; }
  .promo-inner{ padding-top:40px; padding-bottom:32px; }
  .svc-tile{
    width:64px !important;
    height:64px !important;
    font-size:13px !important;
  }
}
