:root {
  color-scheme: dark;
  --bg: #06100c;
  --bg-soft: #0a1711;
  --surface: rgba(13, 30, 22, 0.82);
  --surface-solid: #0d1e16;
  --surface-light: #13281e;
  --text: #f3f7f4;
  --muted: #a8b7ae;
  --muted-strong: #c6d0ca;
  --accent: #a8d5b5;
  --accent-bright: #d0ead7;
  --accent-dark: #234b35;
  --gold: #d5b77a;
  --border: rgba(216, 235, 223, 0.13);
  --border-strong: rgba(216, 235, 223, 0.23);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(65, 117, 81, 0.22), transparent 27rem),
    radial-gradient(circle at 92% 20%, rgba(213, 183, 122, 0.08), transparent 24rem),
    linear-gradient(180deg, #07120d 0%, #050c09 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a {
  color: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #07120d;
  background: var(--accent-bright);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--accent);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: rgba(168, 213, 181, 0.12);
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.nav a {
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav .nav-cta {
  padding: 10px 15px;
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.78fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: center;
  min-height: 650px;
  padding: clamp(56px, 8vw, 92px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 42, 30, 0.96), rgba(8, 20, 14, 0.95)),
    var(--surface-solid);
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(168, 213, 181, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(168, 213, 181, 0.025),
    0 0 0 90px rgba(168, 213, 181, 0.018);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(213, 183, 122, 0.1);
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.3vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.nav a:focus-visible,
.text-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(168, 213, 181, 0.45);
  outline-offset: 4px;
}

.button-primary {
  color: #07120d;
  background: var(--accent-bright);
  box-shadow: 0 12px 30px rgba(85, 135, 100, 0.22);
}

.button-primary:hover {
  background: #e0f1e4;
}

.button-secondary {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(216, 235, 223, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.trust-list li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "•";
}

.hero-panel {
  padding: 25px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: rgba(5, 15, 10, 0.52);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.panel-label {
  margin-bottom: 7px;
  font-size: 0.68rem;
}

.panel-heading h2 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.status-pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--accent-bright);
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(168, 213, 181, 0.22);
  border-radius: 999px;
  background: rgba(168, 213, 181, 0.08);
}

.workflow-list {
  margin: 0;
  padding: 10px 0;
  list-style: none;
}

.workflow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 14px 0;
}

.workflow-list li:not(:last-child)::after {
  position: absolute;
  bottom: -3px;
  left: 16px;
  width: 1px;
  height: 18px;
  content: "";
  background: var(--border-strong);
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  border: 1px solid rgba(213, 183, 122, 0.22);
  border-radius: 50%;
  background: rgba(213, 183, 122, 0.07);
}

.workflow-list strong,
.workflow-list span {
  display: block;
}

.workflow-list strong {
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.workflow-list div span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.panel-result {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 12px;
  background: rgba(168, 213, 181, 0.07);
}

.result-icon {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #07120d;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  background: var(--accent);
}

.panel-result p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.55;
}

.section-grid,
.services-section,
.approach-section,
.outcomes-section,
.fit-section,
.contact-section {
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
  padding: clamp(48px, 7vw, 80px);
  background: rgba(10, 24, 17, 0.72);
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-copy p,
.approach-copy > p,
.contact-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.services-section,
.outcomes-section {
  padding: clamp(48px, 7vw, 80px);
  background: rgba(7, 18, 12, 0.58);
}

.section-heading.compact {
  margin-bottom: 38px;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(18, 40, 29, 0.76), rgba(10, 24, 17, 0.68));
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(31, 67, 47, 0.78), rgba(12, 29, 20, 0.84));
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 60px;
  place-items: center;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid rgba(213, 183, 122, 0.22);
  border-radius: 50%;
  background: rgba(213, 183, 122, 0.06);
}

.service-card p {
  min-height: 72px;
  color: var(--muted);
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 19px 0 0;
  color: var(--muted-strong);
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
  list-style: none;
}

.service-card li::before {
  margin-right: 8px;
  color: var(--accent);
  content: "—";
}

.approach-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px, 8vw, 100px);
  padding: clamp(48px, 7vw, 80px);
  background: linear-gradient(135deg, rgba(15, 34, 24, 0.94), rgba(7, 18, 12, 0.8));
}

.approach-copy {
  align-self: center;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 26px;
  color: var(--accent-bright);
  font-weight: 700;
  text-decoration: none;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.approach-steps li:first-child {
  padding-top: 0;
}

.approach-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.approach-steps > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--accent-bright);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.approach-steps h3 {
  margin-bottom: 5px;
}

.approach-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.outcome-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.outcome-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.outcome-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.fit-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 8vw, 100px);
  padding: clamp(48px, 7vw, 80px);
  background: rgba(10, 24, 17, 0.72);
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin: 0;
  padding: 16px 0;
  color: var(--muted-strong);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}

.fit-list p:last-child {
  border-bottom: 0;
}

.fit-list span {
  color: var(--accent);
  font-weight: 800;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: clamp(48px, 7vw, 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(213, 183, 122, 0.13), transparent 16rem),
    linear-gradient(135deg, #163825, #0b1d13);
}

.contact-copy {
  max-width: 720px;
}

.contact-action {
  max-width: 380px;
  text-align: center;
}

.contact-action .button {
  width: 100%;
}

.contact-action p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 150px;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.brand-small {
  color: var(--text);
  font-size: 0.86rem;
}

.brand-small .brand-mark {
  width: 28px;
  height: 28px;
}

.copyright {
  text-align: right;
}

@media (max-width: 980px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .section-grid,
  .approach-section,
  .fit-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-action {
    max-width: 440px;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 36px 0;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    min-height: 76px;
  }

  .brand {
    font-size: 0.86rem;
  }

  .nav .nav-cta {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .hero,
  .section-grid,
  .services-section,
  .approach-section,
  .outcomes-section,
  .fit-section,
  .contact-section {
    padding: 34px 22px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

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

  .trust-list {
    display: grid;
  }

  .hero-panel {
    padding: 19px;
  }

  .panel-heading {
    display: grid;
  }

  .status-pill {
    justify-self: start;
  }

  .service-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-icon {
    margin-bottom: 42px;
  }

  .service-card p {
    min-height: 0;
  }

  .contact-action,
  .contact-action .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}