* {
  box-sizing: border-box;
}

:root {
  --orange: #f7941d;
  --orange-dark: #db7b27;
  --charcoal: #58595b;
  --ink: #242528;
  --muted: #6f7277;
  --line: #e7e8ea;
  --soft: #f7f7f7;
  --soft-orange: #fff3e3;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(36, 37, 40, 0.12);
  --shadow-soft: 0 10px 30px rgba(36, 37, 40, 0.08);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Avenir, "Avenir Next", Montserrat, "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(88, 89, 91, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 89, 91, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 520px);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 16px clamp(14px, 4vw, 52px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(231, 232, 234, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(36, 37, 40, 0.08);
  backdrop-filter: blur(16px);
}

.site-header,
.feature-card,
.talent-cards article,
.resource-grid article,
.portal-grid article,
.timeline article,
.pill-grid a,
.button,
.nav-cta,
.sticky-cta a {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover,
.talent-cards article:hover,
.resource-grid article:hover,
.portal-grid article:hover,
.timeline article:hover,
.pill-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 148, 29, 0.38);
  box-shadow: var(--shadow-soft);
}

.button:hover,
.nav-cta:hover,
.sticky-cta a:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 16px 30px rgba(247, 148, 29, 0.28);
}

.brand img {
  width: clamp(132px, 15vw, 188px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.primary-nav a {
  opacity: 0.9;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(247, 148, 29, 0.22);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 850;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
}

.hero-section {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(36, 37, 40, 0.92), rgba(36, 37, 40, 0.52) 48%, rgba(36, 37, 40, 0.12));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100vw - 40px));
  margin: 0 clamp(20px, 5vw, 72px);
  padding: 150px 0 96px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  line-height: 1.16;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.hero-workforce-card {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 260px);
  gap: 16px;
  align-items: center;
  width: min(650px, 100%);
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.hero-workforce-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 18px;
}

.hero-workforce-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero-workforce-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -48px clamp(20px, 5vw, 72px) 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 24px;
  background: var(--white);
}

.trust-strip strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 20px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  position: relative;
  padding: 100px clamp(20px, 5vw, 72px);
}

.section::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 89, 91, 0.18), transparent);
  pointer-events: none;
}

.section:last-of-type::after,
.ai-section::after,
.platform-section::after,
.contact-section::after {
  display: none;
}

.section-head {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.talent-cards article,
.resource-grid article,
.portal-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(88, 89, 91, 0.05);
}

.feature-card::before,
.talent-cards article::before,
.resource-grid article::before,
.portal-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.feature-card:hover::before,
.talent-cards article:hover::before,
.resource-grid article:hover::before,
.portal-grid article:hover::before {
  transform: scaleX(1);
}

.feature-card p,
.talent-cards p,
.resource-grid p,
.portal-grid p {
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--soft-orange);
  color: var(--orange);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.journey-visual {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.journey-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.journey-visual div {
  padding: 0 18px 18px;
}

.journey-visual strong {
  display: block;
  color: var(--ink);
}

.journey-visual span {
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.muted-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    var(--soft);
}

.industry-showcase {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid a {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
}

.talent-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    url("assets/hero-talent.png") center / cover;
  background-attachment: fixed;
}

.talent-copy {
  position: sticky;
  top: 120px;
}

.talent-copy p {
  color: var(--muted);
  font-size: 18px;
}

.talent-photo-card {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.talent-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.talent-photo-card span {
  display: block;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 850;
}

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

.sri-lanka {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(247, 247, 247, 0.96), rgba(255, 243, 227, 0.72)),
    var(--soft);
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(36, 37, 40, 0.28));
  pointer-events: none;
}

.image-panel.editorial img {
  aspect-ratio: 4 / 4.35;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stat-grid strong {
  display: block;
  color: var(--ink);
}

.stat-grid span {
  color: var(--muted);
  font-size: 14px;
}

.ai-section,
.platform-section {
  background:
    linear-gradient(90deg, rgba(36, 37, 40, 0.96), rgba(36, 37, 40, 0.88)),
    url("assets/hero-operations.png") center / cover;
  color: var(--white);
}

.ai-section h2,
.ai-section h3,
.platform-section h2,
.platform-section h3 {
  color: var(--white);
}

.ai-section .section-head p,
.platform-section .section-head p,
.portal-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.platform-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #333437;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.3), transparent 35%, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.dashboard-card > * {
  position: relative;
}

.roi-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84)),
    url("assets/hero-corporate.png") center / cover;
}

.roi-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
}

.roi-copy-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(231, 232, 234, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-proof span {
  padding: 9px 12px;
  border: 1px solid #ffd9a8;
  border-radius: 999px;
  background: var(--soft-orange);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.dashboard-row,
.dashboard-metric {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-row em,
.dashboard-metric span {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
}

.dashboard-metric b {
  color: var(--orange);
}

.ai-section .feature-card,
.platform-section .portal-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.roi-card,
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(247, 148, 29, 0.34);
  outline-offset: 2px;
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.roi-results div {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft-orange);
}

.roi-results span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.roi-results strong {
  color: var(--ink);
  font-size: 28px;
}

.resource-grid,
.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.resource-grid span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-search {
  max-width: 520px;
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.proposal-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  background: var(--soft-orange);
}

.proposal-section .button {
  justify-self: start;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 37, 40, 0.96), rgba(36, 37, 40, 0.78)),
    url("assets/hero-talent.png") center / cover;
  pointer-events: none;
}

.contact-section > *:not(.contact-bg) {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.sticky-cta {
  position: fixed;
  z-index: 24;
  right: 18px;
  bottom: 18px;
}

.sticky-cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(247, 148, 29, 0.28);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 40px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 150px;
  margin-bottom: 10px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .feature-grid,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .primary-nav a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    inset: 10px 10px auto;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a:not(.nav-cta) {
    display: block;
  }

  .hero-section {
    min-height: 820px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(36, 37, 40, 0.76), rgba(36, 37, 40, 0.4) 44%, rgba(36, 37, 40, 0.88));
  }

  .trust-strip,
  .feature-grid,
  .split-section,
  .talent-section,
  .industry-showcase,
  .sri-lanka,
  .stat-grid,
  .platform-layout,
  .feature-grid.compact,
  .form-grid,
  .roi-layout,
  .roi-results,
  .resource-grid,
  .portal-grid,
  .proposal-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 20px;
  }

  .trust-strip {
    margin: -34px 20px 0;
  }

  .sticky-copy,
  .talent-copy {
    position: static;
  }

  .talent-section {
    background-attachment: scroll;
  }

  .site-footer nav {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 118px;
  }

  .button,
  .hero-actions a,
  .nav-cta {
    width: 100%;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .hero-workforce-card {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
  }

  .sticky-cta a {
    justify-content: center;
    width: 100%;
  }
}
