/* Crosby Ops landing · static · brand-matched to app.crosbyops.com */

:root {
  --navy:        #0F1F3D;
  --navy-2:      #1A2D52;
  --orange:      #FF6B35;
  --orange-soft: #FF8A5C;
  --gold:        #FFC857;
  --white:       #FFFFFF;
  --off-white:   #FAFAF7;
  --surface-2:   #F4F3EC;
  --warm-grey:   #8B7355;
  --green:       #4A8A5E;
  --green-soft:  rgba(74, 138, 94, 0.12);
  --red:         #C0392B;
  --red-soft:    rgba(192, 57, 43, 0.10);
  --gold-soft:   rgba(255, 200, 87, 0.16);
  --orange-tint: rgba(255, 107, 53, 0.12);
  --navy-tint:   rgba(15, 31, 61, 0.06);
  --line:        rgba(15, 31, 61, 0.08);
  --line-strong: rgba(15, 31, 61, 0.14);
  --shadow-sm:   0 1px 2px rgba(15,31,61,.04), 0 4px 12px -4px rgba(15,31,61,.08);
  --shadow-md:   0 2px 4px rgba(15,31,61,.06), 0 12px 32px -8px rgba(15,31,61,.14);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--off-white);
  color: var(--navy);
  font-family: 'General Sans', 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'ss01', 'cv11', 'tnum';
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 14px;
}

/* ── Nav ───────────────────────────────────────────────────────── */

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.brand-mark { color: var(--orange); display: inline-flex; }

.brand-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.brand-text-ops { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  color: var(--navy);
  opacity: 0.7;
  transition: opacity 0.15s;
}
.nav-link:hover { opacity: 1; }

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  transition: border-color 0.15s, transform 0.15s;
}
.nav-cta:hover { border-color: var(--navy); transform: translateY(-1px); }

/* ── Hero ──────────────────────────────────────────────────────── */

.hero {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 72px 32px 80px;
  background:
    radial-gradient(900px circle at 100% 0%, rgba(255, 107, 53, 0.30), transparent 55%),
    radial-gradient(720px circle at 0% 100%, rgba(255, 200, 87, 0.20), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-visual { position: relative; z-index: 2; perspective: 2000px; }

.hero .eyebrow { color: rgba(255, 255, 255, 0.6); }

.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 22px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--white);
  background:
    radial-gradient(circle at 88% -20%, rgba(255, 200, 87, 0.55), transparent 55%),
    var(--orange);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 31, 61, 0.10);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 2px 6px rgba(15, 31, 61, 0.14);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Hero dashboard mockup (browser window) ────────────────────── */

.dash-win {
  width: 720px;
  background: var(--off-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotateY(-15deg) rotateX(5deg);
  transform-origin: center center;
  transition: transform 0.5s ease;
}
.dash-win:hover { transform: rotateY(-7deg) rotateX(2deg); }
.dash-body { padding: 12px; display: grid; gap: 10px; }

.dash-greet-date { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); }
.dash-greet-hi { font-size: 18px; font-weight: 500; letter-spacing: -0.02em; color: var(--navy); }
.dash-greet-hi span { color: var(--orange); }
/* Greeting row + top band cards (my shift · celebrations · weather) */
.dash-greet { display: flex; align-items: flex-start; gap: 14px; }
.dash-greet-text { flex-shrink: 0; }
.dash-topcards { display: flex; gap: 8px; margin-left: 14px; flex: 1; }
.tc { flex: 1; min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 8px 11px; box-shadow: 0 1px 2px rgba(15, 31, 61, 0.04); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.tc-ico { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; flex: none; }
.tc-ico svg { width: 12px; height: 12px; }
.tc-ico.grey { background: #eef0f4; color: #6b7488; }
.tc-ico.gold { background: linear-gradient(135deg, #FFE9A8, #FFC857); color: #8a6a00; }
.tc-eyebrow { font-size: 6px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); }
.tc-line { font-size: 8px; color: var(--navy); margin-top: 1px; }
.tc-temp { font-size: 16px; font-weight: 500; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
.tc.celeb { flex-direction: column; align-items: stretch; gap: 2px; }
.tc-celeb-row { font-size: 7px; color: var(--navy); }
.tc-celeb-row span { color: var(--warm-grey); }

.dash-cards { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 10px; }

.dash-takings {
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 115% -20%, rgba(255, 107, 53, 0.30), transparent 48%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.dt-label { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.dt-value { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; margin-top: 2px; font-feature-settings: 'tnum'; }
.dt-value .dec { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.dt-delta { font-size: 9px; color: #6cd28e; margin-top: 3px; }
.dt-proj { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.dt-proj-val { font-size: 15px; font-weight: 500; margin-top: 2px; font-feature-settings: 'tnum'; }

.dash-stat { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.ds-label { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); }
.ds-pct { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; font-feature-settings: 'tnum'; }
.ds-pct span { font-size: 12px; font-weight: 500; color: var(--warm-grey); }
.ds-pct.wages { color: var(--orange); }
.ds-pct.cogs { color: var(--green); }
.ds-sub { font-size: 9px; color: var(--warm-grey); }
.ds-bar { height: 5px; border-radius: 3px; background: var(--surface-2); overflow: hidden; margin-top: auto; }
.ds-fill { display: block; height: 100%; border-radius: 3px; }
.ds-fill.wages { background: var(--orange); }
.ds-fill.cogs { background: var(--green); }

.dash-ebitda {
  border-radius: 10px;
  padding: 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.de-donut {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: conic-gradient(#C0392B 0 34%, #FF6B35 34% 69%, #FFC857 69% 86.6%, #4A8A5E 86.6% 100%);
}
.de-hole {
  position: absolute;
  inset: 19px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
}
.de-val { font-size: 13px; font-weight: 600; color: var(--navy); font-feature-settings: 'tnum'; }
.de-margin { font-size: 7px; color: var(--warm-grey); }
.de-legend { flex: 1; display: grid; gap: 6px; min-width: 0; }
.de-row { display: flex; align-items: center; gap: 7px; font-size: 9px; }
.de-dot { width: 7px; height: 7px; border-radius: 2px; flex-shrink: 0; }
.de-name { color: #55607a; flex: 1; }
.de-amt { color: var(--navy); font-weight: 500; font-feature-settings: 'tnum'; }

/* KPI cards (dashboard mockup · mirrors the app's pulse tiles) */
.dash-greet-sub { font-size: 8px; color: var(--warm-grey); margin-top: 2px; }
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi { position: relative; display: grid; grid-template-columns: 26px 1fr; gap: 8px; padding: 10px 11px 12px; background: #fff; border: 1px solid var(--line); border-radius: 11px; box-shadow: 0 1px 2px rgba(15, 31, 61, 0.04); overflow: hidden; isolation: isolate; min-height: 74px; }
.kpi::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 100% 0%, rgba(255, 107, 53, 0.10), transparent 55%), radial-gradient(circle at 0% 100%, rgba(255, 200, 87, 0.10), transparent 55%); pointer-events: none; z-index: 0; }
.kpi > * { position: relative; z-index: 1; }
.kpi-ico { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; align-self: start; }
.kpi-ico svg { width: 14px; height: 14px; }
.kpi-ico.orange { background: linear-gradient(135deg, #FFB98A, #FF6B35); }
.kpi-ico.gold   { background: linear-gradient(135deg, #FFE9A8, #FFC857); }
.kpi-ico.sky    { background: linear-gradient(135deg, #B5D4F0, #4A9BD4); }
.kpi-ico.mint   { background: linear-gradient(135deg, #A7D4B4, #6AB48A); }
.kpi-ico.violet { background: linear-gradient(135deg, #D4C1EC, #6C5CE7); }
.kpi-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.kpi-eyebrow { font-size: 6.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-grey); }
.kpi-value { font-size: 20px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; color: var(--navy); font-feature-settings: 'tnum'; margin-top: 2px; }
.kpi-value span { font-size: 11px; font-weight: 500; color: var(--warm-grey); }
.kpi-value.under { color: var(--green); }
.kpi-value.over { color: var(--orange); }
.kpi-sub { font-size: 7.5px; color: var(--warm-grey); margin-top: 1px; }
.kpi-prog { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--line); z-index: 1; }
.kpi-prog-fill { display: block; height: 100%; }
.kpi-prog-fill.good { background: linear-gradient(90deg, #FFC857, var(--orange)); }
.kpi-prog-fill.over { background: var(--orange); }
.kpi-prog-fill.warn { background: #FFC857; }

/* Operational (action) cards under the KPI row (mirrors the app grid) */
.dash-ops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.opc { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 11px 12px; box-shadow: 0 1px 2px rgba(15, 31, 61, 0.04); overflow: hidden; }
.opc-title .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin-right: 5px; vertical-align: middle; }
.opc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.opc-eyebrow { font-size: 6.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-grey); }
.opc-link { font-size: 7px; font-weight: 500; color: var(--orange); white-space: nowrap; }
.opc-title { font-size: 13px; font-weight: 500; letter-spacing: -0.02em; color: var(--navy); margin-top: 5px; }
.opc-sub { font-size: 7.5px; color: var(--warm-grey); margin-top: 2px; }
.opc-divider { height: 1px; background: var(--line); margin: 8px 0; }
.opc-rows { margin-top: 8px; display: grid; gap: 5px; }
.opc-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 8px; }
.opc-row .l { color: var(--navy); }
.opc-row .r { color: var(--orange); white-space: nowrap; }
.opc-row .muted { color: var(--warm-grey); }

/* ── Section heads ─────────────────────────────────────────────── */

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}

/* ── Modules ───────────────────────────────────────────────────── */

.modules {
  max-width: 1200px;
  margin: 0 auto 96px;
  padding: 0 32px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.module-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.module-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.module-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFB98A, #FF6B35);
  color: #fff;
  margin-bottom: 18px;
}
.module-icon.orange { background: linear-gradient(135deg, #FFB98A, #FF6B35); }
.module-icon.gold   { background: linear-gradient(135deg, #FFE9A8, #FFC857); }
.module-icon.sky    { background: linear-gradient(135deg, #B5D4F0, #4A9BD4); }
.module-icon.mint   { background: linear-gradient(135deg, #A7D4B4, #6AB48A); }
.module-icon.violet { background: linear-gradient(135deg, #D4C1EC, #6C5CE7); }

.module-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.module-body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15, 31, 61, 0.72);
  margin: 0;
}

/* ── Features (module + mockup rows) ───────────────────────────── */

.features {
  max-width: 1200px;
  margin: 0 auto 96px;
  padding: 0 32px;
  display: grid;
  gap: 72px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 56px;
}
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-mock { order: 1; }

.feature-copy { max-width: 420px; }
.feature-copy .module-icon { margin-bottom: 18px; }
.feature-copy .module-title { font-size: 26px; margin-bottom: 12px; }
.feature-copy .module-body { font-size: 15px; }

.feature-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.feature-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: rgba(15, 31, 61, 0.72);
}
.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* App-window frame: renders the real app page (off-white) */
.app-window {
  background: var(--off-white);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.app-window-body { padding: 14px; }

/* App nav pill (.v3-chrome) */
.mk-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 6px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 20px -8px rgba(15, 31, 61, 0.35);
}
.mk-nav-brand {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: #fff; letter-spacing: -0.01em;
  padding: 0 6px; white-space: nowrap;
}
.mk-nav-brand .ops { color: rgba(255, 255, 255, 0.5); font-weight: 400; }
.mk-nav-tabs { display: flex; align-items: center; gap: 2px; min-width: 0; overflow: hidden; }
.mk-nav-tab {
  padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 500;
  color: rgba(255, 255, 255, 0.65); white-space: nowrap;
}
.mk-nav-tab.active {
  background: var(--orange); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 12px -2px rgba(255, 107, 53, 0.4);
}
.mk-nav-right { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.mk-nav-loc {
  display: inline-flex; align-items: center; gap: 5px; height: 26px; padding: 0 10px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px; font-size: 11px; color: #fff; white-space: nowrap;
}
.mk-nav-ava {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 10px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}
.mk-nav-ava.green { background: linear-gradient(135deg, #6AB48A, #4A8A5E); }

/* Breadcrumb + title */
.mk-head { padding: 14px 4px 4px; }
.mk-head-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; row-gap: 8px; }
.mk-head-row .mk-tabs { margin: 0; }
.mk-crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 6px;
}
.mk-tag {
  font-size: 8px; letter-spacing: 0.08em; padding: 2px 7px; border-radius: 999px;
  background: var(--gold-soft); color: #8a6a00;
}
.mk-title { font-size: 17px; font-weight: 500; letter-spacing: -0.02em; color: var(--navy); margin: 0; }
.mk-title .muted { color: var(--warm-grey); font-weight: 400; }

/* Light stats banner (.v3-rd-hero / .v3-ts-hero) */
.mk-banner {
  position: relative; overflow: hidden;
  border-radius: 16px; padding: 14px 18px; margin-top: 12px;
  background:
    radial-gradient(circle at 110% -10%, rgba(255, 107, 53, 0.1), transparent 45%),
    radial-gradient(circle at -10% 110%, rgba(255, 200, 87, 0.08), transparent 45%),
    #fff;
  border: 1px solid rgba(15, 31, 61, 0.08);
  box-shadow: 0 1px 2px rgba(15, 31, 61, 0.04), 0 8px 24px -8px rgba(15, 31, 61, 0.1);
}
.mk-banner-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(108px, 1fr)); gap: 16px;
}
.mk-metric { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mk-metric-label {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-grey);
}
.mk-metric-dot { width: 6px; height: 6px; border-radius: 50%; background: #4a8a5e; box-shadow: 0 0 0 3px rgba(74, 138, 94, 0.18); }
.mk-metric-dot.warn { background: #b8761f; box-shadow: 0 0 0 3px rgba(184, 118, 31, 0.2); }
.mk-metric-dot.bad { background: #c0392b; box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.22); }
.mk-metric-value { font-size: 20px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; color: var(--navy); font-feature-settings: 'tnum'; }
.mk-metric-value .pct { font-size: 13px; color: var(--warm-grey); font-weight: 400; }
.mk-metric-sub { font-size: 10px; color: var(--warm-grey); line-height: 1.3; }
.mk-metric-sub strong { color: var(--navy); font-weight: 500; }
.mk-bar-wrap { position: relative; margin-top: 6px; }
.mk-bar { height: 5px; background: rgba(15, 31, 61, 0.06); border-radius: 3px; display: flex; overflow: hidden; }
.mk-bar-zone { height: 100%; }
.mk-bar-zone.green { background: #4a8a5e; }
.mk-bar-zone.amber { background: var(--gold); }
.mk-bar-zone.red { background: #c0392b; }
.mk-bar-marker { position: absolute; top: -3px; width: 3px; height: 11px; background: var(--navy); border-radius: 1.5px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8); }

/* Payroll notes card (.v3-ts-notes-card) */
.mk-ts-top { display: flex; gap: 10px; align-items: stretch; margin-top: 12px; }
.mk-ts-top .mk-banner { flex: 1; margin-top: 0; min-width: 0; }
.mk-notes-card {
  flex: 0 0 168px; display: flex; align-items: flex-start; gap: 8px;
  background: linear-gradient(135deg, rgba(74, 138, 94, 0.06), rgba(74, 138, 94, 0.02));
  border: 1px solid rgba(74, 138, 94, 0.22);
  border-radius: 14px; padding: 12px 13px;
  box-shadow: 0 1px 2px rgba(15, 31, 61, 0.04), 0 4px 12px -4px rgba(15, 31, 61, 0.08);
}
.mk-notes-icon {
  width: 24px; height: 24px; border-radius: 7px; flex: none;
  background: linear-gradient(135deg, #8fcf9f, #4a8a5e);
  display: grid; place-items: center; color: #fff;
}
.mk-notes-icon svg { width: 13px; height: 13px; }
.mk-notes-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mk-notes-label { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); font-weight: 500; }
.mk-notes-title { font-size: 12px; font-weight: 600; color: #2f6b46; }
.mk-notes-link { font-size: 9px; color: var(--warm-grey); }

/* White content card under banner */
.mk-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; margin-top: 12px; }

/* Roster grid */
.mk-rg-head, .mk-rg-row { display: grid; grid-template-columns: 84px repeat(5, 1fr); }
.mk-rg-head { border-bottom: 1px solid var(--line); }
.mk-rg-hcell { padding: 6px 8px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.mk-rg-hcell:last-child { border-right: 0; }
.mk-rg-dayname { font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-grey); font-weight: 500; }
.mk-rg-daycost { font-size: 10px; font-weight: 500; font-feature-settings: 'tnum'; }
.mk-rg-daycost.safe { color: #4a8a5e; }
.mk-rg-daycost.warn { color: #b8761f; }
.mk-rg-daycost.over { color: #c0392b; }
.mk-rg-section { padding: 6px 10px; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); background: var(--surface-2); font-weight: 500; }
.mk-rg-row { border-bottom: 1px solid rgba(15, 31, 61, 0.06); }
.mk-rg-row:last-child { border-bottom: 0; }
.mk-rg-staff { padding: 6px 10px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.mk-rg-staff-name { font-size: 11px; font-weight: 500; color: var(--navy); letter-spacing: -0.01em; }
.mk-rg-staff-sub { font-size: 9px; color: var(--warm-grey); font-feature-settings: 'tnum'; }
.mk-rg-cell { padding: 4px; border-right: 1px solid var(--line); display: flex; }
.mk-rg-cell:last-child { border-right: 0; }
.mk-rg-shift {
  flex: 1; border-radius: 8px; padding: 4px 6px;
  background: linear-gradient(135deg, rgba(15, 31, 61, 0.04), rgba(15, 31, 61, 0.02));
  border: 1px solid rgba(15, 31, 61, 0.1);
  box-shadow: inset 3px 0 0 var(--sh, var(--orange));
  display: flex; flex-direction: column; gap: 1px;
}
.mk-rg-shift .t { font-size: 10px; font-weight: 500; color: var(--navy); letter-spacing: -0.01em; line-height: 1.15; font-feature-settings: 'tnum'; }
.mk-rg-shift .b { font-size: 8px; color: var(--warm-grey); }
.mk-rg-shift .c { font-size: 9px; font-weight: 500; color: var(--navy); margin-top: 1px; text-align: right; font-feature-settings: 'tnum'; }
.mk-rg-off { flex: 1; border-radius: 8px; border: 1px dashed rgba(15, 31, 61, 0.1); display: grid; place-items: center; font-size: 9px; color: var(--warm-grey); min-height: 40px; }
.mk-rg-leave { flex: 1; border-radius: 8px; border: 1px solid rgba(255, 200, 87, 0.4); background: rgba(255, 200, 87, 0.1); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 40px; }
.mk-rg-leave .lt { font-size: 9px; font-weight: 500; color: #8a5a1f; }
.mk-rg-leave .lm { font-size: 7px; letter-spacing: 0.08em; text-transform: uppercase; color: #b8761f; font-weight: 500; }

/* Tab group (timesheets + leave) */
.mk-tabs { display: inline-flex; gap: 3px; background: rgba(15, 31, 61, 0.04); border-radius: 999px; padding: 3px; margin: 12px 0; }
.mk-tab { padding: 5px 12px; font-size: 11px; font-weight: 500; color: var(--warm-grey); border-radius: 999px; }
.mk-tab.active { background: var(--navy); color: #fff; }
.mk-tab .n { opacity: 0.55; margin-left: 4px; }

/* Timesheet rows */
.mk-ts { display: grid; gap: 8px; }
.mk-ts-row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; }
.mk-ava { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; background: linear-gradient(135deg, var(--gold), var(--orange)); }
.mk-ava.green { background: linear-gradient(135deg, #6AB48A, #4A8A5E); }
.mk-ts-info { flex: 1; min-width: 0; }
.mk-ts-name { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: -0.015em; }
.mk-ts-meta { font-size: 11px; color: var(--warm-grey); }
.mk-pill-pending { background: #fffbeb; color: #b45309; font-size: 9px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.mk-pill-approved { background: var(--green-soft); color: var(--green); font-size: 9px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.mk-btn-navy {
  display: inline-flex; align-items: center; gap: 4px; height: 28px; padding: 0 12px;
  border-radius: 999px; font-size: 11px; font-weight: 500; color: #fff; white-space: nowrap;
  background: radial-gradient(circle at 88% -20%, rgba(255, 200, 87, 0.5), transparent 55%), var(--navy);
  box-shadow: 0 4px 12px -2px rgba(15, 31, 61, 0.25);
}

/* Purchasing order layout */
.mk-order { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; margin-top: 12px; align-items: start; }
.mk-order-items { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.mk-oi-head, .mk-oi-row { display: grid; grid-template-columns: 1fr 56px 64px; gap: 8px; align-items: center; }
.mk-oi-head { padding: 8px 12px; border-bottom: 1px solid var(--line); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); }
.mk-oi-head span:nth-child(2), .mk-oi-head span:nth-child(3) { text-align: right; }
.mk-oi-row { padding: 9px 12px; border-bottom: 1px solid rgba(15, 31, 61, 0.05); }
.mk-oi-row:last-child { border-bottom: 0; }
.mk-oi-prod { font-size: 11px; font-weight: 500; color: var(--navy); }
.mk-oi-sku { font-size: 8px; color: var(--warm-grey); font-feature-settings: 'tnum'; }
.mk-oi-stepper { display: inline-flex; align-items: center; gap: 5px; justify-content: flex-end; }
.mk-oi-step { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: 11px; color: var(--warm-grey); }
.mk-oi-qty { font-size: 11px; font-weight: 500; min-width: 12px; text-align: center; font-feature-settings: 'tnum'; }
.mk-oi-total { text-align: right; }
.mk-oi-total .lt { font-size: 11px; font-weight: 600; color: var(--orange); font-feature-settings: 'tnum'; }
.mk-oi-total .up { font-size: 8px; color: var(--warm-grey); font-feature-settings: 'tnum'; }

.mk-summary { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.mk-summary-title { font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.mk-sum-label { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 4px; }
.mk-sum-date { font-size: 12px; font-weight: 500; color: var(--navy); padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.mk-sum-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--warm-grey); margin-bottom: 6px; font-feature-settings: 'tnum'; }
.mk-sum-row.total { font-size: 13px; font-weight: 600; color: var(--navy); padding-top: 8px; border-top: 1px solid var(--line); margin-top: 4px; }
.mk-sum-btn { display: flex; align-items: center; justify-content: center; gap: 5px; height: 34px; margin-top: 12px; border-radius: 999px; font-size: 12px; font-weight: 500; color: #fff; background: radial-gradient(circle at 88% -20%, rgba(255, 200, 87, 0.5), transparent 55%), var(--navy); box-shadow: 0 4px 12px -2px rgba(15, 31, 61, 0.25); }

/* Leave legend + month calendar */
.mk-legend { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0; }
.mk-leg { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; color: var(--warm-grey); }
.mk-leg-dot { width: 8px; height: 8px; border-radius: 50%; }
.mk-leg-dot.annual { background: var(--gold); }
.mk-leg-dot.personal { background: #6c5ce7; }
.mk-leg-dot.unpaid { background: var(--warm-grey); }
.mk-leg-dot.pending { background: repeating-linear-gradient(45deg, var(--gold) 0 3px, rgba(255, 200, 87, 0.4) 3px 6px); }

.mk-cal { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.mk-cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); border-bottom: 1px solid var(--line); }
.mk-cal-dow span { padding: 6px 8px; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); font-weight: 500; }
.mk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.mk-cal-cell { min-height: 50px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 5px 6px; display: flex; flex-direction: column; gap: 3px; }
.mk-cal-cell:nth-child(7n) { border-right: 0; }
.mk-cal-day { font-size: 11px; font-weight: 500; color: var(--navy); font-feature-settings: 'tnum'; }
.mk-cal-cell.muted .mk-cal-day { color: rgba(15, 31, 61, 0.3); }
.mk-cal-cell.weekend { background: rgba(255, 200, 87, 0.04); }
.mk-cal-cell.today { background: rgba(255, 107, 53, 0.05); box-shadow: inset 0 0 0 2px rgba(255, 107, 53, 0.18); }
.mk-cal-cell.today .mk-cal-day { color: var(--orange); }
.mk-cal-pill { font-size: 8px; font-weight: 500; padding: 2px 5px; border-radius: 999px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-cal-pill.annual { background: rgba(255, 200, 87, 0.16); border: 1px solid rgba(255, 200, 87, 0.4); color: #6c5418; }
.mk-cal-pill.personal { background: rgba(108, 92, 231, 0.12); border: 1px solid rgba(108, 92, 231, 0.28); color: #4a3eb5; }

/* Award pay-rates mockup */
.mk-pr-sub { font-size: 10px; color: var(--warm-grey); margin: 2px 0 0; }
.mk-pr { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; margin-top: 12px; }
.mk-pr-head, .mk-pr-row { display: grid; grid-template-columns: 1.8fr 0.7fr 0.8fr 1.4fr; gap: 8px; align-items: center; }
.mk-pr-head { padding: 8px 12px; border-bottom: 1px solid var(--line); background: var(--surface-2); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); }
.mk-pr-head span:nth-child(2), .mk-pr-head span:nth-child(3) { text-align: right; }
.mk-pr-row { padding: 8px 12px; border-bottom: 1px solid rgba(15, 31, 61, 0.05); }
.mk-pr-row:last-child { border-bottom: 0; }
.mk-pr-row.base { background: rgba(15, 31, 61, 0.025); }
.mk-pr-type { font-size: 10px; font-weight: 500; color: var(--navy); line-height: 1.2; }
.mk-pr-mult { font-size: 10px; color: var(--warm-grey); text-align: right; font-feature-settings: 'tnum'; }
.mk-pr-rate { font-size: 11px; font-weight: 600; color: var(--navy); text-align: right; font-feature-settings: 'tnum'; }
.mk-pr-eff { font-size: 9px; color: var(--warm-grey); line-height: 1.2; }

/* Recipe costing mockup */
.mk-rc-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.mk-rc-tile { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px; box-shadow: var(--shadow-sm); }
.mk-rc-label { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); }
.mk-rc-value { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-top: 3px; color: var(--navy); font-feature-settings: 'tnum'; }
.mk-rc-value.good { color: var(--green); }
.mk-rc-sub { font-size: 9px; color: var(--warm-grey); margin-top: 2px; font-feature-settings: 'tnum'; }
.mk-rc-ings { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: 10px; }
.mk-rc-ings-head { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-bottom: 1px solid var(--line); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-grey); }
.mk-rc-row { display: grid; grid-template-columns: 1fr auto 64px; gap: 10px; align-items: center; padding: 8px 12px; border-bottom: 1px solid rgba(15, 31, 61, 0.05); }
.mk-rc-row:last-child { border-bottom: 0; }
.mk-rc-ing-name { font-size: 11px; color: var(--navy); }
.mk-rc-ing-qty { font-size: 10px; color: var(--warm-grey); font-feature-settings: 'tnum'; text-align: right; }
.mk-rc-ing-cost { font-size: 11px; font-weight: 500; color: var(--navy); text-align: right; font-feature-settings: 'tnum'; }
.mk-rc-foot { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--surface-2); }
.mk-rc-foot-label { font-size: 11px; color: var(--warm-grey); }
.mk-rc-foot-val { font-size: 11px; font-weight: 600; color: var(--navy); font-feature-settings: 'tnum'; }

/* ── Integrations ──────────────────────────────────────────────── */

.integrations {
  padding: 80px 0;
  margin-bottom: 96px;
}
.integrations .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.integ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.integ-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.integ-logo { height: 44px; display: flex; align-items: center; margin-bottom: 16px; }
.integ-name { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 8px; }
.integ-body { font-size: 14px; line-height: 1.55; color: rgba(15, 31, 61, 0.72); margin: 0; }
.integ-ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #FFB98A, #FF6B35); color: #fff;
}
.integ-soon { border-style: dashed; background: transparent; box-shadow: none; }
.integ-logo-soon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--warm-grey); font-size: 26px; font-weight: 300; line-height: 1;
}

/* ── More capabilities ─────────────────────────────────────────── */

.more {
  background: var(--surface-2);
  padding: 80px 0;
  margin-bottom: 96px;
}
.more .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
.more-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.more-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.more-ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, #FFB98A, #FF6B35); color: #fff; margin-bottom: 14px;
}
.more-ico.orange { background: linear-gradient(135deg, #FFB98A, #FF6B35); }
.more-ico.gold   { background: linear-gradient(135deg, #FFE9A8, #FFC857); }
.more-ico.sky    { background: linear-gradient(135deg, #B5D4F0, #4A9BD4); }
.more-ico.mint   { background: linear-gradient(135deg, #A7D4B4, #6AB48A); }
.more-ico.violet { background: linear-gradient(135deg, #D4C1EC, #6C5CE7); }
.more-title { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 6px; }
.more-body { font-size: 13px; line-height: 1.5; color: rgba(15, 31, 61, 0.7); margin: 0; }

/* ── Built for ─────────────────────────────────────────────────── */

.built-for {
  background: var(--surface-2);
  padding: 96px 32px;
  margin-bottom: 0;
}

.built-for-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.built-for-body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(15, 31, 61, 0.78);
  margin: 22px auto 0;
  max-width: 620px;
}

/* ── Contact ───────────────────────────────────────────────────── */

.contact {
  padding: 96px 32px;
  text-align: center;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15, 31, 61, 0.72);
  margin: 22px 0 32px;
}

/* ── Apply page ────────────────────────────────────────────────── */

.apply {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 96px;
}

.apply-inner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.apply-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.apply-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(15, 31, 61, 0.72);
  margin: 0 0 36px;
}

.apply-form { display: grid; gap: 20px; }

.form-row { display: grid; gap: 6px; }
.form-row.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row.two-col > div { display: grid; gap: 6px; }

.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.form-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  appearance: none;
}
textarea.form-input {
  height: auto;
  padding: 12px 16px;
  line-height: 1.5;
  resize: vertical;
  min-height: 100px;
  border-radius: 22px;
}
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' fill='none' stroke='%230F1F3D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.form-actions {
  margin-top: 8px;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.form-fineprint {
  font-size: 12px;
  color: var(--warm-grey);
  margin: 0;
}

/* ── Footer ────────────────────────────────────────────────────── */

.footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-meta a { color: rgba(255, 255, 255, 0.55); transition: color 0.15s; }
.footer-meta a:hover { color: var(--white); }

/* ── Responsive ────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-visual { perspective: none; overflow: hidden; }
  .dash-win { transform: none; }
}

@media (max-width: 760px) {
  .nav { padding: 18px 20px; }
  .nav-links { gap: 14px; }
  .nav-link { display: none; }
  .hero { margin: 16px 16px 56px; padding: 56px 24px 64px; border-radius: 18px; }
  .dash-cards { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .modules { padding: 0 16px; margin-bottom: 64px; }
  .module-grid { grid-template-columns: 1fr; }
  .features { padding: 0 16px; margin-bottom: 64px; gap: 48px; }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row.reverse .feature-copy { order: 1; }
  .feature-row.reverse .feature-mock { order: 2; }
  .feature-copy { max-width: none; }
  .feature-mock { overflow: hidden; }
  .app-window { width: 654px; }
  .integrations { padding: 0 16px; margin-bottom: 64px; }
  .integ-grid { grid-template-columns: 1fr; }
  .more { padding: 0 16px; margin-bottom: 64px; }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .built-for, .contact { padding: 64px 20px; }
  .footer-inner { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .apply { padding: 24px 16px 64px; }
  .apply-inner { padding: 32px 24px; border-radius: 16px; }
  .form-row.two-col { grid-template-columns: 1fr; }
}

/* App store badges (official artwork) */
.store-badges { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; align-items: center; }
.store-badge { display: inline-flex; line-height: 0; transition: transform 0.15s ease, opacity 0.15s ease; }
.store-badge img { display: block; width: auto; }
/* App Store badge is edge-to-edge; Google Play has ~16% clear space each side.
   Render Google ~1.49x taller so the visible badges match and sit level. */
.store-badge.app-store img { height: 40px; }
.store-badge.google-play img { height: 60px; }
.store-badge:hover { transform: translateY(-2px); opacity: 0.9; }
.contact .store-badges { justify-content: center; }
