/* ============================================
   LOCUS — Unified Design System
   Single font family · billion-dollar tech feel
   ============================================ */

:root {
  --cream: #FAF4DC;
  --cream-deep: #F2E9C7;
  --cream-warm: #F7EFD2;
  --sage: #A8C68F;
  --sage-bright: #8FB57A;
  --sage-dark: #3D5A2E;
  --sage-mid: #5C7E48;
  --ink: #14180E;
  --ink-soft: #2D3324;
  --muted: #6B7560;
  --line: rgba(61, 90, 46, 0.15);
  --line-strong: rgba(61, 90, 46, 0.3);

  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'ss02', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.45 0 0 0 0 0.3 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

em { font-style: italic; }

.accent { color: var(--sage-dark); }
.accent-italic { color: var(--sage-dark); font-style: italic; }
.green { color: var(--sage-dark); }

/* ============================================
   NAVIGATION — bolder, bigger logo
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(250, 244, 220, 0.78);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease;
}

.nav.scrolled {
  padding: 0.85rem 3rem;
  background: rgba(250, 244, 220, 0.92);
}

.nav-logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  position: relative;
  line-height: 1;
}

.logo-mark {
  position: relative;
  display: inline-block;
  color: var(--ink);
}

.logo-mark::before {
  content: 'Locus';
  position: absolute;
  top: 3px;
  left: 3px;
  color: var(--sage);
  z-index: -1;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sage-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.6rem 1.1rem 0.6rem 1.25rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.nav-cta svg {
  transition: transform 0.3s ease;
}

.nav-cta:hover svg {
  transform: translateX(2px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 7rem 3rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 4rem;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.75rem;
  padding: 0.4rem 0.8rem;
  background: var(--cream-deep);
  border-radius: 100px;
  border: 1px solid var(--line);
  animation: fadeUp 0.8s ease 0.1s both;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--sage-dark);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) var(--d) forwards;
}

.hero-title .word.accent {
  color: var(--sage-dark);
}

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

.hero-sub {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.55;
  font-weight: 400;
  animation: fadeUp 0.8s ease 0.85s both;
}

.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 1s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(61, 90, 46, 0.4);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--cream-deep);
  border-color: var(--sage-dark);
}

.btn-primary-inverse {
  background: var(--cream);
  color: var(--ink);
}

.btn-primary-inverse:hover {
  background: var(--sage);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-primary-inverse svg {
  transition: transform 0.3s ease;
}

.btn-primary-inverse:hover svg {
  transform: translateX(3px);
}

.btn-ghost-inverse {
  border-color: rgba(168, 198, 143, 0.3);
  color: var(--cream);
}

.btn-ghost-inverse:hover {
  background: rgba(168, 198, 143, 0.1);
  border-color: var(--sage);
}

/* Hero visual */
.hero-right {
  position: relative;
  animation: fadeIn 1.2s ease 0.5s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-visual {
  position: relative;
  background: var(--sage);
  border-radius: 6px;
  padding: 2rem 1rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 24px 60px -24px rgba(61, 90, 46, 0.45);
  border: 1px solid var(--sage-dark);
}

.helix-svg {
  width: 100%;
  height: 100%;
  max-height: 500px;
}

.strand {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawStrand 3s ease forwards;
}

.strand-b {
  animation-delay: 0.4s;
}

@keyframes drawStrand {
  to { stroke-dashoffset: 0; }
}

.rungs line {
  stroke: var(--sage-dark);
  stroke-width: 1.5;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: 0;
  animation: rungDraw 0.6s ease forwards;
  animation-delay: calc(2.2s + var(--r) * 0.08s);
}

@keyframes rungDraw {
  to {
    stroke-dashoffset: 0;
    opacity: 0.55;
  }
}

.node {
  opacity: 0;
  animation: nodePop 0.5s cubic-bezier(0.2, 1.5, 0.4, 1) forwards;
}

.n1 { animation-delay: 3s; }
.n2 { animation-delay: 3.15s; }
.n3 { animation-delay: 3.3s; }
.n4 { animation-delay: 3.45s; }
.n5 { animation-delay: 3.6s; }
.n6 { animation-delay: 3.75s; }

@keyframes nodePop {
  0% { opacity: 0; transform: scale(0); transform-origin: center; }
  100% { opacity: 1; transform: scale(1); }
}

.annotations {
  opacity: 0;
  animation: fadeIn 0.8s ease 4s forwards;
}

.visual-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 500;
}

.caption-line {
  font-weight: 600;
  border-bottom: 1px solid var(--sage-dark);
  padding-bottom: 0.2rem;
  display: inline-block;
  width: fit-content;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease 2s both;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--sage-dark), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
  background: var(--ink);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { top: -16px; }
  100% { top: 32px; }
}

/* ============================================
   SECTIONS (tightened)
   ============================================ */
.section {
  padding: 5.5rem 3rem;
  max-width: 1380px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.section-num {
  font-weight: 600;
}

.section-label::before {
  content: '— ';
  color: var(--muted);
}

/* MISSION */
.section-mission { padding-top: 4rem; padding-bottom: 5rem; }

.mission-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.big-statement {
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.big-statement em {
  font-style: italic;
  color: var(--sage-dark);
  font-weight: 500;
}

.highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight::before {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: -0.1em;
  right: -0.1em;
  height: 0.42em;
  background: var(--sage);
  z-index: -1;
  transform: skew(-2deg);
}

.mission-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  padding-top: 0.75rem;
}

/* ============================================
   APPROACH — rebuilt for visual punch
   ============================================ */
.section-approach { padding-top: 4rem; padding-bottom: 5.5rem; }

.approach-headline {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 3rem;
  max-width: 28ch;
}

.approach-headline .accent-italic {
  font-style: italic;
  font-weight: 500;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  border-top: 1px solid var(--line);
}

.pillar {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pillar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(to right, rgba(168, 198, 143, 0.12), transparent);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.pillar:hover::before {
  width: 100%;
}

.pillar-marker {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--sage-dark);
}

.marker-num {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  position: relative;
  padding-left: 1.25rem;
}

.marker-num::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.75rem;
  height: 1px;
  background: var(--sage-dark);
}

.marker-icon {
  width: 56px;
  height: 56px;
  color: var(--sage-dark);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pillar:hover .marker-icon {
  transform: rotate(-4deg) scale(1.05);
}

.pillar-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-content h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.pillar-content p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
}

.pillar-content em {
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 500;
}

.pillar-content strong {
  color: var(--ink);
  font-weight: 600;
}

.pillar-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line-strong);
  max-width: 24rem;
}

.pillar-stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sage-dark);
  line-height: 1;
}

.pillar-stat-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================
   TRACTION
   ============================================ */
.section-traction {
  background: var(--ink);
  color: var(--cream);
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(3rem, calc(50vw - 690px));
  padding-right: max(3rem, calc(50vw - 690px));
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-traction .section-head {
  color: var(--sage);
  border-color: rgba(168, 198, 143, 0.2);
}

.section-traction .section-label::before {
  color: rgba(168, 198, 143, 0.5);
}

.traction-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 3rem;
  max-width: 24ch;
}

.traction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(168, 198, 143, 0.2);
  padding-top: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.stat-num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--sage);
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.stat-suffix {
  font-size: 0.5em;
  margin-left: 0.1em;
  color: var(--cream);
  opacity: 0.7;
  font-weight: 600;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(250, 244, 220, 0.7);
  line-height: 1.5;
  max-width: 18rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(168, 198, 143, 0.18);
}

/* ============================================
   TRY MVP
   ============================================ */
.section-try {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.try-head {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.try-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.try-sub {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.iframe-wrapper {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--line),
    0 30px 80px -30px rgba(61, 90, 46, 0.3),
    0 15px 40px -15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.25rem;
}

.iframe-chrome {
  background: var(--cream-deep);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.chrome-dots {
  display: flex;
  gap: 0.4rem;
}

.chrome-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line);
}

.chrome-dots span:nth-child(1) { background: #E8A89B; }
.chrome-dots span:nth-child(2) { background: #E8C893; }
.chrome-dots span:nth-child(3) { background: var(--sage); }

.chrome-url {
  flex: 1;
  background: var(--cream);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 24rem;
  margin: 0 auto;
  font-weight: 500;
}

.chrome-open {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
  font-weight: 500;
}

.chrome-open:hover {
  color: var(--ink);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 70vh;
  min-height: 600px;
  border: none;
  display: block;
}

.try-fallback {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--mono);
}

.try-fallback a {
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-dark);
  transition: color 0.2s;
}

.try-fallback a:hover {
  color: var(--ink);
}

/* ============================================
   TEAM — rebuilt to match the slide aesthetic
   ============================================ */
.section-team {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.team-headline {
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.team-headline em {
  font-style: italic;
  color: var(--sage-dark);
  font-weight: 500;
}

.team-divider {
  height: 3px;
  background: linear-gradient(to right, var(--sage-dark) 0%, var(--sage-dark) 30%, var(--sage) 60%, transparent 100%);
  margin-bottom: 3rem;
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.founder {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founder-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 3px solid var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px var(--sage);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.founder:hover .founder-avatar {
  transform: scale(1.04);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-initial {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: -0.05em;
}

.founder-id h3 {
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
  color: var(--ink);
  line-height: 1;
}

.founder-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.founder-school {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 400;
}

.founder-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.founder-creds li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.cred-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  border: 1.5px solid var(--sage-dark);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.founder-creds strong {
  color: var(--ink);
  font-weight: 600;
}

.founder-creds .green {
  color: var(--sage-dark);
  font-weight: 600;
}

.founder-creds .lightgreen {
  color: var(--sage);
  font-weight: 600;
}

/* Team footer stat */
.team-footer {
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
  text-align: center;
}

.team-stat {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--sage-dark);
  line-height: 1;
}

.team-stat-num .plus {
  color: var(--sage);
}

.team-stat-label {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4.5rem 3rem 2rem;
}

.footer-cta {
  max-width: 1380px;
  margin: 0 auto 4rem;
  text-align: center;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(168, 198, 143, 0.18);
}

.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.footer-cta-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(168, 198, 143, 0.18);
}

.footer-brand {
  max-width: 22rem;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-bottom: 0.75rem;
  color: var(--sage);
  position: relative;
  display: inline-block;
  line-height: 1;
}

.footer-logo::after {
  content: 'Locus';
  position: absolute;
  top: 3px;
  left: 3px;
  color: var(--sage-dark);
  z-index: -1;
}

.footer-brand p {
  color: rgba(250, 244, 220, 0.6);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 244, 220, 0.7);
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1380px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(250, 244, 220, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-tagline {
  color: var(--sage);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.pillars .reveal:nth-child(1) { transition-delay: 0s; }
.pillars .reveal:nth-child(2) { transition-delay: 0.12s; }
.pillars .reveal:nth-child(3) { transition-delay: 0.24s; }

.traction-grid .reveal:nth-child(1) { transition-delay: 0s; }
.traction-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.traction-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.traction-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.team-grid .reveal:nth-child(1) { transition-delay: 0s; }
.team-grid .reveal:nth-child(2) { transition-delay: 0.15s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; font-size: 0.8rem; }
  .nav-logo { font-size: 1.65rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { max-width: 380px; margin: 0 auto; }
  .section { padding: 4rem 1.5rem; }
  .mission-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillar { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
  .pillar-marker { flex-direction: row; align-items: center; }
  .traction-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .section-traction { padding-left: 1.5rem; padding-right: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer { padding: 3.5rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav { padding: 0.85rem 1rem; }
  .nav-cta { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
  .nav-logo { font-size: 1.5rem; }
  .hero { padding: 5.5rem 1rem 2.5rem; }
  .section { padding: 3.5rem 1rem; }
  .section-traction { padding-left: 1rem; padding-right: 1rem; }
  .traction-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-ctas { width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .founder-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .founder-avatar { width: 80px; height: 80px; }
  .avatar-initial { font-size: 2rem; }
  .iframe-wrapper iframe { height: 60vh; min-height: 450px; }
  .chrome-url { font-size: 0.7rem; }
  .chrome-open-text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}