/* =====================================================================
   ALL PRO BUILDERS INC — elevated design system  v2
   Display: Oswald  •  Body: Inter
   Steel ink + cyan (wolf eyes) + safety amber. Blueprint & hazard motifs.
   ===================================================================== */

:root {
  --ink:      #0b0e13;
  --ink-2:    #11151c;
  --ink-3:    #181e27;
  --steel:    #6b747d;
  --steel-lt: #aeb6bd;
  --line:     #e7ebf0;
  --line-dk:  rgba(255,255,255,.08);
  --paper:    #ffffff;
  --paper-2:  #f4f6f9;
  --cyan:     #1fbfe6;
  --cyan-dk:  #0fa3c7;
  --cyan-ink: #042a35;
  --amber:    #f7a823;
  --txt:      #2a313b;
  --txt-mut:  #67717d;
  --maxw: 1240px;
  --r: 16px;
  --shadow:    0 18px 50px rgba(11,14,19,.12);
  --shadow-lg: 0 34px 80px rgba(11,14,19,.22);
  --ease: cubic-bezier(.22,.8,.3,1);
  --hazard: repeating-linear-gradient(-45deg,
              var(--amber) 0 14px, var(--ink) 14px 28px);
  --grid-light: linear-gradient(rgba(31,191,230,.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(31,191,230,.06) 1px, transparent 1px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--txt);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--cyan); color: var(--cyan-ink); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2c3540; border-radius: 6px; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--cyan-dk); }

h1, h2, h3, h4 {
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
a { color: var(--cyan-dk); text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 6px; }

/* ---------------- Eyebrow / kicker ---------------- */
.eyebrow {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan-dk);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}
.eyebrow::before { content: ""; width: 42px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--amber)); }
.eyebrow.center::after { content: ""; width: 42px; height: 2px; background: linear-gradient(90deg, var(--amber), var(--cyan)); }

/* ---------------- Section scaffolding ---------------- */
.section { position: relative; padding: 130px 0; }
.section-head { position: relative; max-width: 780px; margin: 0 auto 70px; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5vw, 56px); }
.section-head p { color: var(--txt-mut); font-size: 19px; margin: 18px auto 0; max-width: 620px; }

/* ghost index number behind section heads */
.ghost {
  position: absolute;
  top: -76px; left: 50%;
  transform: translateX(-50%);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(110px, 16vw, 180px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(31,191,230,.16);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.on-dark .ghost { -webkit-text-stroke-color: rgba(255,255,255,.07); }
.section-head > *:not(.ghost) { position: relative; z-index: 1; }

/* hazard divider strip */
.hazard-strip { height: 10px; background: var(--hazard); }

/* ---------------- Buttons ---------------- */
.btn {
  --bg: var(--cyan);
  --fg: var(--cyan-ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.btn .arr { display: inline-block; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(31,191,230,.35); }
.btn:hover .arr { transform: translateX(5px); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.btn--amber { --bg: var(--amber); --fg: #2a1c00; }
.btn--amber:hover { box-shadow: 0 14px 30px rgba(247,168,35,.4); }
.btn--dark { --bg: var(--ink); --fg: #fff; }
.btn--dark:hover { box-shadow: 0 14px 30px rgba(11,14,19,.4); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: #fff; color: var(--ink); box-shadow: none; }
.btn--ghost-ink { background: transparent; color: var(--ink); border-color: rgba(11,14,19,.35); }
.btn--ghost-ink:hover { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: none; }
.btn--lg { padding: 19px 40px; font-size: 17px; }

/* ---------------- Logo lockup ---------------- */
.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo img { width: 48px; height: 48px; }
.logo .wordmark { display: flex; flex-direction: column; line-height: .92; }
.logo .wordmark b {
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 21px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink);
  transition: color .3s;
}
.logo .wordmark span {
  font-family: "Oswald", sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 5px; color: var(--cyan-dk);
}

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 300;
  padding: 20px 0;
  transition: background-color .35s var(--ease), box-shadow .35s, padding .35s var(--ease), backdrop-filter .35s;
}
.site-header .container { display: flex; align-items: center; gap: 30px; }
.site-header.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(11,14,19,.1);
  padding: 12px 0;
}
.site-header:not(.solid) .logo .wordmark b { color: #fff; }
.site-header:not(.solid) .main-nav > ul > li > a { color: rgba(255,255,255,.92); }
.site-header:not(.solid) .header-phone { color: #fff; }
.site-header:not(.solid) .nav-toggle { color: #fff; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.main-nav a {
  font-family: "Oswald", sans-serif; font-weight: 500; font-size: 14.5px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink);
  position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Oswald", sans-serif; font-weight: 600; font-size: 16px;
  letter-spacing: .6px; color: var(--ink);
}
.header-phone svg { width: 17px; height: 17px; fill: var(--cyan); }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 28px; height: 24px; fill: currentColor; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--ink);
  padding: 170px 0 140px;
  overflow: hidden;
}
/* blueprint grid */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grid-light);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 30%, transparent 75%);
}
/* photo panel clipped on the right */
.hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0; width: 52%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.06);
  will-change: transform;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(78deg, var(--ink) 0%, rgba(11,14,19,.62) 38%, rgba(11,14,19,.18) 100%);
}
/* thin cyan seam along the clip edge */
.hero-photo::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: calc(18% - 3px);
  width: 3px; background: linear-gradient(var(--cyan), var(--amber));
  z-index: 2; transform: skewX(-9.7deg); transform-origin: top;
}

.hero-inner { position: relative; z-index: 3; max-width: 720px; }
.hero .eyebrow { color: var(--cyan); }
.hero h1 {
  color: #fff;
  font-size: clamp(48px, 8.4vw, 104px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .5px;
}
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--cyan);
}
.hero p.lede { font-size: 20px; color: rgba(255,255,255,.82); margin: 30px 0 40px; max-width: 580px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* trust chips under CTAs */
.hero-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 9px 18px;
  font-family: "Oswald", sans-serif; font-size: 13px; letter-spacing: 1.6px;
  text-transform: uppercase; color: rgba(255,255,255,.85);
}
.chip svg { width: 14px; height: 14px; fill: var(--amber); }

/* ---------------- Trades ticker ---------------- */
.ticker {
  position: relative;
  background: var(--ink-2);
  border-top: 1px solid var(--line-dk);
  border-bottom: 1px solid var(--line-dk);
  overflow: hidden;
  padding: 22px 0;
}
.ticker::before, .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink-2), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--ink-2), transparent); }
.ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: "Oswald", sans-serif;
  font-size: 19px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  padding: 0 24px;
  display: inline-flex; align-items: center; gap: 24px;
}
.ticker-track span::after { content: "✦"; color: var(--cyan); font-size: 13px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------------- Stats ---------------- */
.stats { background: var(--ink); color: #fff; position: relative; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 58px 24px; text-align: center; border-right: 1px solid var(--line-dk); position: relative; }
.stat:last-child { border-right: none; }
.stat::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 0; height: 3px; background: var(--cyan); transition: width .4s var(--ease);
}
.stat:hover::after { width: 60%; }
.stat .num { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 56px; color: var(--cyan); line-height: 1; }
.stat .label { text-transform: uppercase; letter-spacing: 2px; font-size: 13.5px; color: rgba(255,255,255,.62); margin-top: 10px; font-family: "Oswald", sans-serif; }

/* ---------------- About ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-media .frame {
  position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-media .frame img { transition: transform .8s var(--ease); }
.about-media:hover .frame img { transform: scale(1.04); }
/* hazard corner tab */
.about-media::after {
  content: ""; position: absolute; top: -12px; right: 22px; width: 96px; height: 12px;
  background: var(--hazard); border-radius: 3px;
}
.about-media .badge {
  position: absolute; right: -24px; bottom: -28px;
  background: var(--ink); color: #fff;
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1.4px;
  padding: 24px 30px; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-weight: 600; line-height: 1.15; text-align: center; font-size: 13px;
  border: 1px solid rgba(31,191,230,.35);
}
.about-media .badge span { display: block; font-size: 40px; font-weight: 700; color: var(--cyan); }
.about h2 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 24px; }
.about p { color: var(--txt-mut); }
.checks { list-style: none; margin: 30px 0 38px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.checks li { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 16px; color: var(--ink); }
.checks svg { width: 21px; height: 21px; fill: var(--cyan); flex: none; }

/* ---------------- Trades grid ---------------- */
.trades { background: var(--paper-2); position: relative; }
.trades::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(11,14,19,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(11,14,19,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(#000, transparent 60%);
  pointer-events: none;
}
.trades .container { position: relative; }
.trades-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trade {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 34px 28px 30px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.trade::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.trade:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.trade:hover::before { transform: scaleX(1); }
.trade .ic {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(31,191,230,.1);
  display: grid; place-items: center; margin-bottom: 20px;
  transition: background-color .3s, transform .3s var(--ease);
}
.trade:hover .ic { background: var(--ink); transform: rotate(-6deg) scale(1.05); }
.trade .ic svg { width: 28px; height: 28px; fill: var(--cyan-dk); transition: fill .3s; }
.trade:hover .ic svg { fill: var(--cyan); }
.trade h3 { font-size: 20px; margin-bottom: 8px; }
.trade p { font-size: 15px; color: var(--txt-mut); margin: 0; }
.trade .idx {
  position: absolute; top: 22px; right: 24px;
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 15px;
  color: rgba(11,14,19,.16); letter-spacing: 1px;
}

/* ---------------- Sectors ---------------- */
.sectors { background: var(--ink); }
.sectors .section-head h2 { color: #fff; }
.sectors .section-head p { color: rgba(255,255,255,.65); }
.sector-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.sector {
  position: relative; min-height: 420px; border-radius: var(--r); overflow: hidden;
  display: flex; align-items: flex-end; color: #fff;
  border: 1px solid var(--line-dk);
}
.sector img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; filter: saturate(.85); }
.sector::before { content: ""; position: absolute; inset: 0; background: linear-gradient(8deg, rgba(8,10,14,.95) 12%, rgba(8,10,14,.25) 62%); z-index: 1; transition: opacity .4s; }
.sector:hover img { transform: scale(1.07); filter: saturate(1.05); }
.sector .body { position: relative; z-index: 2; padding: 40px; width: 100%; }
.sector h3 { color: #fff; font-size: 32px; display: flex; align-items: center; gap: 14px; }
.sector h3::before { content: ""; width: 30px; height: 3px; background: var(--cyan); flex: none; }
.sector p { color: rgba(255,255,255,.78); margin: 10px 0 0; font-size: 16px; max-width: 440px; }
.sector .arrow {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  color: var(--cyan); font-family: "Oswald",sans-serif; text-transform: uppercase;
  letter-spacing: 2px; font-size: 14.5px;
}
.sector .arrow .arr { transition: transform .25s var(--ease); }
.sector:hover .arrow .arr { transform: translateX(6px); }

/* ---------------- Why us ---------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  position: relative;
  padding: 36px 32px; border-radius: var(--r); background: #fff; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.feature::after {
  content: ""; position: absolute; right: -42px; bottom: -42px; width: 120px; height: 120px;
  border-radius: 50%; background: radial-gradient(circle, rgba(31,191,230,.12), transparent 70%);
  transition: transform .4s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature:hover::after { transform: scale(1.6); }
.feature .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--ink); display: grid; place-items: center; margin-bottom: 20px; }
.feature .ic svg { width: 26px; height: 26px; fill: var(--cyan); }
.feature h3 { font-size: 20px; margin-bottom: 9px; }
.feature p { font-size: 15px; color: var(--txt-mut); margin: 0; }

/* ---------------- Process ---------------- */
.process { background: var(--paper-2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.step { position: relative; padding: 26px 28px 0; }
.step + .step { border-left: 1px dashed rgba(11,14,19,.16); }
.step .n {
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 64px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.6px var(--cyan-dk);
}
.step h3 { font-size: 21px; margin: 14px 0 10px; }
.step p { font-size: 15px; color: var(--txt-mut); margin: 0; }

/* ---------------- Testimonials ---------------- */
.testimonials { background: var(--ink); overflow: hidden; }
.testimonials::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grid-light); background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000, transparent 80%);
}
.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head p { color: rgba(255,255,255,.65); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.t-card {
  position: relative;
  background: var(--ink-3); border: 1px solid var(--line-dk); border-radius: var(--r);
  padding: 38px 32px 32px; color: #fff;
  transition: transform .3s var(--ease), border-color .3s;
}
.t-card:hover { transform: translateY(-6px); border-color: rgba(31,191,230,.4); }
.t-card .quote {
  position: absolute; top: 22px; right: 28px;
  font-family: Georgia, serif; font-size: 84px; line-height: 1;
  color: rgba(31,191,230,.18);
}
.t-card .stars { color: var(--amber); letter-spacing: 4px; margin-bottom: 16px; font-size: 15px; }
.t-card p { color: rgba(255,255,255,.8); font-size: 15.5px; }
.t-card .who { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-dk); }
.t-card .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg,var(--cyan),var(--cyan-dk));
  display: grid; place-items: center;
  font-family: "Oswald",sans-serif; font-weight: 700; color: var(--cyan-ink);
}
.t-card .who b { font-family: "Oswald",sans-serif; letter-spacing: .8px; text-transform: uppercase; font-size: 15px; }
.t-card .who small { display: block; color: rgba(255,255,255,.5); font-size: 13px; }

/* ---------------- CTA band ---------------- */
.cta-band {
  position: relative; color: #fff; padding: 120px 0; overflow: hidden;
  background: linear-gradient(115deg, #0a6e8c 0%, var(--cyan-dk) 55%, #15b4d8 100%);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 90% at 80% 50%, #000, transparent 75%);
}
.cta-band .container { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(34px, 5vw, 60px); }
.cta-band p { color: rgba(255,255,255,.88); font-size: 19px; margin: 18px 0 0; max-width: 560px; }
.cta-band .hero-cta { justify-content: flex-end; }
.cta-band .hazard-strip { position: absolute; left: 0; right: 0; top: 0; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: start; }
.contact-info h2 { font-size: clamp(32px,4vw,50px); margin-bottom: 20px; }
.contact-info p { color: var(--txt-mut); }
.info-list { list-style: none; margin: 34px 0; padding: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 18px; align-items: flex-start; }
.info-list .ic {
  width: 50px; height: 50px; border-radius: 12px; background: var(--ink);
  display: grid; place-items: center; flex: none;
}
.info-list .ic svg { width: 22px; height: 22px; fill: var(--cyan); }
.info-list b { font-family: "Oswald",sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; color: var(--txt-mut); display: block; }
.info-list a, .info-list span.val { color: var(--ink); font-size: 17px; font-weight: 600; }
.portal-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.contact-form {
  position: relative;
  background: var(--ink); border-radius: var(--r); padding: 44px;
  box-shadow: var(--shadow-lg);
}
.contact-form::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  border-radius: 0 0 4px 4px;
}
.contact-form .form-title {
  font-family: "Oswald",sans-serif; color: #fff; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 22px; margin-bottom: 26px; font-weight: 600;
}
.form-success { display: none; background: rgba(38,194,116,.12); color: #4fdd96; border: 1px solid rgba(38,194,116,.4); padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; }
.field { margin-bottom: 20px; }
.fields-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fields-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.field select {
  width: 100%; padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  font: inherit; color: #fff; background: rgba(255,255,255,.05);
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15' fill='%231fbfe6'%3E%3Cpath d='M2.1 3.2l5.4 5.4 5.4-5.4L15 4.3 7.5 11.8 0 4.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 12px;
  cursor: pointer;
}
.field select:focus { outline: none; border-color: var(--cyan); background-color: rgba(31,191,230,.06); box-shadow: 0 0 0 4px rgba(31,191,230,.16); }
.field select option { color: #111; }
.field input[type="file"] { padding: 12px 14px; cursor: pointer; }
.field input[type="date"] { color-scheme: dark; }
.field label {
  display: block; font-family: "Oswald",sans-serif; text-transform: uppercase;
  letter-spacing: 1.6px; font-size: 12.5px; color: rgba(255,255,255,.6); margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%; padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  font: inherit; color: #fff; background: rgba(255,255,255,.05);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.32); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: rgba(31,191,230,.06);
  box-shadow: 0 0 0 4px rgba(31,191,230,.16);
}
.field textarea { min-height: 140px; resize: vertical; }
.char-count { font-size: 12px; color: rgba(255,255,255,.4); text-align: right; margin-top: 5px; }
.contact-form .btn { width: 100%; }
.form-error { display: none; background: rgba(237,5,5,.12); color: #ff8a8a; border: 1px solid rgba(237,5,5,.4); padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; }
.contact-form .consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 22px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.5; cursor: pointer; }
.contact-form .consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--cyan); }
.contact-form .btn[disabled] { opacity: .6; cursor: default; transform: none; box-shadow: none; }

/* ---------------- Careers / Apply ---------------- */
.apply { background: var(--paper-2); position: relative; }
.apply-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.apply-aside { position: sticky; top: 110px; }
.apply-doc {
  background: var(--ink); color: #fff; border-radius: var(--r);
  padding: 40px 36px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.apply-doc::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8px; background: var(--hazard); }
.apply-doc .doc-ic { width: 64px; height: 64px; border-radius: 16px; background: rgba(31,191,230,.14); display: grid; place-items: center; margin: 10px 0 20px; }
.apply-doc .doc-ic svg { width: 30px; height: 30px; fill: var(--cyan); }
.apply-doc h3 { color: #fff; font-size: 26px; margin-bottom: 12px; }
.apply-doc p { color: rgba(255,255,255,.72); font-size: 15.5px; margin-bottom: 24px; }
.apply-doc .btn { width: 100%; margin-bottom: 26px; }
.apply-points { list-style: none; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--line-dk); display: grid; gap: 14px; }
.apply-points li { display: flex; gap: 11px; align-items: center; font-size: 14.5px; color: rgba(255,255,255,.82); }
.apply-points svg { width: 18px; height: 18px; fill: var(--cyan); flex: none; }
.apply-form { background: var(--ink); }

/* homepage apply: two choice cards */
.apply-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 920px; margin: 0 auto; }
.apply-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 38px 34px; text-align: left; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.apply-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--cyan), var(--amber)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.apply-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.apply-card:hover::before { transform: scaleX(1); }
.apply-card.primary { background: var(--ink); border-color: transparent; }
.apply-card.primary h3, .apply-card.primary p { color: #fff; }
.apply-card.primary p { color: rgba(255,255,255,.74); }
.apply-card .doc-ic { width: 60px; height: 60px; border-radius: 14px; background: rgba(31,191,230,.12); display: grid; place-items: center; margin-bottom: 20px; }
.apply-card .doc-ic svg { width: 28px; height: 28px; fill: var(--cyan-dk); }
.apply-card.primary .doc-ic { background: rgba(31,191,230,.18); }
.apply-card.primary .doc-ic svg { fill: var(--cyan); }
.apply-card h3 { font-size: 24px; margin-bottom: 10px; }
.apply-card p { color: var(--txt-mut); font-size: 15.5px; margin-bottom: 22px; }
.apply-go { display: inline-flex; align-items: center; gap: 9px; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: 15px; color: var(--cyan-dk); font-weight: 600; }
.apply-card.primary .apply-go { color: var(--cyan); }
.apply-card .apply-go .arr { transition: transform .25s var(--ease); }
.apply-card:hover .apply-go .arr { transform: translateX(5px); }
.apply-help { text-align: center; margin: 36px auto 0; color: var(--txt-mut); }
.apply-help a { font-weight: 600; }
@media (max-width: 680px) { .apply-cards { grid-template-columns: 1fr; } }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 90px 0 0; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; position: relative; }
.site-footer .logo .wordmark b { color: #fff; }
.footer-about p { margin: 22px 0; font-size: 15px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.07); display: grid; place-items: center;
  transition: background-color .25s, transform .25s var(--ease);
}
.footer-socials a:hover { background: var(--cyan); transform: translateY(-3px); }
.footer-socials a:hover svg { fill: var(--cyan-ink); }
.footer-socials svg { width: 18px; height: 18px; fill: #fff; transition: fill .25s; }
.site-footer h4 { color: #fff; font-size: 15px; letter-spacing: 2.5px; margin-bottom: 24px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.site-footer ul a { color: rgba(255,255,255,.62); font-size: 15px; transition: color .2s, padding-left .2s var(--ease); }
.site-footer ul a:hover { color: var(--cyan); padding-left: 6px; }
.footer-contact .line { display: flex; gap: 12px; margin-bottom: 15px; font-size: 15px; }
.footer-contact svg { width: 17px; height: 17px; fill: var(--cyan); flex: none; margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,.62); }
.footer-contact a:hover { color: var(--cyan); }

/* giant outline wordmark */
.footer-mark {
  margin-top: 70px;
  font-family: "Oswald", sans-serif; font-weight: 700;
  font-size: clamp(54px, 10.4vw, 150px);
  line-height: 1; text-transform: uppercase; text-align: center;
  letter-spacing: 4px;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.08);
  user-select: none; white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid var(--line-dk);
  padding: 26px 0; margin-top: -28px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px;
  position: relative; background: var(--ink);
}
.footer-bottom a { color: var(--cyan); }

/* ==================================================================
   Employment application page (apply.html)
   ================================================================== */
.app-page { background: var(--paper-2); }
.app-hero {
  background: var(--ink); color: #fff;
  padding: 140px 0 70px; position: relative; overflow: hidden;
}
.app-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grid-light); background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 90% at 20% 30%, #000 30%, transparent 75%);
}
.app-hero .container { position: relative; }
.app-hero .eyebrow { color: var(--cyan); }
.app-hero h1 { color: #fff; font-size: clamp(36px, 6vw, 64px); }
.app-hero .lede { color: rgba(255,255,255,.82); font-size: 18px; margin: 18px 0 0; max-width: 680px; }
.app-hero a { color: var(--cyan); text-decoration: underline; }

.app-main { padding: 50px 0 90px; }
.app-form { max-width: 920px; margin: 0 auto; }

/* section cards */
.app-section {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 32px 32px; margin: 0 0 24px; box-shadow: 0 8px 26px rgba(11,14,19,.05);
}
.app-section > legend {
  font-family: "Oswald", sans-serif; font-weight: 600; font-size: 20px;
  text-transform: uppercase; letter-spacing: 1px; color: var(--ink);
  padding: 0 14px 0 0; margin-bottom: 8px;
}
.app-section .opt { font-size: 13px; color: var(--txt-mut); font-weight: 400; letter-spacing: 0; text-transform: none; }
.app-section.safety { border-top: 4px solid var(--amber); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.span-2 { grid-column: 1 / -1; }
.app-form .field { margin-bottom: 18px; }

/* light-theme inputs (override the dark contact-form styling) */
.app-form label { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 12.5px; color: var(--ink); margin-bottom: 7px; }
.app-form input, .app-form select, .app-form textarea {
  width: 100%; padding: 13px 15px; font: inherit; color: var(--txt);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 9px;
}
.app-form textarea { min-height: 90px; resize: vertical; }
.app-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15' fill='%230fa3c7'%3E%3Cpath d='M2.1 3.2l5.4 5.4 5.4-5.4L15 4.3 7.5 11.8 0 4.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px;
}
.app-form input:focus, .app-form select:focus, .app-form textarea:focus {
  outline: none; border-color: var(--cyan); background: #fff;
  box-shadow: 0 0 0 4px rgba(31,191,230,.15);
}
.app-form input[type="file"] { background: #fff; cursor: pointer; padding: 11px 14px; }
.field-note { font-size: 13px; color: var(--txt-mut); margin: 4px 0 0; }

/* employment history sub-blocks */
.history-block { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: 22px 22px 6px; margin-bottom: 18px; }
.history-block h4 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 15px; color: var(--cyan-dk); margin-bottom: 16px; }
.history-block .field input, .history-block .field select, .history-block .field textarea { background: #fff; }

/* certifications + check rows */
.check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.check { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 9px; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--ink); transition: border-color .2s, background-color .2s; }
.check:hover { border-color: var(--cyan); }
.check input { width: 18px; height: 18px; accent-color: var(--cyan); flex: none; }

/* consent / safety */
.app-form .consent { display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 6px; color: var(--txt); font-size: 14.5px; line-height: 1.5; cursor: pointer; }
.app-form .consent input { width: 19px; height: 19px; margin-top: 3px; flex: none; accent-color: var(--cyan); }
.safety-list { margin: 4px 0 22px; padding-left: 22px; display: grid; gap: 10px; }
.safety-list li { font-size: 14.5px; color: var(--txt); }
.safety-list li span[lang="es"], .app-form .consent span[lang="es"] { color: var(--txt-mut); font-style: italic; }

/* status boxes (reuse colors) */
.app-form .form-success, .app-form .form-error { font-size: 15px; }
.app-form .form-success { background: #e7f9ef; color: #1d7a44; border: 1px solid #b7e6c9; padding: 16px 18px; border-radius: 10px; margin-bottom: 22px; display: none; }
.app-form .form-error { background: #fdeaea; color: #b42318; border: 1px solid #f3c0bd; padding: 16px 18px; border-radius: 10px; margin-bottom: 22px; display: none; }
.app-form .form-error a, .app-form .form-success a { color: inherit; text-decoration: underline; }

/* honeypot — off-screen, never shown to users */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.app-submit { text-align: center; margin-top: 8px; }
.app-submit .btn { min-width: 280px; }
.app-submit .field-note { margin-top: 14px; }

@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .app-section { padding: 24px 20px; }
  .app-hero { padding: 120px 0 56px; }
}

/* ---------------- Back to top ---------------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 250;
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--ink); color: var(--cyan);
  border: 1px solid rgba(31,191,230,.4);
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease), background-color .25s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--cyan); color: var(--cyan-ink); }
.to-top svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------------- Reveal motion ---------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
  .hero-photo { width: 46%; opacity: .65; }
}
@media (max-width: 1024px) {
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { padding-bottom: 34px; }
  .step:nth-child(3) { border-left: none; }
  .t-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band .hero-cta { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(11,14,19,.98); backdrop-filter: blur(10px); padding: 14px 0; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { padding: 0 28px; }
  .main-nav a { display: block; padding: 15px 0; color: #fff !important; border-bottom: 1px solid var(--line-dk); }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-phone, .site-header .btn { display: none; }
  .hero { padding: 140px 0 110px; }
  .hero-photo { width: 100%; clip-path: none; opacity: .22; }
  .hero-photo::before { display: none; }
  .split, .contact-grid, .apply-grid { grid-template-columns: 1fr; gap: 50px; }
  .apply-aside { position: static; }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .section { padding: 90px 0; }
  .about-media .badge { right: 14px; }
}
@media (max-width: 620px) {
  .trades-grid, .features, .steps, .t-grid, .sector-grid, .footer-grid, .checks, .fields-2, .fields-3 { grid-template-columns: 1fr; }
  .step + .step { border-left: none; border-top: 1px dashed rgba(11,14,19,.16); padding-top: 30px; }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .to-top { right: 16px; bottom: 16px; }
}
