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

html, body, h1, h2, h3, p, figure, blockquote { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

img, svg { display: block; max-width: 100%; }

button { font: inherit; color: inherit; }

a { color: inherit; }

[hidden] { display: none !important; }


@font-face {
  font-family: 'Geometos Neue';
  src: url('../fonts/geometos-neue-bold.woff2') format('woff2'),
       url('../fonts/geometos-neue-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.font-heading {
  font-family: 'Geometos Neue', 'Space Grotesk', sans-serif;
  font-weight: 700;
}


:root {
  --green-cta:     #5EC60E;
  --green-accent:  #22C55E;
  --green-deep:    #15803D;
  --green-btn3d:   #00C951;

  --ink:        #0D0D0D;
  --grey-bg:    #F3F3F3;
  --modal-bg:   #ECEAE5;

  --background:            0 0% 0%;
  --foreground:            210 20% 95%;
  --primary:               142 71% 45%;
  --accent:                142 76% 73%;
  --destructive:           0 84.2% 60.2%;
  --muted-foreground:      0 0% 100%;
  --cta-footer-match:      96 32% 84%;

  --why-solution-surface:  0 0% 100%;
  --why-solution-heading:  142 71% 38%;
  --why-solution-copy:     0 0% 33%;
  --why-solution-border:   0 0% 87%;

  --radius: 0.75rem;

  --hero-gradient-soft: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(44 30% 96%) 22%, hsl(0 0% 100%) 52%);
  --cta-gradient-soft:  linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(0 0% 100%) 34%, hsl(96 24% 95%) 58%, hsl(96 28% 90%) 78%, hsl(96 32% 84%) 100%);
}


body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1280px) { .container { max-width: 1280px; padding: 0 2rem; } }

.section { position: relative; padding: 40px 0; }
@media (min-width: 640px)  { .section { padding: 70px 0; } }
@media (min-width: 768px)  { .section { padding: 50px 0; } }
@media (min-width: 1024px) { .section { padding: 70px 0; } }

.section--white { background: #fff; }
.section--grey  { background: var(--grey-bg); }
.section--dark  { background: var(--ink); overflow: hidden; }

.h2 {
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
}
@media (min-width: 640px)  { .h2 { font-size: 32px; margin-bottom: 20px; } }
@media (min-width: 768px)  { .h2 { font-size: 26px; } }
@media (min-width: 1024px) { .h2 { font-size: 42px; } }

.h2--onDark { color: #fff; }

.accent { color: hsl(var(--why-solution-heading)); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
  border-radius: 9999px;
}

.btn--green {
  font-family: 'Geometos Neue', 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  padding: 16px 30px;
  background: var(--green-cta);
  border: 1px solid rgba(0, 0, 0, 0.00);
  box-shadow:
    0 6px 4px 0 rgba(94, 198, 14, 0.20),
    0 14px 14px 0 rgba(94, 198, 14, 0.20),
    0 6px 12px 1px rgba(255, 255, 255, 0.20) inset,
    0 2px 6px 1px rgba(255, 255, 255, 0.50) inset;
  transition: opacity 0.15s;
}
.btn--green:hover { opacity: 0.9; }

.btn--outline {
  font-family: 'Geometos Neue', 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  padding: 16px 30px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8);
  transition: color 0.15s, border-color 0.15s;
}
.btn--outline:hover { color: #000; border-color: rgba(0, 0, 0, 0.4); }

.btn--black {
  font-family: 'Geometos Neue', 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  padding: 16px 30px;
  background: #000;
  box-shadow:
    0 6px 12px 1px rgba(255, 255, 255, 0.10) inset,
    0 2px 6px 1px rgba(255, 255, 255, 0.30) inset,
    0 6px 5px 0 rgba(0, 0, 0, 0.10),
    0 14px 14px 0 rgba(0, 0, 0, 0.16);
  transition: opacity 0.15s;
}
.btn--black:hover { opacity: 0.9; }

.btn--nav {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green-deep);
  transition: background-color 0.15s;
}
.btn--nav:hover { background: rgba(34, 197, 94, 0.14); }

.btn--submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: #000;
  background: var(--green-btn3d);
  border: 1px solid rgba(0, 0, 0, 0.00);
  box-shadow:
    0 6px 4px 0 rgba(0, 201, 81, 0.20),
    0 14px 14px 0 rgba(0, 201, 81, 0.20),
    0 6px 12px 1px rgba(255, 255, 255, 0.20) inset,
    0 2px 6px 1px rgba(255, 255, 255, 0.50) inset;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--submit:hover {
  background: rgba(0, 201, 81, 0.14);
  border: 1px solid rgba(0, 201, 81, 0.30);
  color: var(--green-btn3d);
  box-shadow: none;
}


.icon { flex-shrink: 0; }
.icon--13 { width: 13px; height: 13px; }
.icon--14 { width: 14px; height: 14px; }
.icon--16 { width: 16px; height: 16px; }
.icon--18 { width: 18px; height: 18px; }
.icon--20 { width: 20px; height: 20px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}
.pill--light {
  color: var(--green-deep);
  border: 1px solid rgba(21, 128, 61, 0.25);
  background: rgba(21, 128, 61, 0.10);
  box-shadow: inset 0 0 12px 0 rgba(21, 128, 61, 0.08), 0 0 8px 0 rgba(21, 128, 61, 0.04);
}
.pill--dark {
  color: var(--green-accent);
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.12);
  box-shadow: inset 0 0 12px 0 rgba(34, 197, 94, 0.08), 0 0 8px 0 rgba(34, 197, 94, 0.04);
}

.band { position: relative; }

.rails {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 40;
  margin: 0 auto;
  max-width: 1280px;
  display: none;
}
.rails::before,
.rails::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; }
.rails::before { left: 0; }
.rails::after  { right: 0; }
.rails--light::before, .rails--light::after { background: rgba(0, 0, 0, 0.1); }
.rails--dark::before,  .rails--dark::after  { background: rgba(255, 255, 255, 0.1); }
@media (min-width: 1024px) { .rails { display: block; } }


.nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 680px;
  padding: 0 16px;
  z-index: 50;
}
.nav.is-menuopen { z-index: 60; }

.nav__glass {
  border-radius: 9999px;
  padding: 6px 6px 6px 4px;
  background: hsl(0 0% 100% / 0.84);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid hsl(0 0% 100%);
  box-shadow:
    inset 0 1px 0 0 hsl(0 0% 100% / 0.6),
    inset 0 -1px 0 0 hsl(0 0% 0% / 0.05),
    0 8px 32px -8px hsl(0 0% 0% / 0.15);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 4px; }

.nav__brand { padding-left: 16px; flex-shrink: 0; line-height: 1; text-decoration: none; }

.brand__title {
  display: block;
  font-family: 'Geometos Neue', 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: hsl(0 0% 6%);
  text-shadow: 0 0 18px hsl(var(--primary) / 0.12);
}
.brand__row { margin-top: 4px; display: flex; align-items: center; gap: 8px; }
.brand__line {
  height: 1px;
  width: 24px;
  background: linear-gradient(90deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
  box-shadow: 0 0 10px hsl(var(--primary) / 0.18);
}
.brand__sub {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: hsl(0 0% 35%);
}

.nav__links { display: none; }

.nav__link {
  font-size: 12px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  border-radius: 9999px;
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s;
}
.nav__link:hover { color: #000; background: rgba(0, 0, 0, 0.06); }

.nav__right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.nav__cta { display: none; }

.social-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.15s, background-color 0.15s;
}
.social-x:hover { opacity: 1; background: rgba(0, 0, 0, 0.06); }
.social-x img { display: block; width: 15px; height: 15px; }

.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.7);
  padding: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
}
.nav__burger-close { display: none; }
.nav.is-menuopen .nav__burger-open  { display: none; }
.nav.is-menuopen .nav__burger-close { display: block; }

@media (min-width: 768px) {
  .nav__links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
  .nav__cta {
    display: inline-flex;
    height: 32px;
    padding: 0 16px;
    font-size: 11px;
    font-weight: 500;
  }
  .nav__burger { display: none; }
}


.navmenu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.navmenu.is-open { opacity: 1; pointer-events: auto; }

.navmenu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  color: hsl(var(--foreground) / 0.7);
  border: 0;
  cursor: pointer;
  transition: color 0.15s;
}
.navmenu__close:hover { color: hsl(var(--foreground)); }

.navmenu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  transform: translateY(-24px);
  transition: transform 0.3s ease-out;
}
.navmenu.is-open .navmenu__list { transform: translateY(0); }

.navmenu__link {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  padding: 16px 32px;
  border-radius: 20px;
  width: 260px;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s;
}
.navmenu__link:hover { color: hsl(var(--foreground)); background: rgba(255, 255, 255, 0.04); }

.navmenu__ctawrap { margin-top: 24px; }
.navmenu__cta { height: 48px; padding: 0 32px; font-size: 14px; font-weight: 500; }

@media (min-width: 768px) { .navmenu { display: none; } }


.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--hero-gradient-soft);
  padding-top: 90px;
  padding-bottom: 0;
}

.hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}

.hero__title {
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #000;
  font-size: 28px;
  line-height: 120%;
  margin-bottom: 12px;
}

.hero__desc {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 20px;
}

.hero__actions { display: flex; flex-direction: row; gap: 12px; }
.hero__learn { order: 1; }
.hero__join  { order: 2; }

.hero__media {
  position: relative;
  z-index: 0;
  width: 100%;
  margin-top: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

@media (min-width: 640px) {
  .hero__title { font-size: 48px; line-height: 100%; }
  .hero__desc  { font-size: 22px; }
  .hero__learn { order: 2; }
  .hero__join  { order: 1; }
  .hero__media { margin-top: -60px; }
}
@media (min-width: 1024px) {
  .hero__media { margin-top: -120px; }
}


.about {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
  align-items: center;
}

.about__media {
  width: 100%;
  max-width: 480px;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }

.about__body { flex: 1; min-width: 0; }

.about__text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.625;
  margin-bottom: 24px;
  white-space: pre-line;
}

@media (min-width: 640px) {
  .about { gap: 60px; }
  .about__media { height: 280px; }
  .about__text { font-size: 16px; line-height: 24px; margin-bottom: 32px; }
}
@media (min-width: 768px) {
  .about { gap: 40px; }
  .about__media { height: 240px; align-self: flex-start; }
}
@media (min-width: 1024px) {
  .about { flex-direction: row; gap: 60px; align-items: stretch; }
  .about__media { height: auto; align-self: stretch; }
}


.why__head { text-align: center; margin-bottom: 32px; }

.why__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.wcard {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wcard--problem { background: linear-gradient(180deg, rgba(59, 59, 59, 0.80) 0%, #000 100%); }
.wcard--solution {
  background: linear-gradient(180deg, hsl(var(--why-solution-surface)) 0%, hsl(0 0% 100% / 0.9) 100%);
  border: 1px solid hsl(var(--why-solution-border));
}

.wcard__line { margin: 0 16px; height: 2px; border-radius: 9999px; }
.wcard__line--white {
  background: #fff;
  box-shadow:
    0 10px 20px 0 rgba(255, 255, 255, 0.80),
    0 6px 6px 0 rgba(255, 255, 255, 0.20),
    0 2px 2px 0 rgba(255, 255, 255, 0.30);
}
.wcard__line--green {
  background: hsl(var(--primary));
  box-shadow:
    0 10px 20px 0 hsl(var(--primary) / 0.28),
    0 6px 6px 0 hsl(var(--primary) / 0.18),
    0 2px 2px 0 hsl(var(--primary) / 0.14);
}

.wcard__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }

.wcard__title { font-size: 18px; line-height: 28px; font-weight: 700; margin-bottom: 10px; }
.wcard__title--onDark { color: hsl(var(--foreground)); }
.wcard__title--green  { color: hsl(var(--why-solution-heading)); }

.wcard__desc { font-size: 14px; line-height: 1.625; margin-bottom: 16px; }
.wcard__desc--onDark  { color: hsl(var(--muted-foreground) / 0.7); }
.wcard__desc--onLight { color: hsl(var(--why-solution-copy)); }

.wlist { display: flex; flex-direction: column; flex: 1; }
.wlist__row { display: flex; align-items: center; gap: 12px; padding: 5px 0; }
.wlist__icon {
  flex-shrink: 0;
  height: 24px;
  width: 24px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wlist__icon--bad  { background: hsl(var(--destructive) / 0.15); color: hsl(var(--destructive)); }
.wlist__icon--good { background: hsl(var(--primary) / 0.15);     color: hsl(var(--why-solution-heading)); }

.wlist__text { font-size: 14px; }
.wlist__text--onDark  { color: hsl(var(--muted-foreground) / 0.7); }
.wlist__text--onLight { color: hsl(var(--why-solution-copy)); }

.wlist__div { display: none; height: 1px; }
.wlist__div--onDark  { background: rgba(255, 255, 255, 0.05); }
.wlist__div--onLight { background: hsl(var(--why-solution-border)); }

@media (min-width: 640px) {
  .why__head { margin-bottom: 64px; }
  .why__grid { gap: 24px; }
  .wcard__title { font-size: 20px; }
  .wlist__text { line-height: 20px; }
}
@media (min-width: 768px) {
  .why__head { margin-bottom: 40px; }
  .why__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .wcard__line { margin-left: 34px; margin-right: 34px; }
  .wcard__body { padding: 34px; }
  .wcard__desc { margin-bottom: 24px; }
  .wlist__row { padding: 10px 0; }
  .wlist__div { display: block; }
}
@media (min-width: 1024px) {
  .why__head { margin-bottom: 64px; }
  .why__grid { gap: 24px; }
  .wcard { border-radius: 36px; }
}


.eco { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }

.eco__body { display: flex; flex-direction: column; align-items: flex-start; order: 1; }

.h2--eco { line-height: 1.1; margin-bottom: 16px; }

.eco__desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  margin-bottom: 24px;
}

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

.ecocard {
  border-radius: 16px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.ecocard__top {
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ecocard__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(34, 197, 94, 0.22)) drop-shadow(0 14px 27px rgba(34, 197, 94, 0.16));
}
.ecocard__tag { font-size: 11px; color: rgba(0, 0, 0, 0.3); font-weight: 500; }

.ecocard__text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.35;
  position: relative;
  z-index: 10;
  font-weight: 500;
  min-height: 2.7em;
}

@media (min-width: 640px) {
  .eco { gap: 64px; }
  .h2--eco { margin-bottom: 24px; }
  .eco__desc { font-size: 16px; line-height: 24px; margin-bottom: 32px; }
  .eco__cards { gap: 16px; }
  .ecocard { border-radius: 20px; padding: 20px; }
  .ecocard__top { margin-bottom: 16px; }
  .ecocard__icon { width: 56px; height: 56px; }
  .ecocard__tag { font-size: 12px; line-height: 16px; }
  .ecocard__text { line-height: 20px; }
}
@media (min-width: 768px) {
  .eco { gap: 40px; }
  .eco__cards { gap: 12px; }
}
@media (min-width: 1024px) {
  .eco { grid-template-columns: 1fr 1fr; gap: 64px; }
  .h2--eco { font-size: 38px; }
  .eco__cards { gap: 16px; }
  .ecocard__text { max-width: 200px; }
}


@media (min-width: 640px) { .vision { overflow: hidden; } }

.vision__head { margin-bottom: 32px; }
.vision__title { max-width: 600px; }
.vision__desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 600px;
  white-space: pre-line;
}

.vision__cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.vision__cards::-webkit-scrollbar { display: none; }

.pillar {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  min-width: 320px;
  scroll-snap-align: start;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.02) 100%);
}
.pillar__line {
  height: 2px;
  margin: 0 24px;
  border-radius: 9999px;
  opacity: 0.6;
  transition: opacity 0.3s;
  background: var(--green-accent);
  box-shadow: 0 4px 12px 0 rgba(34, 197, 94, 0.40), 0 2px 4px 0 rgba(34, 197, 94, 0.20);
}
.pillar:hover .pillar__line { opacity: 1; }

.pillar__body { padding: 24px; }
.pillar__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pillar__num {
  font-size: 14px;
  line-height: 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.05em;
  color: var(--green-deep);
}
.pillar__title { font-size: 18px; line-height: 28px; font-weight: 700; color: #000; }
.pillar__desc { font-size: 14px; color: rgba(0, 0, 0, 0.6); line-height: 1.6; }

@media (min-width: 640px) {
  .vision__head { margin-bottom: 64px; }
  .vision__desc { font-size: 16px; line-height: 24px; }
  .vision__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    overflow-x: visible;
  }
  .pillar { min-width: 0; }
  .pillar__body { padding: 32px; }
}
@media (min-width: 768px) {
  .vision__head { margin-bottom: 40px; }
  .vision__desc { font-size: 18px; line-height: 28px; }
  .vision__cards { gap: 12px; }
  .pillar__body { padding: 24px; }
}
@media (min-width: 1024px) {
  .vision__head { margin-bottom: 64px; }
  .vision__cards { gap: 20px; }
  .pillar__body { padding: 36px; }
}


.section.rwa { padding: 32px 0; }
@media (min-width: 640px)  { .section.rwa { padding: 70px 0; } }
@media (min-width: 768px)  { .section.rwa { padding: 50px 0; } }
@media (min-width: 1024px) { .section.rwa { padding: 70px 0; } }

.rwa__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.rwa__body { flex: 1; min-width: 0; }
.rwa__title { margin-bottom: 12px; }
.rwa__desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.625;
  margin-bottom: 16px;
  white-space: pre-line;
}
.rwa__media {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}
.rwa__media img { width: 100%; height: auto; }

.rwa__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  row-gap: 10px;
}
.rwarow { display: flex; align-items: center; gap: 16px; }
.rwarow__icon {
  width: 64px;
  height: 64px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 16px;
  box-shadow: 0 4px 6px 0 rgba(34, 197, 94, 0.22), 0 14px 27px 0 rgba(34, 197, 94, 0.16);
}
.rwarow__icon img { width: 100%; height: 100%; object-fit: cover; }
.rwarow__title { font-size: 16px; line-height: 24px; font-weight: 600; color: #000; margin-bottom: 4px; }
.rwarow__desc { font-size: 14px; color: rgba(0, 0, 0, 0.6); line-height: 1.625; }

@media (min-width: 640px) {
  .rwa__top { gap: 60px; margin-bottom: 40px; }
  .rwa__title { margin-bottom: 20px; }
  .rwa__desc { font-size: 16px; line-height: 24px; margin-bottom: 32px; }
  .rwa__grid { grid-template-columns: 1fr 1fr; column-gap: 40px; row-gap: 32px; }
}
@media (min-width: 768px) {
  .rwa__top { gap: 40px; margin-bottom: 32px; }
  .rwa__media { align-self: flex-start; }
  .rwa__grid { column-gap: 24px; row-gap: 20px; }
}
@media (min-width: 1024px) {
  .rwa__top { flex-direction: row; gap: 60px; margin-bottom: 40px; }
  .rwa__media { height: 330px; align-self: center; }
  .rwa__media img { height: 100%; object-fit: cover; }
  .rwa__grid { column-gap: 40px; row-gap: 32px; }
}


.team { overflow: hidden; }

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  min-height: 0;
}
.team__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.team__desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 576px;
  margin-bottom: 24px;
}

.team__nav { display: flex; align-items: center; gap: 16px; }
.team__btn {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.team__btn:hover { color: #000; border-color: rgba(0, 0, 0, 0.3); }
.team__counter {
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  min-width: 48px;
  text-align: center;
}

.team__panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  background: #f0f0f0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.team__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team__shade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.00) 100%);
}
.team__meta { position: absolute; bottom: 0; left: 0; padding: 20px; }
.team__name { font-size: 18px; line-height: 28px; font-weight: 700; color: #fff; }
.team__role { font-size: 14px; line-height: 20px; font-weight: 500; margin-top: 4px; color: rgba(255, 255, 255, 0.8); }

@media (min-width: 640px) {
  .team__grid { gap: 40px; min-height: 480px; }
  .team__desc { font-size: 16px; line-height: 24px; margin-bottom: 40px; }
  .team__panel { height: 480px; }
}
@media (min-width: 768px) {
  .team__grid { gap: 32px; min-height: 380px; }
  .team__desc { font-size: 18px; line-height: 28px; }
  .team__panel {
    height: auto;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 360px;
    justify-self: start;
    order: -1;
  }
}
@media (min-width: 1024px) {
  .team__grid { grid-template-columns: 1fr 1fr; gap: 40px; min-height: 480px; }
  .team__panel {
    order: 0;
    max-width: none;
    justify-self: stretch;
    aspect-ratio: auto;
    height: 100%;
    min-height: 480px;
  }
}


.faq__grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.faq__title { margin-bottom: 12px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }

.acc {
  border-radius: 20px;
  padding: 0 24px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.acc__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.acc__chev { transition: transform 0.2s, color 0.2s; }
.acc.is-open .acc__chev { transform: rotate(180deg); color: var(--green-accent); }

.acc__panel { overflow: hidden; height: 0; transition: height 0.2s ease-out; }
.acc__body {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  padding-top: 0;
  padding-bottom: 20px;
}

@media (min-width: 640px) {
  .faq__grid { gap: 40px; }
  .faq__title { margin-bottom: 20px; }
}
@media (min-width: 1024px) {
  .faq__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .faq__head { grid-column: span 2; }
  .faq__list { grid-column: span 3; }
}


.cta {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--cta-gradient-soft);
}
.cta__inner { position: relative; z-index: 10; text-align: center; }
.cta__desc {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 auto 24px;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
}
.cta__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }

@media (min-width: 640px) {
  .cta { padding: 112px 0; }
  .cta__desc { font-size: 16px; line-height: 24px; margin-bottom: 40px; }
  .cta__actions { flex-direction: row; }
}
@media (min-width: 768px)  { .cta__desc { font-size: 18px; line-height: 28px; } }
@media (min-width: 1024px) { .cta { padding: 144px 0; } .cta__title { font-size: 52px; } }


.footer {
  background: hsl(var(--cta-footer-match));
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer__brand { padding-left: 0; color: #000; }
.footer__copy { font-size: 12px; line-height: 16px; color: rgba(0, 0, 0, 0.7); }
.footer__right { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.social-x--footer { width: 32px; height: 32px; }

@media (min-width: 768px) {
  .footer__inner { flex-direction: row; justify-content: space-between; gap: 0; text-align: left; }
  .footer__right { flex-direction: row; gap: 8px; }
  .social-x--footer { width: 24px; height: 24px; }
}


.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  transition: visibility 0s linear 0.2s;
}
.modal.is-open {
  visibility: visible;
  transition-delay: 0s;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.2s;
}
.modal.is-open .modal__overlay { opacity: 1; }

.modal__panel {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 50;
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 512px;
  padding: 24px;
  background: var(--modal-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transform: translate(-50%, -48%) scale(0.95);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.modal.is-open .modal__panel { transform: translate(-50%, -50%) scale(1); opacity: 1; }

.modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  opacity: 0.7;
  background: none;
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.modal__close:hover { opacity: 1; }

.modal__head { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.modal__title { font-size: 20px; font-weight: 600; line-height: 1; letter-spacing: -0.025em; text-transform: uppercase; }

.modal__form { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.field__label { font-size: 14px; line-height: 20px; color: rgba(0, 0, 0, 0.5); margin-bottom: 4px; display: block; }
.field__input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s;
}
.field__input:focus { outline: none; border-color: rgba(34, 197, 94, 0.6); }

.modal__success { text-align: center; color: rgba(0, 0, 0, 0.7); padding: 32px 0; }

@media (min-width: 640px) {
  .modal__panel { max-width: 420px; border-radius: var(--radius); }
  .modal__head { text-align: left; }
}
