:root {
  /* Primary Colors */
  --yellow: #F6E26F;
  --brown: #473636;
  --green: #354B32;
  --cream: #FAF8F0;
  --mist: #F3F4EE;
  --white: #FFFFFF;
  
  /* Extended Palette - African Futuristic */
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  
  /* Semantic Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* Text & Opacity */
  --muted: rgba(71, 54, 54, 0.72);
  --muted-2: rgba(71, 54, 54, 0.58);
  --muted-3: rgba(71, 54, 54, 0.42);
  --border: rgba(71, 54, 54, 0.08);
  --border-light: rgba(71, 54, 54, 0.04);
  
  /* Shadows - Premium Hierarchy */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 18px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 18px 55px rgba(30, 30, 30, 0.08);
  --shadow-hero: 0 30px 90px rgba(34, 34, 34, 0.12);
  --shadow-glow: 0 0 40px rgba(246, 226, 111, 0.15);
  
  /* Border Radius */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-2xl: 40px;
  --radius-full: 999px;
  
  /* Spacing */
  --container: 1200px;
  --container-md: 900px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--green) 0%, #2F412D 100%);
  --gradient-warm: linear-gradient(135deg, var(--yellow) 0%, #E8D948 100%);
  --gradient-hero: linear-gradient(180deg, #FCFBF6 0%, #F7F6F0 28%, #FFFFFF 58%, #F8F7F1 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #FCFBF6 0%, #F7F6F0 28%, #FFFFFF 58%, #F8F7F1 100%);
  color: var(--brown);
  line-height: 1.6;
}

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

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

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

.section {
  padding: 96px 0;
}

.join-section {
  padding-top: 16px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  background: rgba(246, 226, 111, 0.12);
  border: 1px solid rgba(53, 75, 50, 0.18);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
}

.label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.label:hover {
  background: rgba(246, 226, 111, 0.2);
  border-color: rgba(53, 75, 50, 0.25);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(53, 75, 50, 0.28);
  border: 1px solid transparent;
}

.btn-primary:hover {
  box-shadow: 0 18px 50px rgba(53, 75, 50, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--brown);
  border: 1px solid rgba(71, 54, 54, 0.14);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(71, 54, 54, 0.2);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--brown);
  border: 1px solid transparent;
  box-shadow: 0 8px 25px rgba(246, 226, 111, 0.2);
}

.btn-yellow:hover {
  box-shadow: 0 12px 35px rgba(246, 226, 111, 0.25);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 999;
  padding-top: 12px;
  animation: slide-in-down 0.6s ease;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
}

.nav-shell:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brown);
  box-shadow: 0 4px 12px rgba(246, 226, 111, 0.3);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.brand-mark:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(246, 226, 111, 0.4);
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 3px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(71, 54, 54, 0.8);
}

.nav-links a {
  position: relative;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(71, 54, 54, 0.1);
  background: var(--white);
  cursor: pointer;
  font-size: 20px;
  color: var(--brown);
  transition: all var(--transition-base);
}

.nav-toggle:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 100px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  animation: float-slow 6s ease-in-out infinite;
}

.hero::before {
  width: 400px;
  height: 400px;
  left: -150px;
  top: -80px;
  background: radial-gradient(circle, rgba(246, 226, 111, 0.8) 0%, rgba(246, 226, 111, 0.2) 40%, rgba(246, 226, 111, 0) 70%);
  animation-delay: 0s;
}

.hero::after {
  width: 450px;
  height: 450px;
  right: -150px;
  top: 80px;
  background: radial-gradient(circle, rgba(53, 75, 50, 0.3) 0%, rgba(53, 75, 50, 0.05) 50%, rgba(53, 75, 50, 0) 70%);
  animation-delay: 1s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: clamp(48px, 6.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero-copy h1 .accent {
  color: var(--green);
  position: relative;
}

.hero-copy h1 .accent::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(53, 75, 50, 0.1), rgba(246, 226, 111, 0.1));
  border-radius: 8px;
  z-index: -1;
}

.hero-copy p {
  margin: 24px 0 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: slide-in-left 0.8s ease 0.2s both;
}

.tag-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: slide-in-left 0.8s ease 0.4s both;
}

.tag {
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(53, 75, 50, 0.15);
  background: rgba(255, 255, 255, 0.85);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
}

.tag:hover {
  background: rgba(53, 75, 50, 0.08);
  border-color: rgba(53, 75, 50, 0.25);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  animation: slide-in-right 0.8s ease;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(53, 75, 50, 0.1);
  padding: 20px;
  background: linear-gradient(160deg, rgba(246, 226, 111, 0.4) 0%, rgba(255, 255, 255, 0.85) 30%, rgba(234, 232, 215, 0.5) 50%, rgba(53, 75, 50, 0.08) 100%);
  box-shadow: 0 35px 100px rgba(34, 34, 34, 0.14);
  backdrop-filter: blur(8px);
  animation: scale-in 0.8s ease 0.2s both;
}

.mockup {
  position: relative;
  height: 640px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.mockup-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #4E693F 0%, #587A45 18%, #6A8E4E 30%, #96A34F 31%, #B78B1E 46%, #D09E24 52%, #E3C14A 60%, #F5E6A3 100%);
  clip-path: polygon(0 0, 100% 0, 100% 58%, 67% 58%, 58% 70%, 55% 100%, 0 100%);
}

.mockup-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 22%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.1) 16%, transparent 18%), radial-gradient(circle at 34% 18%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.08) 12%, transparent 14%), linear-gradient(180deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 24%);
  opacity: 0.95;
}

.hero-shape {
  position: absolute;
  border-radius: 46%;
}

.shape-a { left: -5%; top: 18%; width: 52%; height: 34%; background: rgba(38,78,55,0.95); }
.shape-b { right: -8%; top: 10%; width: 50%; height: 42%; background: rgba(42,90,59,0.96); }
.shape-c { left: 18%; top: 19%; width: 34%; height: 28%; background: rgba(107,148,66,0.92); }
.shape-d { right: 8%; top: 21%; width: 32%; height: 31%; background: rgba(97,139,65,0.92); }

.mockup-topbar {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-size: 13px;
  font-weight: 700;
}

.pill.green,
.green-text {
  color: var(--green);
}

.mockup-message {
  position: absolute;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 50px));
  text-align: center;
  color: #fff;
}

.mockup-message h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mockup-message p {
  margin: 14px auto 0;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.dashboard {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 88%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 80px rgba(40, 40, 40, 0.18);
  backdrop-filter: blur(16px);
  padding: 20px;
  animation: scale-in 0.8s ease 0.4s both;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.panel {
  border-radius: 24px;
  padding: 16px;
}

.panel-light {
  background: var(--cream);
}

.panel-soft {
  background: rgba(53, 75, 50, 0.06);
}

.panel-accent {
  background: rgba(246, 226, 111, 0.30);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.eyebrow {
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 600;
}

.panel h3 {
  margin: 6px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.panel-big-title {
  font-size: 28px !important;
  margin-top: 10px !important;
}

.white-chip {
  margin-top: 14px;
  display: inline-block;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  font-weight: 700;
  font-size: 13px;
}

.stat-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card,
.task-card,
.avatar-card {
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.mt-12 {
  margin-top: 12px;
}

.side-stack {
  display: grid;
  gap: 12px;
}

.stat-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.stat-value {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.badge-chip {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(246, 226, 111, 0.55);
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
}

.task-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(53, 75, 50, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.avatar-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.avatar-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(246, 226, 111, 0.45);
  color: var(--brown);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.avatar-name {
  font-size: 14px;
  font-weight: 700;
}

.avatar-role {
  font-size: 12px;
  color: var(--muted-2);
}

.brand-strip {
  padding: 24px 0 0;
}

.brand-strip-card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 32px 28px;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(71, 54, 54, 0.52);
  backdrop-filter: blur(12px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  animation: fade-in 0.8s ease;
}

.section-heading h2 {
  margin: 24px 0 0;
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brown) 0%, var(--green) 50%, var(--brown) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading p {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.card-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card,
.step-card,
.story-card,
.metric-card,
.cta-box {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.feature-card:hover,
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(34, 34, 34, 0.12);
  border-color: rgba(53, 75, 50, 0.1);
}

.feature-card {
  padding: 32px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-icon.yellow {
  background: rgba(246, 226, 111, 0.25);
  box-shadow: 0 8px 20px rgba(246, 226, 111, 0.15);
}

.feature-icon.yellow:hover {
  transform: scale(1.08);
}

.feature-icon.green {
  background: rgba(53, 75, 50, 0.12);
  color: var(--green);
  box-shadow: 0 8px 20px rgba(53, 75, 50, 0.1);
}

.feature-icon.green:hover {
  transform: scale(1.08);
}

.feature-card h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.feature-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-tags span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--mist);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.feature-tags span:hover {
  background: rgba(53, 75, 50, 0.1);
}

.trust-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 38px;
  padding: 40px;
  background: linear-gradient(145deg, #FFFBE3 0%, #F5F6EF 58%, #FFFFFF 100%);
}

.trust-copy h2,
.stories-copy h2 {
  margin: 20px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.trust-copy p,
.stories-copy p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
}

.trust-note {
  margin-top: 28px;
  border-radius: 28px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.trust-note h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.step-list {
  display: grid;
  gap: 18px;
}

.step-card {
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-number.green {
  background: rgba(53, 75, 50, 0.10);
  color: var(--green);
}

.step-number.yellow {
  background: rgba(246, 226, 111, 0.38);
  color: var(--brown);
}

.step-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.stories-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.metric-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-card {
  padding: 20px;
}

.metric-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.04em;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.story-list {
  display: grid;
  gap: 18px;
}

.story-card {
  padding: 26px;
}

.story-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.story-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
}

.story-avatar.yellow {
  background: rgba(246, 226, 111, 0.34);
}

.story-avatar.green {
  background: rgba(53, 75, 50, 0.10);
  color: var(--green);
}

.story-name {
  font-size: 18px;
  font-weight: 700;
}

.story-role {
  font-size: 14px;
  color: var(--muted-2);
  margin-top: 3px;
}

.verified {
  padding: 10px 12px;
  border-radius: 999px;
  background: #FFF7C7;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.story-quote {
  margin: 18px 0 0;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(71, 54, 54, 0.82);
}

.story-stat {
  margin-top: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.cta-shell {
  overflow: hidden;
  border-radius: 40px;
  padding: 48px;
  background: linear-gradient(135deg, #354B32 0%, #2F412D 48%, #473636 100%);
  box-shadow: 0 35px 90px rgba(30, 30, 30, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.cta-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(246, 226, 111, 0.08), transparent 50%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-shell .label {
  background: rgba(255, 255, 255, 0.12);
  color: var(--yellow);
  border-color: rgba(255, 255, 255, 0.15);
}

.cta-shell .label::before {
  background: var(--yellow);
}

.cta-shell h2 {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 760px;
  font-weight: 800;
}

.cta-shell p {
  margin: 18px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.cta-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cta-box {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: var(--white);
  box-shadow: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.cta-box:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-box h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.cta-box p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glassmorphism Component */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(246, 226, 111, 0.3); }
  50% { box-shadow: 0 0 40px rgba(246, 226, 111, 0.5); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating Animation */
.float {
  animation: float 3s ease-in-out infinite;
}

.float-slow {
  animation: float 4s ease-in-out infinite;
}

/* Glow Animation */
.glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Premium Button Styles */
.btn:active {
  transform: translateY(1px);
}

.btn-primary:hover {
  box-shadow: 0 18px 50px rgba(53, 75, 50, 0.36);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(71, 54, 54, 0.2);
}

.btn-yellow:hover {
  box-shadow: 0 12px 35px rgba(246, 226, 111, 0.25);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 13px;
}

/* Badge & Label Enhancements */
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  background: rgba(246, 226, 111, 0.15);
  color: var(--brown);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

/* Card Hover Effects */
.card-hover {
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(71, 54, 54, 0.12);
}

/* Text Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--green), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--muted); }
.text-muted-2 { color: var(--muted-2); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-error { color: var(--error); }

/* Typography Scale */
.text-xs { font-size: 12px; line-height: 1.5; }
.text-sm { font-size: 14px; line-height: 1.6; }
.text-base { font-size: 16px; line-height: 1.6; }
.text-lg { font-size: 18px; line-height: 1.7; }
.text-xl { font-size: 20px; line-height: 1.8; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Layout Utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--spacing-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-lg); }

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-4 { margin-top: var(--spacing-md); }
.mt-6 { margin-top: var(--spacing-lg); }
.mt-8 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-4 { margin-bottom: var(--spacing-md); }
.mb-6 { margin-bottom: var(--spacing-lg); }
.mb-8 { margin-bottom: var(--spacing-xl); }

.gap-2 { gap: var(--spacing-sm); }
.gap-4 { gap: var(--spacing-md); }
.gap-6 { gap: var(--spacing-lg); }

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: var(--spacing-lg) 0;
}

/* Scroll Behavior */
.scroll-smooth { scroll-behavior: smooth; }

@media (max-width: 1100px) {
  .hero-grid,
  .trust-shell,
  .stories-grid,
  .cta-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .cta-box-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mockup {
    height: 700px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .site-header {
    top: 10px;
  }

  .nav-links,
  .nav-actions .btn-secondary,
  .nav-actions .btn-text {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-shell {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav-shell.open .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 4px 4px;
  }

  .nav-shell.open .nav-actions {
    width: 100%;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }


  .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .mockup {
    height: 760px;
  }

  .dashboard {
    width: calc(100% - 24px);
    bottom: 12px;
  }

  .stat-grid,
  .metric-grid,
  .cta-box-grid {
    grid-template-columns: 1fr;
  }

  .story-top {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .mockup {
    height: 820px;
  }

  .mockup-message {
    top: 15%;
  }

  .mockup-message p {
    max-width: 290px;
  }

  .dashboard {
    padding: 14px;
  }

  .feature-card,
  .story-card,
  .step-card,
  .trust-note,
  .cta-shell {
    border-radius: 24px;
  }

  .trust-shell,
  .cta-shell {
    padding: 24px;
  }
}
.logo-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  width: 60px;
  height: auto;
  display: block;
  object-fit: contain;
}
.logo-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  width: 40px;
  height: auto;
  display: block;
  object-fit: contain;
}
/* Hero video container */
.hero-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 20px;
  background: linear-gradient(
    160deg,
    rgba(246, 226, 111, 0.4) 0%,
    rgba(255, 255, 255, 0.85) 30%,
    rgba(234, 232, 215, 0.5) 50%,
    rgba(53, 75, 50, 0.08) 100%
  );
  box-shadow: 0 35px 100px rgba(34, 34, 34, 0.14);
  border: 1px solid rgba(53, 75, 50, 0.1);
}

.hero-video {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}
/* ===== Fix hero video + dashboard overlay ===== */

.hero-visual {
  position: relative;
  overflow: visible;
}

.hero-video-card {
  position: relative;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

/* Smaller dashboard card shifted to the right */
.hero-visual .dashboard {
  position: absolute;
  z-index: 5;

  width: 300px;
  max-width: 300px;

  left: auto;
  right: -161px;
  top: 50%;
  bottom: auto;

  transform: translateY(-50%);

  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(40, 40, 40, 0.16);
}

/* Make dashboard content compact */
.hero-visual .dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Hide the second column so the card becomes smaller */
.hero-visual .side-stack {
  display: none;
}

.hero-visual .panel {
  padding: 14px;
  border-radius: 20px;
}

.hero-visual .panel h3 {
  font-size: 17px;
  line-height: 1.25;
}

.hero-visual .badge-chip {
  font-size: 11px;
  padding: 7px 9px;
  border-radius: 14px;
  white-space: nowrap;
}

.hero-visual .stat-grid {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.hero-visual .stat-card,
.hero-visual .task-card {
  padding: 10px;
  border-radius: 14px;
}

.hero-visual .stat-title {
  font-size: 11px;
  margin-bottom: 4px;
}

.hero-visual .stat-value {
  font-size: 21px;
}

.hero-visual .task-list {
  gap: 7px;
  margin-top: 10px;
}

.hero-visual .task-item {
  font-size: 12px;
  padding: 7px 8px;
  border-radius: 12px;
}

.hero-visual .check {
  width: 15px;
  height: 15px;
  font-size: 10px;
}
@media (max-width: 820px) {
  .hero-visual .dashboard {
    width: calc(100% - 32px);
    max-width: none;

    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;

    transform: none;
  }
}
/* Footer layout */
.footer {
  padding: 56px 0 24px;
  background: var(--green);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1.2fr;
  gap: 32px;
  align-items: flex-start;
}

/* Make footer links horizontal */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-col li {
  margin: 0;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-col h5 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand h4 {
  margin: 0;
  font-size: 20px;
}

.footer-brand p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

/* Bottom footer */
.footer-bottom {
  margin-top: 30px;
  padding-top: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: left;
  gap: 7px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 1;
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal {
  display: flex;
  gap: 4px
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--yellow);
}

/* Mobile */
@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col ul {
    flex-direction: column;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.co-founders-section{
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 80px;
}

.section-header h2{
    font-size:clamp(42px,5vw,60px);
    margin:20px 0;
}

.section-header p{
    color:var(--muted);
    line-height:1.7;
}

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

.founder-card{
    transition:all .6s ease;
}

.founder-image{
    overflow:hidden;
    border-radius:32px;
    aspect-ratio:1/1;
}

.founder-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.founder-card:hover img{
    transform:scale(1.05);
}

.founder-info{
    padding-top:10px;
}

.founder-info h3{
    margin-bottom:0.1px;
    font-size:24px;
}

.founder-info p{
    color:var(--muted);
}

/* staggered layout */

.founder-left{
    margin-top:40px;
}

.founder-center{
    margin-top:0;
    transform:scale(1.05);
}

.founder-center.active{
    transform:scale(1.05);
}
.founder-right{
    margin-top:40px;
}

/* mobile */

@media(max-width:900px){

    .founders-grid{
        grid-template-columns:1fr;
    }

    .founder-left,
    .founder-center,
    .founder-right{
        margin-top:0;
    }
}

.founder-card{
    opacity:0;
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,1,.36,1);
}

.founder-left{
    transform:translateX(-120px);
}

.founder-center{
    transform:translateY(100px);
}

.founder-right{
    transform:translateX(120px);
}

.founder-card.active{
    opacity:1;
    transform:translate(0,0);
}
