:root {
  --green-950: #0b1f14;
  --green-900: #10291b;
  --green-800: #16402b;
  --green-700: #176a3a;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --orange-700: #c95f00;
  --orange-600: #f97316;
  --orange-500: #fb923c;
  --orange-300: #fdba74;
  --orange-100: #ffedd5;
  --amber-500: #f97316;
  --amber-100: #ffedd5;
  --ink: #102016;
  --muted: #5d6b63;
  --line: #dce7df;
  --paper: #ffffff;
  --soft: #f5faf6;
  --shadow: 0 24px 70px rgba(16, 32, 22, .13);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,231,223,.75);
}
.brand img { width: 214px; max-height: 78px; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
  color: var(--muted);
}
.site-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--orange-700); border-color: var(--orange-600); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.header-cta {
  background: var(--orange-600);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 12px 35px rgba(249, 115, 22, .26);
}
.header-cta:hover, .button:hover { transform: translateY(-1px); }
.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 44px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 24px 52px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-700);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .12em;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(44px, 6vw, 82px); }
h2 { font-size: clamp(32px, 4vw, 54px); }
h3 { font-size: 23px; }
p { color: var(--muted); }
.hero-summary {
  font-size: 20px;
  max-width: 720px;
  margin: 24px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button.primary { background: var(--orange-600); color: #fff; box-shadow: 0 18px 40px rgba(249, 115, 22, .28); }
.button.secondary { background: var(--orange-100); color: var(--green-950); }
.hero-panel {
  min-height: 540px;
  border-radius: 42px;
  padding: 36px;
  background: var(--green-950);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: background .45s ease, box-shadow .45s ease;
}
.hero-panel.slide-bg-1 { background: var(--green-950); }
.hero-panel.slide-bg-2 { background: #fff3e7; box-shadow: 0 24px 70px rgba(249, 115, 22, .16); }
.hero-panel.slide-bg-3 { background: #f3faf5; box-shadow: 0 24px 70px rgba(16, 32, 22, .10); }
.phone-rotator {
  position: relative;
  width: min(360px, 100%);
  min-height: 500px;
}
.phone-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.98);
  transition: opacity .5s ease, transform .5s ease;
}
.phone-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.phone-card {
  width: min(340px, 100%);
  min-height: 480px;
  border-radius: 34px;
  padding: 20px;
  background: #f8fff9;
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
  transform: rotate(-2deg);
}
.rotator-dots {
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.rotator-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.rotator-dot.active {
  background: var(--orange-500);
  transform: scale(1.15);
}
.phone-topbar {
  width: 90px;
  height: 6px;
  border-radius: 99px;
  background: #d8e5dc;
  margin: 4px auto 24px;
}
.job-alert {
  padding: 22px;
  border-radius: 26px;
  color: #fff;
  background: var(--green-800);
}
.job-alert small { opacity: .84; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.job-alert p { color: rgba(255,255,255,.78); }
.job-alert button {
  width: 100%;
  border: 0;
  margin-top: 10px;
  padding: 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange-600);
  font-weight: 850;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, .25);
}
.status-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--amber-500); margin-right: 8px; box-shadow: 0 0 0 7px rgba(245,158,11,.18); }
.shortlist-preview {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.shortlist-preview strong { display: block; }
.shortlist-preview span { color: var(--muted); font-size: 14px; }
.worker-row { display: flex; gap: 12px; align-items: center; margin-top: 14px; }
.worker-row span { width: 38px; height: 38px; border-radius: 50%; background: var(--orange-500); }
.worker-row p { margin: 0; font-size: 14px; }

.stats-band {
  max-width: var(--max);
  margin: 0 auto 52px;
  padding: 0 24px 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats-band div {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange-500);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, .06);
}
.stats-band strong { display: block; font-size: 34px; letter-spacing: -.05em; }
.stats-band span { color: var(--muted); font-weight: 650; }

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
}
.section-heading { max-width: 760px; margin-bottom: 32px; }
.feature-grid { display: grid; gap: 18px; }
.feature-grid.two { grid-template-columns: repeat(2, 1fr); }
.feature-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--orange-600);
  opacity: .88;
}
.card.lift { box-shadow: 0 12px 35px rgba(16, 32, 22, .05); }
.card p { margin-bottom: 0; }
.pill {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-700);
  font-weight: 900;
}
.link-card a, .text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange-700);
  font-weight: 850;
}
.text-link::after, .link-card a::after { content: "→"; margin-left: 7px; }
.muted { background: var(--soft); max-width: none; padding-left: calc((100vw - var(--max)) / 2 + 24px); padding-right: calc((100vw - var(--max)) / 2 + 24px); }
.split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr .9fr; }
.flow-card, .trust-card {
  border-radius: var(--radius-xl);
  padding: 30px;
  background: var(--green-950);
  box-shadow: var(--shadow);
}
.flow-card div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.flow-card div:last-child { border-bottom: 0; }
.flow-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-600);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(249, 115, 22, .22);
}
.flow-card p { margin: 0; color: rgba(255,255,255,.78); }
.trust-card { background: var(--green-950); color: #fff; }
.trust-card h3 { margin-bottom: 18px; }
.trust-card ul { margin: 0; padding-left: 22px; color: rgba(255,255,255,.84); }
.trust-card li { margin: 9px 0; }
.roadmap-preview { padding-top: 86px; }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.roadmap-grid article {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}
.roadmap-grid span { color: var(--green-700); font-weight: 850; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.roadmap-grid p { margin-bottom: 0; }
.centered-action { text-align: center; margin-top: 28px; }

.content-page { max-width: var(--max); margin: 0 auto; padding: 0 24px 86px; }
.content-page > h2 { margin: 56px 0 18px; }
.content-page > h3 { margin: 34px 0 12px; }
.content-page p, .content-page li { font-size: 17px; }
.page-hero.compact {
  max-width: none;
  margin: 0 -24px 44px;
  padding: 76px calc((100vw - var(--max)) / 2 + 24px);
  border-radius: 0 0 44px 44px;
  background: var(--soft);
}
.page-hero.compact h1 { max-width: 880px; font-size: clamp(42px, 5vw, 68px); }
.page-hero.compact p:not(.eyebrow) { max-width: 830px; font-size: 20px; }
.page-hero.green { background: var(--green-100); }
.page-hero.amber { background: var(--orange-100); }
.page-hero.dark { background: var(--green-950); color: #fff; }
.page-hero.dark .eyebrow { color: var(--green-100); }
.page-hero.dark p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0 36px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.content-page th, .content-page td {
  text-align: left;
  vertical-align: top;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}
.content-page th { background: var(--soft); color: var(--green-900); }
.content-page tr:last-child td { border-bottom: 0; }
.timeline { display: grid; gap: 14px; margin: 28px 0 42px; }
.timeline div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.timeline.large div { grid-template-columns: 300px 1fr; padding: 26px; }
.timeline strong { color: var(--green-900); }
.timeline span { color: var(--muted); }
.architecture-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0 42px;
}
.architecture-strip div {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--green-950);
  color: #fff;
  min-height: 180px;
}
.architecture-strip span { color: var(--green-100); font-weight: 850; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
.architecture-strip strong { display: block; font-size: 28px; margin: 16px 0 8px; letter-spacing: -.04em; }
.architecture-strip small { color: rgba(255,255,255,.72); font-size: 15px; }
.question-list { display: grid; gap: 14px; margin-top: 24px; }
.question-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.question-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-700);
  font-weight: 900;
}
.question-list p { margin: 0; color: var(--ink); }
.contact-box {
  max-width: 620px;
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr .7fr;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 24px 52px;
  border-top: 1px solid var(--line);
}
.site-footer img { width: 210px; max-height: 92px; object-fit: contain; margin-bottom: 12px; }
.site-footer p { margin: 0; }
.footer-links { display: grid; gap: 10px; align-content: start; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--orange-700); }

@media (max-width: 1040px) {
  .hero, .split, .split.reverse { grid-template-columns: 1fr; }
  .feature-grid.four, .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-panel { min-height: 460px; }
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 10px 14px; font-weight: 800; }
  .site-header.nav-open .site-nav {
    display: grid;
    position: absolute;
    top: 72px;
    left: 24px;
    right: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow);
  }
}
@media (max-width: 760px) {
  .hero { padding-top: 52px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .stats-band, .feature-grid.two, .feature-grid.three, .feature-grid.four, .roadmap-grid, .architecture-strip, .site-footer { grid-template-columns: 1fr; }
  .timeline div, .timeline.large div { grid-template-columns: 1fr; }
  .page-hero.compact { margin-left: -24px; margin-right: -24px; padding-top: 54px; }
  .brand img { width: 184px; }
  .content-page table { display: block; overflow-x: auto; }
}

/* Public portal additions */
.public-hero h1 { max-width: 760px; }
.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.mini-proof span,
.service-cloud span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff7ed;
  color: var(--green-950);
  border-radius: 999px;
  font-weight: 780;
}
.mini-proof span { padding: 9px 13px; font-size: 14px; }
.service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 34px;
}
.service-cloud.large { max-width: 980px; }
.service-cloud span {
  padding: 13px 18px;
  border-color: rgba(249, 115, 22, .28);
  box-shadow: 0 8px 26px rgba(249, 115, 22, .08);
}
.public-flow p strong { color: #fff; }
.public-trust h3 { font-size: 30px; }
.final-cta { align-items: center; }
.audience-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 46px;
}
.audience-grid article,
.contact-grid article {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 32, 22, .05);
}
.audience-grid h3,
.contact-grid h2 { margin-bottom: 10px; }
.audience-grid p,
.contact-grid p { margin-bottom: 0; }
.contact-grid .button { margin-top: 22px; }
.contact-grid .contact-box { max-width: none; box-shadow: 0 12px 34px rgba(16, 32, 22, .05); }
.single-contact { margin-top: 24px; }
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 42px;
}
.check-list div {
  position: relative;
  padding: 18px 18px 18px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--soft);
  color: var(--ink);
  font-weight: 680;
}
.check-list div::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 17px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-600);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.public-timeline { margin-top: 10px; }
.content-page .button { margin-top: 18px; }
.content-page ul { padding-left: 24px; }
.content-page li { margin: 8px 0; }

@media (max-width: 900px) {
  .audience-grid,
  .contact-grid,
  .check-list { grid-template-columns: 1fr; }
}

.app-band {
  max-width: var(--max);
  margin: 0 auto 22px;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  border-radius: var(--radius-xl);
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, .22);
  box-shadow: 0 18px 50px rgba(249, 115, 22, .10);
}
.app-band h2 { font-size: clamp(30px, 3vw, 44px); max-width: 760px; }
.app-band p { max-width: 820px; }
.app-band p:last-child { margin-bottom: 0; }
.app-note {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(249,115,22,.10);
  color: var(--orange-700);
  font-weight: 700;
}
.app-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.app-card {
  border: 1px solid rgba(249,115,22,.18);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(249, 115, 22, .08);
}
.store-link {
  display: block;
  transition: transform .18s ease;
}
.store-link:hover { transform: translateY(-2px); }
.store-link img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}
.qr-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #fffaf5;
}
.qr-card img {
  width: 100%;
  max-width: 110px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.qr-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .app-downloads { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .app-band { grid-template-columns: 1fr; margin-left: 24px; margin-right: 24px; }
  .app-downloads { grid-template-columns: 1fr; }
  .qr-card { grid-template-columns: 92px 1fr; }
}
