/* =============================================================================
   Happy Transport — "Sunrise Logistics"
   A light, warm identity drawn straight from the logo: a navy truck driving
   into an orange sunrise. Navy + orange + warm cream. Deliberately bright and
   optimistic — the opposite of a dark industrial freight site.

   Type:  Bricolage Grotesque (display) · Hanken Grotesk (body)
   This stylesheet is self-contained to this site (no shared assets).
   ============================================================================ */

/* ---------- Tokens ---------- */
:root {
  /* brand (sampled from assets/logo.png) */
  --navy:        #0B2D4D;   /* primary ink / headings */
  --navy-deep:   #04243F;   /* deepest — footer, careers panel */
  --navy-700:    #143A5C;
  --orange:      #FD6801;   /* the sunrise */
  --orange-600:  #E85D00;   /* press / hover */
  --orange-300:  #FFB066;

  /* warm surfaces */
  --paper:       #FAF5EE;   /* page background (warm cream) */
  --paper-2:     #F4ECE0;   /* alternating section */
  --peach:       #FFE6CF;   /* sunrise tint */
  --peach-soft:  #FFF2E5;
  --sky:         #FFF8F0;   /* top of the sky gradient */
  --card:        #FFFFFF;
  --white:       #FFFFFF;

  /* text */
  --ink:         #0B2D4D;
  --ink-soft:    #4C5B6B;
  --ink-faint:   #8A95A1;
  --on-navy:     #EAF1F8;
  --on-navy-soft:#9FB3C6;

  /* lines */
  --line:        #E8DECF;
  --line-soft:   #F0E8DB;
  --line-navy:   rgba(255,255,255,.12);

  /* shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow-sm: 0 4px 14px -8px rgba(11,45,77,.30);
  --shadow:    0 22px 48px -28px rgba(11,45,77,.40);
  --shadow-lg: 0 40px 80px -40px rgba(11,45,77,.50);
  --shadow-sun:0 24px 50px -24px rgba(253,104,1,.45);

  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --container: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--orange-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.eyebrow--on-navy { color: var(--orange-300); }

.u-sun { color: var(--orange); }

.arrow { display: inline-block; transition: transform .2s ease; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  padding: .9rem 1.45rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .22s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { text-decoration: none; }
.btn:focus-visible { outline: 3px solid var(--orange-300); outline-offset: 2px; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-sun);
}
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11,45,77,.20);
}
.btn--ghost:hover { border-color: var(--navy); background: rgba(11,45,77,.04); transform: translateY(-2px); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.42);
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.10); transform: translateY(-2px); }

.btn--sm  { padding: .62rem 1.05rem; font-size: .9rem; }
.btn--lg  { padding: 1.05rem 1.8rem; font-size: 1.06rem; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,245,238,.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  height: 76px;
}

/* brand lockup */
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__logo { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  color: var(--navy);
}
.brand__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-top: 4px;
}

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.9rem; }
.site-nav a {
  font-weight: 600;
  font-size: .96rem;
  color: var(--navy);
  text-decoration: none;
  position: relative;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: right .25s ease;
}
.site-nav a:not(.btn):hover { text-decoration: none; }
.site-nav a:not(.btn):hover::after { right: 0; }
.site-nav .btn { color: #fff; }
.site-nav .btn--ghost { color: var(--navy); }

/* hamburger */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 6.5rem); }
.hero__sky {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 92% 12%, rgba(253,104,1,.20), transparent 55%),
    linear-gradient(180deg, var(--sky) 0%, var(--peach-soft) 38%, var(--paper) 100%);
}
/* the rising sun behind the photo */
.hero__sky::after {
  content: "";
  position: absolute;
  width: clamp(420px, 46vw, 720px);
  aspect-ratio: 1;
  right: -8%;
  top: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(253,104,1,.55), rgba(253,104,1,.16) 46%, transparent 70%);
  filter: blur(6px);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__copy > * + * { margin-top: 1.4rem; }
.hero__title {
  font-size: clamp(2.6rem, 5.6vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -.025em;
}
.hero__lede {
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 34ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__creds {
  list-style: none; margin: 1.8rem 0 0; padding: 1.2rem 0 0;
  display: flex; flex-wrap: wrap; gap: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: .95rem; color: var(--ink-soft);
}
.hero__creds b { color: var(--orange-600); font-weight: 800; letter-spacing: .04em; margin-right: .35rem; }

/* hero media */
.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  outline: 1px solid var(--line);
  aspect-ratio: 4 / 3.1;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: -22px; bottom: -22px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r);
  padding: .95rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 2px;
  border: 1px solid var(--navy-700);
}
.hero__badge-num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--orange-300); line-height: 1; }
.hero__badge-label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-navy-soft); font-weight: 700; }

/* ---------- Proof / credentials strip ---------- */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.proof__cell {
  padding: 1.9rem 1.2rem;
  text-align: center;
  position: relative;
}
.proof__cell + .proof__cell::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: var(--line);
}
.proof__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1;
}
.proof__num .pre { color: var(--orange); font-size: .55em; vertical-align: .12em; margin-right: .12em; }
.proof__label { display: block; margin-top: .5rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--alt { background: var(--paper-2); }
.section__head { max-width: 52rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head h2 { font-size: clamp(2rem, 4vw, 3.05rem); margin-top: .7rem; }
.section__head .lede { margin-top: 1rem; font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; }

/* services cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  color: var(--orange);
  letter-spacing: .08em;
}
.card h3 { font-size: 1.32rem; margin: .9rem 0 .55rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Road band (the one rich photo divider) ---------- */
.band { position: relative; isolation: isolate; }
.band__bg { position: absolute; inset: 0; z-index: -2; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band__bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(4,36,63,.92) 0%, rgba(4,36,63,.74) 42%, rgba(11,45,77,.28) 100%);
}
.band .container { position: relative; padding-block: clamp(4rem, 9vw, 7rem); }
.band__copy { max-width: 40rem; color: #fff; }
.band__copy h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin: .8rem 0 1rem; }
.band__copy p { color: var(--on-navy); font-size: 1.12rem; }

/* ---------- Feature split (portrait dusk photo + about) ---------- */
.feature .container { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature__media { position: relative; }
.feature__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  outline: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.feature__photo img { width: 100%; height: 100%; object-fit: cover; }
.feature__media::before {
  content: ""; position: absolute; inset: auto -18px -18px auto;
  width: 60%; height: 60%; z-index: -1;
  border-radius: var(--r-xl);
  background: radial-gradient(circle at 70% 70%, var(--peach), transparent 70%);
}
.feature__body > * + * { margin-top: 1.3rem; }
.feature__body h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.feature__body p { color: var(--ink-soft); font-size: 1.08rem; }
.feature__body strong { color: var(--navy); }
.feature__stats { display: flex; gap: 2.2rem; flex-wrap: wrap; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.feature__stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--orange); line-height: 1; }
.feature__stat span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }

/* ---------- Standards ---------- */
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.standard {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.35rem 1.4rem;
}
.standard__n {
  flex: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: var(--navy);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.standard:nth-child(3n+1) .standard__n { background: var(--orange); }
.standard p { font-weight: 600; color: var(--navy); line-height: 1.35; }

/* ---------- Careers (rich navy panel) ---------- */
.careers .container {
  background:
    radial-gradient(110% 120% at 100% 0%, rgba(253,104,1,.22), transparent 55%),
    var(--navy-deep);
  border-radius: var(--r-xl);
  padding: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  box-shadow: var(--shadow);
}
.careers__copy { color: #fff; }
.careers__copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); margin: .7rem 0 1rem; }
.careers__copy .lede { color: var(--on-navy); font-size: 1.08rem; max-width: 40ch; }
.positions { list-style: none; margin: 1.6rem 0 1.9rem; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.positions li {
  font-weight: 700; font-size: .9rem;
  color: var(--on-navy);
  border: 1px solid var(--line-navy);
  border-radius: 999px;
  padding: .5rem .95rem;
  background: rgba(255,255,255,.04);
}
.perks { list-style: none; margin: 0; padding: 0; background: rgba(255,255,255,.05); border: 1px solid var(--line-navy); border-radius: var(--r-lg); overflow: hidden; }
.perks li { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.3rem; border-bottom: 1px solid var(--line-navy); }
.perks li:last-child { border-bottom: 0; }
.perks span { color: var(--on-navy-soft); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.perks b { color: #fff; font-weight: 700; text-align: right; }

/* ---------- Contact ---------- */
.contact .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__intro h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: .7rem 0 1rem; }
.contact__intro p { color: var(--ink-soft); font-size: 1.08rem; max-width: 38ch; }
.contact__list { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--navy); }
.contact__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.contact__list span { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 800; flex: none; }
.contact__list a, .contact__list address { font-style: normal; font-weight: 600; color: var(--navy); text-align: right; }
.contact__list a:hover { color: var(--orange-600); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--on-navy);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.site-footer__row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.4rem; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: var(--orange-300); }
.site-footer__about { margin-top: 1.1rem; color: var(--on-navy-soft); font-size: .96rem; max-width: 34ch; }
.site-footer__h { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-300); font-weight: 800; margin-bottom: .9rem; }
.site-footer__creds, .site-footer__addr { color: var(--on-navy); font-size: .96rem; line-height: 1.9; }
.site-footer__addr a { color: var(--on-navy); }
.site-footer__addr a:hover { color: #fff; }
.site-footer__links { display: flex; flex-direction: column; gap: .6rem; }
.site-footer__links a { color: var(--on-navy); font-size: .96rem; }
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom {
  margin-top: 2.6rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line-navy);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .86rem; color: var(--on-navy-soft);
}
.site-footer__bottom a { color: var(--on-navy-soft); text-decoration: underline; }
.site-footer__bottom a:hover { color: #fff; }

/* ---------- Subpage hero (legal / apply) ---------- */
.subpage-hero { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.2rem, 4vw, 3.2rem); background: linear-gradient(180deg, var(--peach-soft), var(--paper)); border-bottom: 1px solid var(--line); }
.subpage-hero::after {
  content: ""; position: absolute; right: -6%; top: -40%;
  width: 420px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,104,1,.30), transparent 68%);
}
.subpage-hero .container { position: relative; z-index: 1; }
.subpage-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin: .6rem 0 .8rem; }
.subpage-hero p { color: var(--ink-soft); max-width: 56ch; font-size: 1.08rem; }

/* ---------- Legal article ---------- */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.legal__article { max-width: 760px; }
.legal__updated { display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--orange-600); background: var(--peach-soft); border: 1px solid var(--peach); padding: .4rem .8rem; border-radius: 999px; margin-bottom: 2rem; }
.legal__article h2 { font-size: 1.5rem; margin: 2.4rem 0 .8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.legal__article h3 { font-size: 1.12rem; margin: 1.6rem 0 .5rem; color: var(--navy-700); }
.legal__article p, .legal__article li { color: var(--ink-soft); font-size: 1.02rem; }
.legal__article p + p { margin-top: 1rem; }
.legal__article ul { margin: .8rem 0; padding-left: 1.3rem; }
.legal__article li { margin: .45rem 0; }
.legal__article strong { color: var(--navy); }

/* ---------- Apply form (b2b-style: form + aside) ---------- */
.apply { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); }
.apply__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 1000px) { .apply__grid { grid-template-columns: 7fr 5fr; gap: clamp(2.5rem, 5vw, 4rem); } }

.apply__form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.field { display: block; margin-bottom: 1.25rem; }
.field-row { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-bottom: 1.25rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-row .field { margin-bottom: 0; }
.field__label { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .5rem; }
.field__label .req { color: var(--orange); }
.field__input, .field__textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field__input:focus, .field__textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(253,104,1,.14);
}
.field__textarea { min-height: 140px; resize: vertical; line-height: 1.5; }

.checkbox { display: flex; align-items: center; gap: .7rem; padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-size: .92rem; cursor: pointer; background: #fff; transition: border-color .16s ease; }
.checkbox:hover { border-color: var(--navy); }
.checkbox input { width: 18px; height: 18px; accent-color: var(--orange); cursor: pointer; }
.checkbox--block { padding: .85rem .95rem; }
.checkbox--consent { align-items: flex-start; padding: .95rem 1.05rem; }
.checkbox--consent input { margin-top: 3px; flex-shrink: 0; }
.checkbox--consent .checkbox__text { display: flex; flex-direction: column; gap: .5rem; }
.checkbox__lead { font-size: .94rem; color: var(--ink); }
.checkbox__fineprint { font-size: .78rem; line-height: 1.55; color: var(--ink-soft); }
.checkbox__fineprint a { color: var(--orange-600); text-decoration: underline; text-underline-offset: 2px; }
.checkbox__fineprint a:hover { text-decoration: none; }

.form-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.6rem; }
@media (min-width: 480px) { .form-actions { flex-direction: row; align-items: center; justify-content: space-between; } }
.form-note { font-size: .8rem; letter-spacing: .02em; color: var(--ink-faint); line-height: 1.5; }
.form-note .req { color: var(--orange); }
.form-actions .btn { flex-shrink: 0; white-space: nowrap; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin-top: 1.4rem; font-weight: 600; padding: 0; }
.form-status:empty { display: none; }
.form-status--success { color: #15724a; background: #e6f6ee; border: 1px solid #b8e6cf; padding: 1rem 1.2rem; border-radius: var(--r-sm); }
.form-status--error { color: #a3231b; background: #fdeceb; border: 1px solid #f4c9c5; padding: 1rem 1.2rem; border-radius: var(--r-sm); }

/* apply aside */
.apply__aside h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 1.95rem); margin-bottom: 1rem; line-height: 1.15; color: var(--navy); }
.apply__aside > p { font-size: 1.02rem; line-height: 1.6; color: var(--ink-soft); }
.apply__aside ul { list-style: none; padding: 0; display: grid; gap: .75rem; margin: 1.6rem 0 0; }
.apply__aside li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1rem; line-height: 1.5; color: var(--ink-soft); }
.apply__aside li::before { content: "\2192"; color: var(--orange); font-weight: 800; flex-shrink: 0; }
.cred-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; margin-top: 1.9rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.cred-list dt { font-size: .66rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .25rem; }
.cred-list dd { margin: 0; font-size: 1.02rem; color: var(--navy); font-weight: 700; letter-spacing: .02em; }

/* ---------- Cookie bar ---------- */
.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  background: var(--navy-deep);
  color: var(--on-navy);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--navy-700);
  transform: translateY(140%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
}
.cookie-bar.is-shown { transform: translateY(0); }
.cookie-bar.is-leaving { transform: translateY(140%); }
.cookie-bar__inner { display: flex; align-items: center; gap: 1.4rem; padding: 1rem 1.3rem; flex-wrap: wrap; }
.cookie-bar__text { font-size: .92rem; margin: 0; flex: 1 1 320px; }
.cookie-bar__text a { color: var(--orange-300); }
.cookie-bar__actions { display: flex; gap: .7rem; margin-left: auto; }

/* ---------- Entrance animations ---------- */
@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.reveal { animation: riseIn .7s cubic-bezier(.2,.7,.2,1) both; }
.hero__copy > * { animation: riseIn .7s cubic-bezier(.2,.7,.2,1) both; }
.hero__copy .eyebrow { animation-delay: .02s; }
.hero__copy .hero__title { animation-delay: .10s; }
.hero__copy .hero__lede { animation-delay: .20s; }
.hero__copy .hero__cta { animation-delay: .30s; }
.hero__copy .hero__creds { animation-delay: .40s; }
.hero__media { animation: riseIn .9s cubic-bezier(.2,.7,.2,1) .25s both; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__copy > *, .hero__media { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid var(--line-navy);
    padding: 0.5rem clamp(1.1rem, 4vw, 2.2rem) 1.25rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    margin-left: 0;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { color: var(--on-navy); font-size: 1.05rem; }
  .site-nav a:not(.btn) { padding: 0.85rem 0; border-bottom: 1px solid var(--line-navy); }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav .btn { margin-top: 1rem; justify-content: center; }
  .site-nav .btn--primary { color: #fff; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; }
  .hero__badge { left: auto; right: 14px; }
  .feature .container { grid-template-columns: 1fr; }
  .feature__media { max-width: 460px; }
  .careers .container { grid-template-columns: 1fr; }
  .contact .container { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__cell:nth-child(odd)::before { display: none; }
  .proof__cell:nth-child(3)::before, .proof__cell:nth-child(4) { }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr; }
  .apply__form { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__badge { right: 10px; bottom: -16px; }
  .brand__tag { display: none; }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__actions .btn { flex: 1; }
}
