/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --font:          'Bricolage Grotesque', sans-serif;

  --cream:         #F5F0E8;
  --white:         #FEFCF8;
  --dark:          #0B2545;
  --dark-deep:     #071A36;
  --mid:           #163360;

  --accent:        #F07330;
  --accent-light:  #FBAD7A;
  --accent-muted:  #C45A1A;

  --text:          #0B2545;
  --text-muted:    #4A6FA5;
  --text-faint:    rgba(245, 240, 232, 0.5);
  --text-on-dark:  rgba(245, 240, 232, 0.6);

  --border:        rgba(240, 115, 48, 0.22);
  --border-strong: rgba(240, 115, 48, 0.3);
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}


/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: var(--dark);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 115, 48, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-links .nav-cta,
.nav-cta {
  background: var(--accent);
  color: var(--dark);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover,
.nav-cta:hover {
  background: var(--accent-light);
  color: var(--dark-deep);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 0 50%;
  background: var(--dark);
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 1.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.8rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 1rem 2.2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}

.btn-primary:hover {
  background: var(--dark);
  color: var(--accent);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--accent-muted);
  color: var(--accent-muted);
  padding: 1rem 2.2rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
}

.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.stat-row:last-of-type {
  border-bottom: none;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-light);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(240, 115, 48, 0.12);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  margin-top: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.badge-text {
  font-size: 0.8rem;
  color: var(--accent-light);
}


/* ============================================================
   SECTION BASE
   ============================================================ */
section {
  padding: 6rem 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-label--light {
  color: rgba(240, 115, 48, 0.7);
}

.section-label--center {
  justify-content: center;
}

.section-label--center::before {
  display: none;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 3.5rem;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.service-col {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}

.service-col:last-child {
  border-right: none;
}

.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.service-col-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: '\2713';
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}


/* ============================================================
   TOOLS
   ============================================================ */
.tools-section {
  background: var(--dark);
  color: var(--cream);
}

.tools-section .section-title {
  color: var(--cream);
}

.tools-section .section-sub {
  color: var(--text-faint);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(240, 115, 48, 0.15);
}

.tool-cell {
  background: var(--mid);
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.tool-cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.tool-names {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
}

.tool-names strong {
  color: rgba(245, 240, 232, 0.9);
  font-weight: 400;
}


/* ============================================================
   PROCESS
   ============================================================ */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.process-step {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}

.process-step:last-child {
  border-right: none;
}

.process-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.process-step-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   WHY
   ============================================================ */
.why-section {
  background: var(--white);
}

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

.why-points {
  list-style: none;
}

.why-points li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
}

.why-points li:last-child {
  border-bottom: none;
}

.why-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
}

.why-text strong {
  display: block;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.why-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.why-quote-box {
  background: var(--dark);
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
}

.why-quote-box .big-quote {
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.why-quote-box blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.why-quote-attribution {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.08em;
}


/* ============================================================
   FOUNDER
   ============================================================ */
.founder-section {
  background: var(--dark);
  padding: 4rem;
}

.founder-section .section-title {
  color: var(--cream);
}

.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-photo-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--border-strong);
  line-height: 0;
}

.founder-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.founder-content {
  padding-top: 0.5rem;
}

.founder-name {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.founder-role {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
}

.founder-bio {
  color: var(--cream);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.6rem;
}

.founder-bio strong {
  color: var(--accent);
  font-weight: 700;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(240, 115, 48, 0.4);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s;
}

.founder-link:hover {
  border-color: var(--accent);
}

/* Founder expanded section */
.founder-expanded {
  margin-top: 3rem;
  border-top: 1px solid var(--border-strong);
  padding-top: 2.5rem;
}

.founder-teaser {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 280px;
}

.teaser-images {
  display: flex;
  gap: 0;
  height: 100%;
  filter: blur(6px);
  transform: scale(1.04);
}

.teaser-images img {
  flex: 1;
  width: 0;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.teaser-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 40, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-gate-content {
  display: none;
}

.founder-gate-content.open {
  display: block;
  animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.founder-more-text {
  color: var(--cream);
  line-height: 1.9;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 820px;
}

.founder-more-text strong {
  color: var(--accent);
  font-weight: 700;
}

.see-more-btn {
  background: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.75rem 2.2rem;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(240, 115, 48, 0.45);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.see-more-btn:hover {
  background: #d4601a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(240, 115, 48, 0.6);
}

.founder-meetings {
  margin-top: 2.5rem;
}

.meetings-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.meetings-sub {
  color: var(--text-on-dark);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.meetings-grid {
  columns: 3;
  column-gap: 1.2rem;
}

.meeting-img-wrap {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  line-height: 0;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.meeting-img-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.meeting-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-scroll-wrap {
  position: relative;
  margin-top: 1rem;
  height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.testimonials-scroll-wrap::-webkit-scrollbar {
  width: 4px;
}

.testimonials-scroll-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.testimonials-scroll-wrap::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

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

.testi-screenshot-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  line-height: 0;
}

.testi-screenshot-wrap img {
  width: 100%;
  height: auto;
  display: block;
}


/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: var(--dark);
  text-align: center;
  padding: 7rem 4rem;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0.6rem auto 1.2rem;
}

.cta-title em {
  color: var(--accent);
  font-style: italic;
}

.cta-sub {
  color: var(--text-faint);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 2.5rem;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s;
}

.cta-btn:hover {
  background: var(--cream);
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.3);
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark-deep);
  color: rgba(245, 240, 232, 0.35);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-link {
  color: var(--accent);
  text-decoration: none;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up          { opacity: 0; }
.fade-up.visible  { animation: fadeUp 0.7s ease both; }
.delay-1          { animation-delay: 0.10s; }
.delay-2          { animation-delay: 0.22s; }
.delay-3          { animation-delay: 0.36s; }
.delay-4          { animation-delay: 0.50s; }
.delay-5          { animation-delay: 0.65s; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

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

  .hero::before {
    display: none;
  }

  .hero-left {
    padding: 1.5rem 2rem 3rem;
  }

  .hero-right {
    padding: 2rem;
    background: var(--dark);
  }

  .services-grid,
  .process-row {
    grid-template-columns: 1fr;
  }

  .service-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-col:last-child {
    border-bottom: none;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    gap: 2rem;
  }

  .founder-photo-wrap {
    max-width: 220px;
  }

  .meetings-grid {
    columns: 1;
  }

  .testimonials-scroll-wrap {
    height: 500px;
  }

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

  .founder-section {
    padding: 4rem 2rem;
  }
}
