/* =============================================
   FOODIEASY — GLOBAL DESIGN SYSTEM
   Light Theme | Professional & Clean
   ============================================= */

:root {
  --green-start: #8FBA47;
  --green-end: #22C55E;
  --blue-accent: #0EA5E9;
  --navy: #0F172A;
  --navy-soft: #1E293B;
  --text: #0F172A;
  --text-muted: #64748B;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --border: #E2E8F0;
  --card-shadow: 0 1px 4px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.05);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

/* =============================================
   UTILITIES
   ============================================= */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-start);
  background: rgba(143, 186, 71, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag.light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

/* Scroll fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-start), var(--green-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  padding: 96px 0 72px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(143, 186, 71, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-start);
  background: rgba(143, 186, 71, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--green-start), var(--green-end));
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(34,197,94,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.45);
}

.btn-primary.large {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: border-color var(--transition), color var(--transition);
}

.btn-secondary:hover {
  border-color: var(--green-start);
  color: var(--green-start);
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  height: 44px;
  display: block;
  transition: opacity var(--transition);
}

.store-badge:hover {
  opacity: 0.8;
}

.dodish-mockup-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}

/* App Mockup Placeholder */
.app-mockup-placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 340px;
  justify-content: center;
}

.app-mockup-placeholder.large {
  min-height: 420px;
}

.mockup-screen {
  width: 100%;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-bar {
  height: 16px;
  background: linear-gradient(135deg, var(--green-start), var(--green-end));
  border-radius: 4px;
  opacity: 0.6;
}

.mockup-line {
  height: 10px;
  background: var(--border);
  border-radius: 4px;
}

.mockup-line.short {
  width: 60%;
}

.mockup-card-row {
  display: flex;
  gap: 8px;
}

.mockup-card-sm {
  flex: 1;
  height: 48px;
  background: var(--border);
  border-radius: var(--radius-sm);
}

.mockup-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   STATS BAR
   ============================================= */

.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-start), var(--green-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 40px;
}

/* =============================================
   OUR STORY
   ============================================= */

.story {
  padding: 96px 0;
  background: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.story-text h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 24px;
}

.story-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.story-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 60px;
}

.story-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.story-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.story-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.story-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   MISSION & VISION
   ============================================= */

.mission {
  padding: 96px 0;
  background: var(--bg-alt);
}

.mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mission-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--card-shadow);
  border-top: 4px solid var(--green-start);
}

.vision-card {
  border-top-color: var(--blue-accent);
}

.mission-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.mission-card p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   DODISH PRODUCT
   ============================================= */

.product {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
}

.product h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 16px;
}

.product-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.dodish-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  margin-bottom: 8px;
}

.dodish-cta-sub {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.product-badges {
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 40px;
}

.product-badges .store-badge {
  height: 52px;
  width: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.product-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   APP PREVIEW
   ============================================= */

.app-preview {
  padding: 96px 0;
  background: var(--bg-alt);
}

.app-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.app-preview-text .section-tag {
  display: block;
  margin-bottom: 16px;
}

.app-preview-text h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--navy);
  margin-bottom: 20px;
}

.app-preview-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
}

/* =============================================
   MARKET OPPORTUNITY
   ============================================= */

.market {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
}

.market h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 16px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.market-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition);
}

.market-card:hover {
  transform: translateY(-4px);
}

.market-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.market-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.market-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   TEAM
   ============================================= */

.team {
  padding: 96px 0;
  background: var(--bg-alt);
  text-align: center;
}

.team h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 32px 40px;
  box-shadow: var(--card-shadow);
}

.avatar-placeholder {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, rgba(143,186,71,0.15), rgba(34,197,94,0.1));
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-start);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   CONTACT / INVESTOR CTA
   ============================================= */

.contact {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  text-align: center;
}

.contact-content h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.contact-note {
  margin-top: 16px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.4) !important;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 4px;
}

.footer-legal {
  font-size: 12px !important;
  margin-top: 8px !important;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .hero-text p {
    margin: 0 auto 28px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .store-badges {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
    margin: 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-visual {
    padding-top: 0;
  }

  .story-text h2,
  .product h2,
  .market h2,
  .team h2 {
    font-size: 32px;
  }

  .mission-cards {
    grid-template-columns: 1fr;
  }

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

  .app-preview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .contact-content h2 {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
