:root {
  --sand: #fff8ec;
  --earth: #f3e2c7;
  --green: #2d5a27;
  --blue: #00509d;
  --blue-soft: #eaf3ff;
  --ink: #1f2a24;
  --muted: #586257;
  --paper: #ffffff;
  --line: rgba(67, 54, 35, 0.15);
  --shadow: 0 18px 45px rgba(44, 36, 24, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1080px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(67, 54, 35, 0.12);
  background: rgba(255, 248, 236, 0.94);
  backdrop-filter: blur(14px);
}
.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-wrap { min-height: 72px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 900;
}
.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
}
.nav-links,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 750;
}
.nav-links a:hover,
.site-footer a:hover { color: var(--blue); }

.hero,
.section { padding: clamp(2.35rem, 7vw, 5.6rem) 0; }
.color-sand { background: var(--sand); }
.color-white { background: #fff; }
.color-earth { background: var(--earth); }
.color-blue { background: var(--blue-soft); }

.hero-inner {
  display: grid;
  gap: 1.05rem;
  max-width: 760px;
}
.compliance-banner-static {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff3cd;
  color: #6b4f00;
  font-size: 0.95rem;
  line-height: 1.5;
}
.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--green);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 950;
  line-height: 0.98;
  word-break: normal;
  overflow-wrap: normal;
}
h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2.05rem, 5.5vw, 3.9rem);
  font-weight: 920;
  line-height: 1.02;
}
.hero-subheadline {
  max-width: 20ch;
  margin: 0;
  color: #342b1c;
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  font-weight: 880;
  line-height: 1.12;
}
.hero-support {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding-left: 1rem;
  border-left: 0.35rem solid var(--green);
  color: #342b1c;
  font-size: clamp(1.08rem, 2.8vw, 1.4rem);
  font-weight: 760;
  line-height: 1.28;
}
.hero-text,
.centered-copy p,
.text-card p,
.payment-card p {
  color: var(--muted);
  font-size: clamp(1.02rem, 2.4vw, 1.16rem);
  line-height: 1.65;
}
.hero-text {
  max-width: 48rem;
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 850;
  text-align: center;
}
.button-primary {
  border: 1px solid var(--green);
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(45, 90, 39, 0.18);
}
.button-payment {
  border: 1px solid rgba(0, 80, 157, 0.24);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 80, 157, 0.13);
}
.payment-trust {
  margin: -0.15rem 0 0;
  color: #4d5a52;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}
.payment-action {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
}

.centered-copy {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  max-width: 48rem;
  text-align: center;
}
.centered-copy h2 { max-width: 16ch; }
.centered-copy p { margin-bottom: 0; }

.economy-section {
  padding-top: clamp(2rem, 6vw, 4.8rem);
}
.economy-heading {
  display: grid;
  gap: 0.55rem;
  max-width: 46rem;
  margin-bottom: 1.25rem;
}
.economy-heading h2 {
  max-width: 16ch;
}
.economy-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.4vw, 1.16rem);
  line-height: 1.6;
}
.economy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.economy-panel {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.1rem, 2.6vw, 1.45rem);
  border: 1px solid rgba(67, 54, 35, 0.1);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(44, 36, 24, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.economy-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(44, 36, 24, 0.12);
}
.economy-panel h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 920;
  line-height: 1.08;
}
.economy-panel p {
  margin: 0;
  color: #3f4a40;
  font-size: 0.98rem;
  line-height: 1.58;
}
.economy-panel .panel-headline {
  margin: 0 0 0.75rem;
  color: #1f2a24;
  font-size: clamp(1.12rem, 2.2vw, 1.34rem);
  font-weight: 900;
  line-height: 1.22;
}
.panel-transport { background: #eaf5ee; }
.panel-markets { background: #fff4dd; }
.panel-farming { background: #eef8e8; }
.panel-business { background: #eaf3ff; }
.panel-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #1f2a24;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(67, 54, 35, 0.11);
}
.panel-link:hover {
  background: #ffffff;
}
.section-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.story-card,
.payment-card,
.ecosystem-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}
.story-card {
  display: grid;
  align-content: start;
  min-height: 15rem;
  padding: clamp(1rem, 3vw, 1.4rem);
}
.story-image {
  display: block;
  width: 100%;
  height: 220px;
  margin-bottom: 1rem;
  border-radius: 12px;
  object-fit: cover;
}
.story-label {
  margin: 0 0 1.4rem;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
blockquote {
  margin-bottom: 0;
  color: #2e291f;
  font-size: clamp(1.15rem, 2.4vw, 1.48rem);
  font-weight: 820;
  line-height: 1.25;
}
.story-card .story-text {
  margin: 0;
  color: #66746b;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  line-height: 1.45;
}
.community-panel,
.payment-card {
  display: grid;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}
.ecosystem-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.ecosystem-nav span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(67, 54, 35, 0.12);
  border-radius: 999px;
  background: #fffaf2;
  color: #536056;
  font-size: 0.94rem;
  font-weight: 800;
}
.ecosystem-nav .ecosystem-nav-active {
  color: #fff;
  background: var(--blue);
  border-color: rgba(0, 80, 157, 0.2);
}
.ecosystem-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 14rem;
  padding: clamp(1rem, 3vw, 1.35rem);
}
.ecosystem-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 900;
}
.ecosystem-card p {
  margin: 0;
  color: #4f5b53;
  line-height: 1.55;
}
.ecosystem-status {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff3cd;
  color: #6b4f00;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ecosystem-status-available {
  background: #eaf5ee;
  color: var(--green);
}
.ecosystem-card-available {
  background: #f7fbff;
}
.community-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}
.community-copy {
  display: grid;
  gap: 0.8rem;
  max-width: 42rem;
}
.community-copy p {
  margin: 0;
  color: #243247;
  font-size: clamp(1.16rem, 3vw, 1.5rem);
  font-weight: 760;
  line-height: 1.36;
}
.highlight-quote {
  margin-top: 0.55rem;
  padding: 1rem 1.1rem;
  border-left: 0.35rem solid var(--green);
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow);
}
.payment-card {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.25rem, 4vw, 2.4rem);
}
.payment-card p { margin-bottom: 0; }
.community-flow {
  display: grid;
  gap: clamp(1.2rem, 3vw, 1.8rem);
}
.community-flow-heading {
  max-width: 760px;
}
.community-flow-heading h2 {
  max-width: 18ch;
}
.community-flow-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.4vw, 1.16rem);
  line-height: 1.6;
}
.community-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
  align-items: stretch;
}
.community-flow-card {
  position: relative;
  display: flex;
  min-height: 14.5rem;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: flex-start;
  padding: clamp(1.15rem, 2.4vw, 1.5rem);
  border: 1.5px solid rgba(67, 54, 35, 0.16);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbf7 100%);
  box-shadow: 0 18px 38px rgba(44, 36, 24, 0.1);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.community-flow-card:hover {
  border-color: rgba(67, 54, 35, 0.24);
  box-shadow: 0 24px 48px rgba(44, 36, 24, 0.14);
  transform: translateY(-4px);
}
.community-flow-card:nth-child(1) {
  border-color: rgba(14, 116, 144, 0.24);
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 58%, #e0f2fe 100%);
}
.community-flow-card:nth-child(2) {
  border-color: rgba(2, 132, 199, 0.24);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 62%, #ccfbf1 100%);
}
.community-flow-card:nth-child(3) {
  border-color: rgba(217, 119, 6, 0.25);
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 62%, #fef3c7 100%);
}
.community-flow-card:nth-child(4) {
  border-color: rgba(37, 99, 235, 0.24);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}
.community-flow-card:nth-child(5) {
  border-color: rgba(22, 101, 52, 0.24);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}
.community-flow-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(0, 80, 157, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 1.35rem;
  box-shadow: 0 8px 18px rgba(26, 43, 59, 0.08);
}
.community-flow-card h3 {
  margin: 0;
  color: #243627;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 920;
  line-height: 1.08;
}
.community-flow-card p:not(.community-flow-icon) {
  margin: 0;
  color: #445148;
  font-size: 1rem;
  line-height: 1.55;
}
.community-flow-note {
  max-width: 820px;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 80, 157, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #334139;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: var(--shadow);
}
.site-footer {
  border-top: 1px solid rgba(67, 54, 35, 0.14);
  padding: 1.35rem 0;
  background: #f6ead7;
}
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-statement {
  width: 100%;
  color: var(--green) !important;
  font-size: clamp(1.08rem, 2.6vw, 1.28rem) !important;
  font-weight: 850;
  text-align: center;
}

@media (max-width: 980px) and (min-width: 761px) {
  .economy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) and (min-width: 761px) {
  .community-flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .community-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .community-flow-grid {
    grid-template-columns: 1fr;
  }

  .community-flow-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .nav-wrap,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-links { width: 100%; }
  .economy-grid,
  .ecosystem-grid,
  .story-grid,
  .community-panel,
  .payment-card {
    grid-template-columns: 1fr;
  }
  .economy-panel,
  .story-card { min-height: auto; }
  .story-image {
    height: 180px;
  }
  .panel-link,
  .payment-action,
  .payment-card .button { width: 100%; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, 1080px); }
  .site-header { position: static; }
  .hero,
  .section { padding: 2rem 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.35rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero-support { padding-left: 0.8rem; }
  .hero-actions .button { width: 100%; }
}


/* Hero and partner ecosystem layout fixes */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero h1 {
  width: 100%;
  max-width: 760px;
  line-height: 0.98;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.hero p {
  word-break: normal;
  overflow-wrap: normal;
}

.compliance-banner-static {
  position: static;
  max-width: 680px;
  width: fit-content;
}

.partner-hero {
  background: var(--sand);
}

.partner-hero .hero-inner {
  max-width: 820px;
}

.partner-subtitle {
  max-width: 760px;
  margin: 0;
  color: #342b1c;
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 760;
  line-height: 1.35;
}

.disclaimer-box,
.governance-note {
  max-width: 820px;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 80, 157, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #334139;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: var(--shadow);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-tile {
  display: grid;
  gap: 0.65rem;
  min-height: 13rem;
  align-content: start;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.partner-tile h2 {
  max-width: none;
  margin: 0;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1.1;
}

.partner-status {
  width: fit-content;
  margin: 0;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  background: var(--blue-soft);
  color: #173f67;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-tile p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .compliance-banner-static {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

/* Live hero layout safety override */
.hero,
.payment-section,
.payment-hero,
.payments-hero,
.landing-hero,
.hero-card,
.payment-card {
  position: relative;
}

.hero-inner,
.hero-content,
.payment-hero-content,
.payments-hero-content,
.landing-hero-content,
.payment-card > div:first-child {
  width: 100%;
  max-width: 860px;
  min-width: 0;
}

.hero h1,
.payment-section h1,
.payment-section h2,
.payment-hero h1,
.payment-hero h2,
.payments-hero h1,
.payments-hero h2,
.landing-hero h1,
.landing-hero h2,
.hero-title {
  width: auto;
  max-width: 820px;
  min-width: 0;
  display: block;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.payment-card {
  grid-template-columns: 1fr;
  max-width: min(1080px, calc(100% - 32px));
}

.hero-badge,
.payment-badge,
.payments-badge,
.compliance-badge,
.payment-section .button-payment {
  position: static;
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin: 0 0 16px;
}

.hero-disclaimer,
.compliance-note,
.demo-banner,
.payment-section .payment-trust {
  position: static;
  max-width: 820px;
  margin: 0 0 24px;
}

.payment-section .eyebrow {
  margin-bottom: 0.7rem;
}

.payment-section p:last-child {
  max-width: 760px;
}

@media (max-width: 760px) {
  .hero h1,
  .payment-section h2,
  .hero-title {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .payment-section .button-payment {
    width: fit-content;
  }
}

/* Partner ecosystem service panels */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
  align-items: stretch;
}

.ecosystem-card {
  position: relative;
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: flex-start;
  padding: clamp(1.15rem, 2.4vw, 1.5rem);
  border: 1.5px solid rgba(67, 54, 35, 0.16);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbf7 100%);
  box-shadow: 0 18px 38px rgba(44, 36, 24, 0.1);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.ecosystem-card:hover {
  border-color: rgba(67, 54, 35, 0.24);
  box-shadow: 0 24px 48px rgba(44, 36, 24, 0.14);
  transform: translateY(-4px);
}

.ecosystem-card.available {
  border-color: rgba(45, 90, 39, 0.28);
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  box-shadow: 0 20px 42px rgba(45, 90, 39, 0.14);
}

.ecosystem-card.future {
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fc 100%);
}

.ecosystem-card:nth-child(1) {
  border-color: rgba(14, 116, 144, 0.24);
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 58%, #e0f2fe 100%);
}

.ecosystem-card:nth-child(2) {
  border-color: rgba(2, 132, 199, 0.24);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 62%, #ccfbf1 100%);
}

.ecosystem-card:nth-child(3) {
  border-color: rgba(109, 40, 217, 0.22);
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.ecosystem-card:nth-child(4) {
  border-color: rgba(217, 119, 6, 0.25);
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 62%, #fef3c7 100%);
}

.ecosystem-card:nth-child(5) {
  border-color: rgba(37, 99, 235, 0.24);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.ecosystem-card:nth-child(6) {
  border-color: rgba(22, 101, 52, 0.24);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.ecosystem-card:nth-child(7) {
  border-color: rgba(190, 18, 60, 0.2);
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
}

.ecosystem-card:nth-child(8) {
  border-color: rgba(15, 118, 110, 0.24);
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.ecosystem-card:nth-child(9) {
  border-color: rgba(180, 83, 9, 0.24);
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.ecosystem-card:nth-child(10) {
  border-color: rgba(14, 116, 144, 0.24);
  background: linear-gradient(135deg, #ecfeff 0%, #cffafe 62%, #e0f2fe 100%);
}

.ecosystem-card.available:hover {
  border-color: rgba(45, 90, 39, 0.38);
  box-shadow: 0 26px 52px rgba(45, 90, 39, 0.18);
}

.ecosystem-status {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(0, 80, 157, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #153d63;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(26, 43, 59, 0.08);
}

.ecosystem-card.available .ecosystem-status {
  border-color: rgba(45, 90, 39, 0.34);
  background: #dff3df;
  color: #235c28;
}

.ecosystem-card h2 {
  max-width: none;
  margin: 0;
  color: #243627;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 920;
  line-height: 1.06;
}

.ecosystem-card p {
  margin: 0;
  color: #445148;
  font-size: 1rem;
  line-height: 1.55;
}

.ecosystem-card .ecosystem-footer {
  margin-top: auto;
  padding-top: 1rem;
  color: #6a746d;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-card {
    min-height: auto;
  }
}

/* SierraYai homepage two-column hero */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left,
.hero-right {
  flex: 1;
  min-width: 0;
}

.hero-left img {
  display: block;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 960 / 590;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-image-link {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero-right {
  display: grid;
  gap: 1.05rem;
}

.hero-right h1 {
  max-width: 760px;
  margin: 0;
  letter-spacing: 0;
}

.hero-line {
  margin: 0;
  color: #342b1c;
  font-size: clamp(1.08rem, 2.8vw, 1.4rem);
  font-weight: 760;
  line-height: 1.28;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 850;
  text-align: center;
}

.btn-primary {
  border: 1px solid var(--green);
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(45, 90, 39, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(0, 80, 157, 0.24);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 80, 157, 0.13);
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left,
  .hero-right,
  .hero-image-link,
  .hero-left img {
    width: 100%;
  }

  .hero-left img {
    max-width: none;
  }

  .buttons a {
    width: 100%;
  }
}
