:root {
  --joita-ink: #08120b;
  --joita-green: #103f2a;
  --joita-green-2: #1f6b45;
  --joita-lime: #b6f04a;
  --joita-gold: #d89b22;
  --joita-blue: #2e80a7;
  --joita-mist: #f4f8ef;
  --joita-line: #d8e5cf;
  --joita-card: #ffffff;
  --joita-muted: #425045;
  --joita-shadow: 0 18px 48px rgba(8, 18, 11, 0.12);
}

* {
  box-sizing: border-box;
}

body.joita-2026 {
  margin: 0;
  min-width: 320px;
  background: var(--joita-mist);
  color: var(--joita-ink);
  font-family: Inter, Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--joita-line);
  background: rgba(255, 255, 255, 0.96);
}

.site-nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: var(--joita-ink);
  font-weight: 900;
  text-decoration: none;
  line-height: 1.05;
}

.brand span {
  display: block;
  color: var(--joita-green-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  color: var(--joita-ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 10px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  background: #e8f3df;
}

.hero {
  background: #0d301f;
  color: #fff;
  border-bottom: 6px solid var(--joita-lime);
}

.hero-grid {
  max-width: 1240px;
  min-height: 620px;
  margin: 0 auto;
  padding: 70px 18px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--joita-lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: inherit;
  letter-spacing: 0;
}

h1 {
  margin: 12px 0 18px;
  max-width: 920px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 0.98;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.06;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

p {
  line-height: 1.7;
}

.hero p {
  max-width: 820px;
  color: #edf8e8;
  font-size: 1.08rem;
}

.button-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  border: 1px solid var(--joita-green);
  background: var(--joita-green);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.button.secondary {
  background: #fff;
  color: var(--joita-green);
}

.button.lime {
  background: var(--joita-lime);
  border-color: var(--joita-lime);
  color: var(--joita-ink);
}

.visual-panel {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 22px;
  background: rgba(255,255,255,.08);
}

.system-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.system-node {
  min-height: 120px;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  color: var(--joita-ink);
  font-weight: 900;
}

.system-node small {
  display: block;
  margin-top: 8px;
  color: var(--joita-muted);
  font-weight: 700;
  line-height: 1.45;
}

.section {
  padding: 64px 18px;
}

.section.dark {
  background: var(--joita-green);
  color: #fff;
}

.section.white {
  background: #fff;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.lead {
  max-width: 860px;
  color: var(--joita-muted);
  font-size: 1.06rem;
}

.dark .lead {
  color: #eaf4e5;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--joita-line);
  border-radius: 8px;
  padding: 22px;
  background: var(--joita-card);
  color: var(--joita-ink);
  box-shadow: var(--joita-shadow);
}

.card.flat {
  box-shadow: none;
}

.metric {
  border-left: 5px solid var(--joita-lime);
}

.metric strong {
  display: block;
  font-size: 2rem;
  color: var(--joita-green);
}

.metric span {
  color: var(--joita-muted);
  font-weight: 700;
}

.source-note {
  margin-top: 14px;
  color: var(--joita-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.section-subhead {
  margin-top: 34px;
}

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

.faq-list details {
  border: 1px solid var(--joita-line);
  border-radius: 8px;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(8, 18, 11, 0.06);
}

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

.faq-list p {
  margin-bottom: 0;
  color: var(--joita-muted);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--joita-shadow);
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--joita-line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: #e8f3df;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.pill-list li {
  border-radius: 999px;
  border: 1px solid var(--joita-line);
  background: #fff;
  padding: 8px 12px;
  font-weight: 800;
}

.journey {
  counter-reset: journey;
}

.journey .card {
  position: relative;
}

.journey .card::before {
  counter-increment: journey;
  content: counter(journey);
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--joita-lime);
  color: var(--joita-ink);
  font-weight: 900;
  margin-bottom: 12px;
}

.ecosystem {
  position: relative;
  border-radius: 10px;
  padding: 28px;
  background: #eef7e9;
}

.ecosystem-center {
  margin: 0 auto 22px;
  width: min(280px, 100%);
  border-radius: 8px;
  padding: 22px;
  background: var(--joita-green);
  color: #fff;
  text-align: center;
  font-weight: 900;
}

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

.map-card {
  border-top: 6px solid var(--joita-gold);
}

.map-card:nth-child(2) {
  border-top-color: var(--joita-lime);
}

.map-card:nth-child(3) {
  border-top-color: var(--joita-blue);
}

.footer {
  background: #08120b;
  color: #eaf4e5;
  padding: 36px 18px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.footer-tagline {
  margin: 0;
  color: var(--joita-lime);
  font-size: 1.1rem;
  font-weight: 900;
}

.footer a {
  color: #fff;
}

.disclaimer {
  color: #c8d7c1;
  font-size: 0.9rem;
}

.page-hero {
  padding: 92px 18px 54px;
  background: #0d301f;
  color: #fff;
}

.page-hero .section-inner {
  max-width: 1100px;
}

form.contact-form {
  display: grid;
  gap: 12px;
}

form.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--joita-muted);
  font-weight: 800;
}

input,
select,
textarea {
  min-height: 44px;
  border: 1px solid var(--joita-line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
}

textarea {
  min-height: 140px;
}

@media (max-width: 900px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five,
  .map-strip {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 46px;
  }

  .system-visual {
    grid-template-columns: 1fr;
  }
}
