:root {
  /* Light sections */
  --bg: #ffffff;
  --text: #0f172a;
  /* near-black */
  --muted: #475569;
  /* soft gray */
  --border: #e2e8f0;
  --surface: #f8fafc;

  /* Dark sections (hero, alternating blocks) */
  --dark-bg: #1c262c;
  /* very dark navy / near black */
  --dark-text: #f8fafc;

  /* Accent  */
  --accent: #118383;

  /* UI */
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 14px;
}


html,
body {
  line-height: 1.55;
}



h1,
h2,
h3,
h4,
h5 {
  font-family: Inter, sans-serif;
}

h1 {
  font-weight: 500;
  font-size: 46px;
}

h2 {
  font-size: 30px;
}

body,
p,
li {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  color: #444;
  font-size: 20px;
}


nav {
  background: #11181c;
  color: var(--dark-text);
}

button.navbar-toggler {
  background-color: #fff;
}

.navbar-brand {
  color: #fff;
  text-transform: uppercase;
}

.navbar-brand:hover {
  color: #fff;
  transform: scale(1.1);
}

.nav-link {
  color: #fff;
}

a.contact-nav {
  border: 1px solid #ffffff1a;
  border-radius: 25px;
  padding: 10px 20px !important;
}

.nav-link:hover {
  text-decoration: underline;
  color: #fff;
}

.container-narrow {
  max-width: 980px;
}

.section {
  padding: 90px 10px;
}

.section-dark,
.dark {
  background-color: #1c262c;
  color: #fff;
}

.section-tight {
  padding: 48px 0;
}

.hero {
  padding: 100px 10px;
}

.kicker {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 62ch;
}

.proof-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.section-dark .proof-list {
  color: rgba(248, 250, 252, 0.82);
}

.badge-soft-dark {
  padding: 15px;
  border: 1px solid #fff;
  border-radius: 26px;
  opacity: 0.9;
}

.hero-eyebrow {
  /* display: inline-block; */
  display: none;
  margin-bottom: 0.9rem;
  font-family: "IBM Plex Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #faaf42;
  line-height: 1.2;

  /* explicitly avoid button-like styling */
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-eyebrow__sep {
  opacity: 0.6;
}

@media (max-width: 576px) {
  .hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
}

.hero-link {

  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-left: 20px;
  padding: .25rem 0;
  color: rgba(255, 255, 255, .95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .95);
  line-height: 1.1;
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

.hero-link .arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform .18s ease;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: rgba(255, 255, 255, .75);
  border-bottom-color: rgba(255, 255, 255, .75);
}

.hero-link:hover .arrow,
.hero-link:focus-visible .arrow {
  transform: translateX(3px);
}

.hero-link:focus-visible {
  outline: 2px solid rgba(120, 255, 220, .35);
  outline-offset: 4px;
  border-bottom-color: transparent;
}

@media (prefers-reduced-motion: reduce) {

  .hero-link,
  .hero-link .arrow {
    transition: none;
  }
}


.card-clean {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.card-clean .card-title {
  font-weight: 650;
  letter-spacing: -0.01em;
}

.card-clean .card-text {
  color: var(--muted);
}

#approach h3 {
  text-transform: uppercase;
}

/* Cards (reusable) */
.capability-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.capability-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

/* Headings inside cards */

#focus-areas h3 {
  letter-spacing: -0.3px;
  font-size: 25px;
  font-weight: 400 !important;
}

/* Card icon */
.card-icon {
  display: inline-flex;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.8;
  color: #084242;
}

/* Accent line */
.capability-card {
  position: relative;
  overflow: hidden;
}

/* Capabilities is dark, but highlight cards in light sections stay light */


#focus-areas .text-secondary-1 {
  color: #222;
}

#focus-areas {
  background-color: #e7e7e7;
}

.text-secondary-1 {
  color: #444;
}

#focus-areas .capability-card {
  background: #1c262c;
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

#focus-areas .capability-accent {
  background: rgba(255, 255, 255, .28);
}

#focus-areas .capability-icon {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}

#focus-areas .capability-icon i {
  color: rgba(255, 255, 255, .88);
}

#focus-areas .badge.text-bg-light {
  background: rgba(255, 255, 255, .06) !important;
  border-color: rgba(255, 255, 255, .14) !important;
  color: rgba(255, 255, 255, .82) !important;
}

#focus-areas h3,
#focus-areas p {
  color: #fff;
  opacity: 0.9;
}

/* Capability card media */
.capability-media {
  border-radius: 16px;
  overflow: hidden;
  height: 115px;
  width: 115px;
  margin: 10px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.capability-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.95;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Hero collage */

.hero-collage {
  position: relative;
  min-height: 380px;
  margin: 0 48px;
}

/* Base card */
.hero-collage__base {
  position: relative;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.30);
}

/* subtle overlay to make any image feel more “product” */
.hero-collage__base::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #118383;
  opacity: 0.15;
  pointer-events: none;
}

.hero-collage__base img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* Floating chips/cards */
.hero-float {
  position: absolute;
  width: 220px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);

  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.hero-float__value {
  font-weight: 650;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* remove label spacing if you keep label elements in markup */
.hero-float__label {
  display: none;
}

/* Accent dot */
.hero-float__value::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(8, 66, 66, 0.22);
  flex: 0 0 auto;
}

/* Emphasis: Digital Experience */
.hero-float--one {
  top: 18px;
  right: -10px;
  width: 180px;

  background: rgba(8, 66, 66, 0.88);
  /* accent emphasis */
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(8, 66, 66, 0.34);
  transform: translateY(-2px);
}

.hero-float--one .hero-float__value {
  font-weight: 700;
}

.hero-float--one .hero-float__value::before {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

/* Positions for the other chips */
.hero-float--two {
  top: 105px;
  width: 180px;
  right: 5px;
}


.hero-float--three {
  top: 250px;
  left: -18px;
  width: 180px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-collage {
    min-height: 320px;
    margin: 18px 0 0 0;
  }

  .hero-collage__base {
    height: 320px;
  }

  .hero-float {
    width: 210px;
  }

  .hero-float--one {
    right: 8px;
    width: 220px;
  }

  .hero-float--two {
    left: auto;
    right: 8px;
    bottom: 10px;
  }

  .hero-float--three {
    left: 10px;
    top: 120px;
    width: 220px;
  }
}


.section-dark .capability-card-dark h2 {
  color: rgba(248, 250, 252, 0.86);
}

/* Proof list polish */
.proof-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.section-dark .proof-list {
  color: rgba(248, 250, 252, 0.78);
}

.section-dark .proof-list li {
  margin-bottom: 10px;
}

.section-dark .proof-list li:last-child {
  margin-bottom: 0;
}

.hr-soft {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.link-accent {
  color: var(--accent);
  text-decoration: none;
}

.link-accent:hover {
  text-decoration: underline;
}

.btn-pill,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 28px;
  border-radius: 999px;

  background-color: var(--accent);
  /* #084242 */
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;

  border: none;
  transition: all 0.2s ease;
}

.btn-pill:hover {
  background-color: #0a5a5a;
  /* slightly lighter green */
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-pill .arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-pill:hover .arrow {
  transform: translateX(3px);
}


.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.95rem;
}

.step {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 650;
}

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

.mb-40-c {
  margin-bottom: 40px;
}

/* =========================
   Technical Competencies Map
   ========================= */
#competencies {
  background: #f5f7fa;
}

.competency-map {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 10px;
}

/* subtle background connector */
.competency-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(20, 30, 40, 0.10), transparent 70%),
    radial-gradient(closest-side, rgba(20, 30, 40, 0.06), transparent 75%);
  opacity: 0.9;
}

/* center block */
.competency-center {
  position: relative;
  z-index: 1;
}

.competency-core {
  border-radius: 18px;
  padding: 18px 18px;
  border: 1px solid rgba(20, 30, 40, 0.12);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 28px rgba(10, 20, 30, 0.07);
  text-align: center;
}

.competency-core-title {
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: rgba(15, 20, 25, 0.92);
}

.competency-core-subtitle {
  font-size: 0.95rem;
  color: rgba(15, 20, 25, 0.62);
}

/* nodes */
.competency-node {
  position: relative;
  z-index: 1;
}

.competency-node-card {
  border-radius: 18px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(20, 30, 40, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(10, 20, 30, 0.05);
}

.competency-node-title {
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: rgba(15, 20, 25, 0.88);
}

/* chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20, 30, 40, 0.14);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  line-height: 1;
  color: #000;
}

/* responsive layout: 5-cell system map */
@media (min-width: 992px) {
  .competency-map {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "dev dev analytics"
      "cms center analytics"
      "cms performance performance";
    align-items: stretch;
    gap: 18px;
  }

  .competency-center {
    grid-area: center;
    display: flex;
  }

  .competency-core {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .node-dev {
    grid-area: dev;
  }

  .node-cms {
    grid-area: cms;
  }

  .node-analytics {
    grid-area: analytics;
  }

  .node-performance {
    grid-area: performance;
  }

  .competency-node-card {
    height: 100%;
  }
}

.competency-footnote {
  font-size: 0.92rem;
}

/* Contact section */
.contact-shell {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.contact-image {
  position: relative;
  height: 100%;
  min-height: 420px;
  background: #0f1a1d;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-image__note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(10, 16, 18, 0.75);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.contact-form {
  padding: 40px 34px;
  background: #f5f7fa;
}

@media (max-width: 991px) {
  .contact-form {
    padding: 28px 22px;
  }

  .contact-image {
    min-height: 280px;
  }
}

/* Honeypot: hidden visually, not display:none */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer {
  padding: 32px 0 48px;
  color: var(--muted);
  font-size: 0.95rem;
}

.back-to-top {
  color: #fff;
}

/* Accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(8, 66, 66, 0.35);
  outline-offset: 2px;
  border-radius: 10px;
}


/* Small screens */
@media (max-width: 576px) {
  .section {
    padding: 56px 0;
  }
}

#work h3 {
  font-size: 1.50rem;
}

/* Work section, minimal styling */
.work-item {
  margin-top: 0;

}

.work-card {

  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(10, 20, 30, .08);
}

/*
.work-card p,
.work-card div,
.work-card li {
  color: #fff;
}
*/
.work-kicker {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .6);
  font-weight: 500;
}

.work-title {
  letter-spacing: -0.02em;
}

.work-label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .55);
  font-weight: 600;
  margin-bottom: .35rem;
}


.work-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #ebebeb;
  box-shadow: 0 18px 46px rgba(10, 20, 30, .12);
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #118383;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 131, 131, .45);
  padding-bottom: 2px;
}

.work-link:hover {
  opacity: .85;
}

/* 1) Make sure the work item has enough vertical space for the sticky effect to feel intentional */
.work-item {
  padding-block: 3rem;
  /* adjust to taste */
}

.fl-hidden {
  display: none !important;
}