:root {
      --green: #14a800;
      --green-dark: #108a00;
      --teal: #13544e;
      --ink: #0b1f1b;
      --muted: #5f7168;
      --white: #ffffff;
      --soft: #f5f9f5;
      --mint: #e4ebe4;
      --line: rgba(19,84,78,0.14);
      --shadow: 0 24px 70px rgba(0,30,0,0.10);
    }

    * { 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(--soft);
      line-height: 1.55;
      overflow-x: hidden;
    }

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

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(245,249,245,0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--teal);
      font-weight: 900;
      letter-spacing: -0.045em;
      font-size: 1.14rem;
    }

    .logo-mark {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: var(--white);
      font-size: 1.45rem;
      font-weight: 950;
      box-shadow: 0 16px 34px rgba(20,168,0,0.24);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 700;
    }

    nav a:hover { color: var(--green); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 850;
      transition: 180ms ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: var(--white);
      background: var(--green);
      box-shadow: 0 18px 38px rgba(20,168,0,0.22);
    }

    .btn-primary:hover { background: var(--green-dark); }

    .btn-secondary {
      color: var(--teal);
      background: var(--white);
      border-color: rgba(19,84,78,0.18);
    }

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

    .hero {
      padding: 74px 0 54px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(20,168,0,0.08);
      border: 1px solid rgba(20,168,0,0.16);
      color: var(--teal);
      font-size: 0.9rem;
      font-weight: 800;
    }

    .spark {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 8px rgba(20,168,0,0.10);
    }

    h1 {
      margin: 24px 0 18px;
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: 0.92;
      letter-spacing: -0.085em;
      color: var(--ink);
      max-width: 760px;
    }

    .green { color: var(--green); }

    .hero p {
      max-width: 640px;
      margin: 0 0 32px;
      color: var(--muted);
      font-size: 1.16rem;
    }

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

    .hero-card {
      position: relative;
      overflow: hidden;
      border-radius: 40px;
      background: linear-gradient(135deg, var(--teal), #071412);
      color: var(--white);
      padding: 28px;
      box-shadow: var(--shadow), 0 40px 100px rgba(19,84,78,0.20);
      min-height: 560px;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none;
    }

    .card-top {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.74);
      font-size: 0.86rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .badge {
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(20,168,0,0.90);
      color: var(--white);
    }

    .terminal {
      position: relative;
      z-index: 2;
      margin-top: 26px;
      padding: 26px;
      border-radius: 28px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
    }

    .terminal-line {
      margin: 0 0 14px;
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.88);
    }

    .prompt { color: #95df00; }
    .ok { color: #bbff9e; }
    .muted-light { color: rgba(255,255,255,0.56); }

    .grid-stats {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .grid-stat {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .grid-stat strong {
      display: block;
      font-size: 1.55rem;
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .grid-stat span {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,0.68);
      font-size: 0.88rem;
    }

    .overview {
      padding: 18px 0 10px;
    }

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

    .overview-card {
      padding: 22px;
      border-radius: 26px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 14px 34px rgba(0,30,0,0.05);
    }

    .overview-card strong {
      display: block;
      font-size: 1.7rem;
      line-height: 1;
      color: var(--teal);
      letter-spacing: -0.05em;
    }

    .overview-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 650;
    }

    section { padding: 78px 0; }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-head h2 {
      margin: 0 0 12px;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      line-height: 1.02;
      letter-spacing: -0.075em;
      color: var(--ink);
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 30px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 18px 46px rgba(0,30,0,0.06);
      min-height: 290px;
    }

    .service::after {
      content: "";
      position: absolute;
      right: -60px;
      bottom: -60px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: rgba(20,168,0,0.08);
    }

    .service-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 20px;
      color: var(--white);
      background: var(--teal);
      font-weight: 950;
      margin-bottom: 18px;
      position: relative;
      z-index: 2;
    }

    .service:nth-child(2n) .service-icon { background: var(--green); }
    .service:nth-child(3n) .service-icon { background: var(--ink); }

    .service h3 {
      position: relative;
      z-index: 2;
      margin: 0 0 10px;
      font-size: 1.28rem;
      letter-spacing: -0.04em;
    }

    .service p {
      position: relative;
      z-index: 2;
      margin: 0;
      color: var(--muted);
    }

    .split-band {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .band-card {
      padding: 38px;
      border-radius: 36px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .band-card.dark {
      background: linear-gradient(135deg, var(--teal), #081714);
      color: var(--white);
      border: none;
    }

    .band-card h2 {
      margin: 0 0 14px;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.02;
      letter-spacing: -0.07em;
    }

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

    .band-card.dark p {
      color: rgba(255,255,255,0.72);
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .tag {
      padding: 9px 13px;
      border-radius: 999px;
      background: var(--mint);
      color: var(--teal);
      font-weight: 800;
      font-size: 0.88rem;
    }

    .band-card.dark .tag {
      background: rgba(255,255,255,0.10);
      color: var(--white);
    }

    .process-layout {
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 30px;
      align-items: start;
    }

    .process-card {
      position: sticky;
      top: 108px;
      padding: 38px;
      border-radius: 38px;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .process-card h2 {
      margin: 0 0 14px;
      font-size: 2.3rem;
      line-height: 1.02;
      letter-spacing: -0.07em;
    }

    .process-card p {
      margin: 0;
      color: rgba(255,255,255,0.76);
    }

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

    .chip {
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
      font-size: 0.88rem;
      font-weight: 750;
    }

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

    .step {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 16px;
      padding: 24px;
      border-radius: 28px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 14px 36px rgba(0,30,0,0.05);
    }

    .step-number {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: var(--teal);
      color: var(--white);
      font-weight: 950;
    }

    .step:nth-child(2n) .step-number { background: var(--green); }

    .step h3 {
      margin: 0 0 5px;
      color: var(--ink);
      letter-spacing: -0.03em;
    }

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

    .cta {
      margin: 30px auto 84px;
      padding: 56px;
      border-radius: 44px;
      background: linear-gradient(135deg, var(--ink), var(--teal));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      box-shadow: 0 30px 90px rgba(0,0,0,0.18);
      overflow: hidden;
      position: relative;
    }

    .cta::after {
      content: "";
      position: absolute;
      right: -120px;
      top: -120px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(20,168,0,0.20);
    }

    .cta h2 {
      position: relative;
      z-index: 2;
      margin: 0 0 10px;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.02;
      letter-spacing: -0.075em;
    }

    .cta p {
      position: relative;
      z-index: 2;
      margin: 0;
      max-width: 720px;
      color: rgba(255,255,255,0.70);
    }

    .cta .btn {
      position: relative;
      z-index: 2;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 30px 0;
      background: var(--white);
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      nav { display: none; }
      .hero-grid, .split-band, .process-layout { grid-template-columns: 1fr; }
      .services, .overview-grid { grid-template-columns: 1fr 1fr; }
      .process-card { position: static; }
      .cta { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 680px) {
      .container { width: min(100% - 28px, 1180px); }
      .hero { padding-top: 48px; }
      .services, .overview-grid, .grid-stats { grid-template-columns: 1fr; }
      .hero-card, .cta, .process-card, .band-card { border-radius: 30px; padding: 28px; }
      h1 { font-size: clamp(2.8rem, 16vw, 4.2rem); }
    }

/* Shared additions for accessibility and the new content pages. */
:focus-visible {
  outline: 3px solid rgba(20,168,0,0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

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

.logo[href="/"] { cursor: pointer; }

.service h3 a:hover,
.footer-links a:hover,
.prose a:hover,
.breadcrumb a:hover { color: var(--green); }

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.page-hero {
  padding: 66px 0 34px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 28px;
  align-items: stretch;
}

.page-hero-copy,
.page-hero-panel {
  border-radius: 36px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(0,30,0,0.06);
}

.page-hero-copy {
  padding: 44px;
  background: var(--white);
}

.page-hero h1 {
  margin: 18px 0 18px;
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-hero-panel {
  padding: 34px;
  background: linear-gradient(135deg, var(--teal), #071412);
  color: var(--white);
}

.page-hero-panel h2 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  letter-spacing: -0.045em;
}

.page-hero-panel p { color: rgba(255,255,255,0.72); }

.page-hero-panel ul,
.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.page-hero-panel li + li,
.prose li + li { margin-top: 8px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.content-section { padding: 40px 0 84px; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.prose,
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0,30,0,0.05);
}

.prose {
  padding: 42px;
  border-radius: 34px;
}

.prose h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin: 28px 0 8px;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.prose p,
.prose li { color: var(--muted); }

.prose a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.side-card {
  position: sticky;
  top: 106px;
  padding: 26px;
  border-radius: 28px;
}

.side-card h2,
.side-card h3 {
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}

.side-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a {
  padding: 11px 13px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--teal);
  font-weight: 800;
}

.side-links a:hover { background: var(--mint); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 8px;
}

.feature-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.feature-card h3 { margin-top: 0; }

.faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq details:last-child { border-bottom: 0; }

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq details p { margin-bottom: 0; }

.notice {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(20,168,0,0.08);
  border: 1px solid rgba(20,168,0,0.16);
  color: var(--teal);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.contact-option {
  padding: 24px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-option strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

.updated {
  margin-top: 18px !important;
  font-size: 0.94rem !important;
}

@media (max-width: 980px) {
  .page-hero-grid,
  .content-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
}

@media (max-width: 680px) {
  .page-hero { padding-top: 42px; }
  .page-hero-copy,
  .page-hero-panel,
  .prose { padding: 28px; border-radius: 28px; }
  .feature-grid,
  .contact-options { grid-template-columns: 1fr; }
}
