:root {
  --bg: #F7F6F2;
  --border: #E0DED8;
  --amber: #F0AA3E;
  --amber-hover: #E8A52B;
  --black: #111111;
  --white: #FFFFFF;
  --text: #111111;
  --muted: #666666;
  --dimmed: #999999;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: #F7F6F2;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}



.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: #111111;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--amber-hover); transform: translateY(-1px); }
.btn-primary.large { font-size: 16px; padding: 16px 32px; border-radius: 10px; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(16,16,16,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #2e2e2e;
}
.nav-logo img { height: 80px; width: auto; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  background: #F7F6F2;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,170,62,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { animation: fadeUp 0.8s ease both; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(240,170,62,0.1);
  border: 1px solid rgba(240,170,62,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--black);
}
.hero-headline span { color: var(--amber); }
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-cta-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--dimmed); margin-top: 16px; }
.hero-visual { display: flex; justify-content: center; align-items: center; animation: fadeUp 0.8s 0.2s ease both; }
.phone-wrap { position: relative; width: 280px; }
.phone-frame {
  width: 280px;
  background: #1a1a1a;
  border-radius: 44px;
  border: 1.5px solid #333;
  padding: 12px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.18), 0 8px 24px rgba(240,170,62,0.1);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.phone-screen { width: 100%; border-radius: 34px; overflow: hidden; display: block; }
.phone-screen img { width: 100%; display: block; }
.phone-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: radial-gradient(ellipse, rgba(240,170,62,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ALL SECTIONS */
.problem, .features, .how, .proof, .final-cta {
  border-top: 1px solid var(--border);
}
section {
  padding: 100px 48px;
  background: #F7F6F2;
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--black);
}
.section-body { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 600px; }

/* PROBLEM */
.problem { background: #F0EDE6; }
.problem .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.problem-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.problem-bullet {
  border-left: 3px solid var(--amber);
  padding: 4px 0 4px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.problem-bullet-dot {
  display: none;
}
.stat-block {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  display: block;
}
.stat-caption {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.stat-divider {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin: 20px auto;
  opacity: 0.4;
}
@media (max-width: 900px) {
  .problem .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .stat-number { font-size: 80px; }
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover { border-color: rgba(240,170,62,0.4); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(240,170,62,0.08); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(240,170,62,0.1);
  border: 1px solid rgba(240,170,62,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.feature-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; color: var(--black); }
.feature-body { font-size: 15px; line-height: 1.65; color: var(--muted); }

/* FEATURE SHOWCASE */
.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
}
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #FFFFFF;
  transition: box-shadow 0.25s, transform 0.25s;
}
.showcase-item:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.showcase-item.reverse { direction: rtl; }
.showcase-item.reverse > * { direction: ltr; }
.showcase-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.showcase-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.25s;
}
.showcase-item:hover .showcase-content::before { opacity: 1; }
.showcase-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.showcase-icon {
  width: 48px; height: 48px;
  background: rgba(240,170,62,0.1);
  border: 1px solid rgba(240,170,62,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.showcase-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 14px;
}
.showcase-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.showcase-visual {
  background: #F0EDE6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.showcase-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(240,170,62,0.06) 0%, transparent 70%);
}
.showcase-phone {
  width: 180px;
  background: #1a1a1a;
  border-radius: 32px;
  border: 1.5px solid #333;
  padding: 8px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.showcase-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 20px;
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.showcase-phone img {
  width: 100%;
  border-radius: 26px;
  display: block;
}
.showcase-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  background: #1e1e1e;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.showcase-placeholder-icon {
  width: 40px; height: 40px;
  border: 2px dashed #444;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0.5;
}
.showcase-placeholder-text {
  font-size: 11px;
  color: #555;
  text-align: center;
  line-height: 1.5;
  font-family: 'Barlow', sans-serif;
}

@media (max-width: 900px) {
  .showcase-item {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .showcase-item.reverse { direction: ltr; }
  .showcase-visual {
    min-height: 280px;
    order: -1;
    padding: 32px 24px;
  }
  .showcase-phone { width: 140px; }
  .showcase-content { padding: 32px 24px; }
  .showcase-content::before { width: 100%; height: 3px; top: 0; left: 0; }
  .showcase-title { font-size: 22px; }
}

/* HOW IT WORKS */
.how { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  display: none;
}
.step { padding: 0 32px; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-header {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}
.step-icon {
  width: 36px; height: 36px;
  background: rgba(240,170,62,0.1);
  border: 1px solid rgba(240,170,62,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.step-number { font-family: 'Barlow Condensed', sans-serif; font-size: 72px; font-weight: 900; color: var(--amber); line-height: 1; margin-bottom: 0; }
.step-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.step-body { font-size: 15px; line-height: 1.65; color: var(--muted); }

/* SOCIAL PROOF */
.proof { background: #F0EDE6; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.proof-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.proof-quote-mark { font-family: 'Barlow Condensed', sans-serif; font-size: 72px; font-weight: 900; color: var(--amber); opacity: 0.25; line-height: 0.8; margin-bottom: 8px; }
.proof-quote { font-size: 17px; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 20px; }
.proof-attribution { font-size: 13px; font-weight: 700; color: var(--amber); letter-spacing: 0.05em; text-transform: uppercase; }

/* FINAL CTA */
.final-cta { text-align: center; }
.final-cta .section-body { margin: 0 auto 40px; }
.cta-note { margin-top: 16px; font-size: 13px; color: var(--dimmed); }

/* FOOTER */
footer {
  padding: 32px 48px;
  background: #F7F6F2;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo img { height: 28px; opacity: 0.5; }
.footer-copy { font-size: 13px; color: var(--dimmed); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--dimmed); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--muted); }

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

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  
  .btn-primary { font-size: 13px; padding: 9px 16px; }
  .hero { padding: 90px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-cta-group { justify-content: center; }
  .hero-eyebrow { margin: 0 auto 24px; }
  .hero-visual { display: none; }
  section { padding: 72px 24px; }
  .problem .section-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-number { font-size: 80px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .step { padding: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 24px; }
  .footer-links { justify-content: center; }
}

/* WHY CHOOSE SECTION */
.why { border-top: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  border-color: rgba(240,170,62,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(240,170,62,0.08);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.25s;
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 48px; height: 48px;
  background: rgba(240,170,62,0.1);
  border: 1px solid rgba(240,170,62,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.1;
}
.why-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* FOUNDERS SECTION */
.founders { border-top: 1px solid var(--border); background: #F0EDE6; }
.founders-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.founders-header { margin-bottom: 48px; }
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.founder-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E0DED8;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(240,170,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E0DED8;
}
.founder-photo-placeholder svg { opacity: 0.4; }
.founder-info { flex: 1; }
.founder-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.founder-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.founders-statement {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: center;
}
.founders-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 16px;
}
.founders-quote span { color: var(--amber); }
.founders-attribution {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .founders-grid { grid-template-columns: 1fr; }
  .founders-statement { padding: 32px 24px; }
  .founders-quote { font-size: 22px; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
}
