/* ── SHARED ── */
:root {
  --green: #27e094;
  --green-dark: #22c480;
  --green-dim: rgba(0, 229, 176, 0.05);
  --green-glow: rgba(0, 229, 176, 0.06);
  --bg: #0A0F0D;
  --bg-card: #111813;
  --bg-card2: #141a17;
  --border: rgba(255, 255, 255, .07);
  --border-green: rgba(0, 229, 176, 0.07);
  --text-0: #fff;
  --text-1: #E2EDE9;
  --text-2: #9DB3AC;
  --text-3: #5A7068;
  --warn: #F5A623;
  --error: #FF4D6D;
  --info: #58A6FF;
  --font: 'Sora', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 32px;
  --r-full: 9999px;
  --ease: cubic-bezier(.22, 1, .36, 1)
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .12);
  border-radius: 3px
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(10, 15, 13, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border)
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-0);
  text-decoration: none;
  letter-spacing: -.04em
}

.nav-logo-img {
  height: 20px;
}

.nav-logo span {
  color: var(--green)
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--text-0)
}

.nav-links a.active {
  color: var(--green)
}

.nav-cta {
  display: flex;
  gap: .75rem;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s var(--ease);
  white-space: nowrap;
  border-radius: var(--r-md);
  line-height: 1
}

.btn-sm {
  font-size: .8125rem;
  padding: .5rem 1.125rem;
  height: 36px
}

.btn-md {
  font-size: .9375rem;
  padding: .7rem 1.5rem;
  height: 44px
}

.btn-lg {
  font-size: 1rem;
  padding: .875rem 2rem;
  height: 52px
}

.btn-primary {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: #071210;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0, 229, 176, 0.08)
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 229, 176, 0.09)
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border)
}

.btn-ghost:hover {
  color: var(--text-0);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04)
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--border-green)
}

.btn-outline:hover {
  background: var(--green-dim)
}

.section-label {
  font-family: var(--mono);
  font-size: .6875rem;
  color: var(--green);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .75rem
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -.035em;
  line-height: 1.15;
  margin-bottom: 1rem
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 540px
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.anim-1 {
  animation: fadeUp .7s var(--ease) .05s both
}

.anim-2 {
  animation: fadeUp .7s var(--ease) .18s both
}

.anim-3 {
  animation: fadeUp .7s var(--ease) .31s both
}

.anim-4 {
  animation: fadeUp .7s var(--ease) .44s both
}

.anim-5 {
  animation: fadeUp .7s var(--ease) .57s both
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease)
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px)
}

body.reveal-ready .reveal.in {
  opacity: 1;
  transform: translateY(0)
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .mobile-hide {
    display: none
  }
}

/* ── PAGE SPECIFIC ── */
.page-wrap {
  padding-top: 64px
}

/* HERO */
.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(20px, 5vw, 64px) 64px;
  position: relative;
  overflow: hidden
}

.hero-glow {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 229, 176, 0.03) 0%, transparent 65%);
  pointer-events: none
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 229, 176, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 176, 0.01) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%)
}

.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 1
}

.eyebrow {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--green);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0
}

.hero-h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: var(--text-0);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem
}

.hero-h1 .hl {
  color: var(--green)
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 0
}

/* MANIFESTO */
.manifesto {
  padding: 80px clamp(20px, 5vw, 64px);
  background: rgba(0, 229, 176, 0.01);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center
}

.manifesto-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-0);
  line-height: 1.55;
  letter-spacing: -.02em;
  position: relative;
  padding: 2rem 0
}

.manifesto-quote::before,
.manifesto-quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  margin: 0 auto 1.5rem
}

.manifesto-quote::after {
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--green))
}

.manifesto-quote em {
  color: var(--green);
  font-style: normal
}

.manifesto-sub {
  font-size: 1rem;
  color: var(--text-3);
  margin-top: 1.25rem
}

/* ORIGIN */
.section {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 64px)
}

.container {
  max-width: 1200px;
  margin: 0 auto
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.origin-text p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.25rem
}

.origin-text p:last-child {
  margin-bottom: 0
}

.origin-text strong {
  color: var(--text-0);
  font-weight: 600
}

/* timeline visual */
.timeline {
  position: relative;
  padding-left: 2rem
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--green), rgba(0, 229, 176, 0.04))
}

.tl-item {
  position: relative;
  margin-bottom: 2.25rem
}

.tl-item:last-child {
  margin-bottom: 0
}

.tl-dot {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 229, 176, 0.05);
  transform: translateX(-3.5px)
}

.tl-year {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--green);
  letter-spacing: .1em;
  margin-bottom: .35rem
}

.tl-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: .3rem
}

.tl-desc {
  font-size: .875rem;
  color: var(--text-3);
  line-height: 1.6
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.val-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all .28s var(--ease);
  position: relative;
  overflow: hidden
}

.val-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: opacity .3s
}

.val-card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 229, 176, 0.03)
}

.val-card:hover::before {
  opacity: 1
}

.val-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-lg);
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem
}

.val-icon svg {
  color: var(--green)
}

.val-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: .5rem
}

.val-desc {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.7
}

/* TEAM */
.team-intro {
  max-width: 600px;
  margin-bottom: 3rem
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  text-align: center;
  transition: all .28s var(--ease)
}

.member-card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 229, 176, 0.03)
}

.member-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--green);
  border: 1px solid var(--border-green);
  position: relative
}

.member-avatar-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-dim)
}

.member-avatar span {
  position: relative;
  z-index: 1
}

.member-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: .2rem
}

.member-role {
  font-size: .8125rem;
  color: var(--green);
  font-family: var(--mono);
  margin-bottom: .75rem
}

.member-bio {
  font-size: .875rem;
  color: var(--text-3);
  line-height: 1.65
}

/* NUMBERS */
.numbers-section {
  background: rgba(0, 229, 176, 0.01);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden
}

.num-box {
  background: var(--bg);
  padding: 2.5rem 1.5rem;
  text-align: center
}

.num-val {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -.04em;
  line-height: 1
}

.num-val em {
  color: var(--green);
  font-style: normal
}

.num-label {
  font-size: .8125rem;
  color: var(--text-3);
  margin-top: .5rem;
  line-height: 1.4
}

/* PRINCIPLES */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem
}

.principle {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  transition: border-color .25s
}

.principle:hover {
  border-color: var(--border-green)
}

.pr-num {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--green);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px
}

.pr-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: .3rem
}

.pr-desc {
  font-size: .875rem;
  color: var(--text-3);
  line-height: 1.65
}

/* CTA */
.cta-band {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 64px);
  position: relative;
  overflow: hidden
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0, 229, 176, 0.03), transparent 70%);
  pointer-events: none
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1
}

.cta-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: 1.125rem
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 2.25rem
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem
}

.cta-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap
}

.cta-ti {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  color: var(--text-3)
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(20px, 5vw, 64px)
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem
}

.footer-links-list {
  display: flex;
  gap: 1.5rem;
  list-style: none
}

.footer-links-list a {
  font-size: .875rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color .18s
}

.footer-links-list a:hover {
  color: var(--text-1)
}

.footer-copy {
  font-size: .8125rem;
  color: var(--text-3);
  font-family: var(--mono)
}

@media(max-width:900px) {
  .origin-grid {
    grid-template-columns: 1fr
  }

  .values-grid {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: 1fr 1fr
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr
  }

  .principles-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .values-grid {
    grid-template-columns: 1fr
  }

  .team-grid {
    grid-template-columns: 1fr
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr
  }
}