:root {
  --bg: #F7F8F6;
  --primary: #405B53;
  --secondary: #8C948B;
  --cta: #E64E1B;
  --text: #222;
  --radius: 14px;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header Styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 7vw 20px 7vw;
  background: #fff;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--primary);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo a {
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--cta);
  margin-left: 2px;
}

nav {
  display: flex;
  gap: 2em;
  font-size: 1.08em;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

nav a:hover {
  color: var(--cta);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--cta);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--cta);
  font-weight: 600;
}

nav a.active::after {
  width: 100%;
}

.cta-btn {
  background: var(--cta);
  color: #fff;
  padding: 0.7em 1.8em;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 2em;
  box-shadow: var(--shadow-light);
}

.cta-btn:hover {
  background: #b73a10;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Main Content */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 7vw 40px 7vw;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 4em;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.3em;
  color: var(--primary);
  line-height: 1.1;
}

.hero-title .moto {
  color: var(--cta);
}

.hero-desc {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 2.2em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-actions {
  margin-bottom: 3em;
}

.hero-actions button {
  margin: 0 0.7em 1em 0.7em;
  padding: 1em 2.2em;
  border-radius: var(--radius);
  font-size: 1.13em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--cta);
  color: #fff;
  box-shadow: var(--shadow-light);
  transition: all 0.2s;
  min-width: 180px;
}

.hero-actions button.alt {
  background: var(--primary);
}

.hero-actions button:hover {
  background: #b73a10;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hero-actions button.alt:hover {
  background: #27372e;
}

/* Features Section */
.features {
  margin: 4em 0;
}

.feature-cards {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  padding: 2.5em 2em 2em 2em;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: left;
  border-left: 6px solid var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-card .icon {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  display: block;
}

.feature-card h3 {
  margin: 0.2em 0 0.5em 0;
  color: var(--primary);
  font-size: 1.25em;
  font-weight: 600;
}

.feature-card p {
  color: var(--secondary);
  font-size: 1.05em;
  margin: 0;
  line-height: 1.6;
}

/* Founder Section */
.founder-section {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 3em 2em;
  margin: 4em 0;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.founder-section h2 {
  margin: 0 0 0.5em 0;
  font-size: 1.8em;
  color: #fff;
  font-weight: 600;
}

.founder-section p {
  color: #e5ecea;
  font-size: 1.15em;
  margin-bottom: 1.5em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.founder-section a {
  background: #fff;
  color: var(--primary);
  padding: 1em 2.5em;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: var(--shadow-light);
  transition: all 0.2s;
  display: inline-block;
}

.founder-section a:hover {
  background: var(--cta);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Coming Soon Section */
.coming-soon {
  background: #fff;
  border-radius: var(--radius);
  padding: 3em 2em;
  margin: 4em 0;
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--cta);
}

/* Page-specific styles */
.page-hero {
  text-align: center;
  margin-bottom: 3em;
  padding: 2em 0;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5em;
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--secondary);
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em 0;
}

.placeholder-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 3em 2em;
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 2px dashed var(--secondary);
}

.placeholder-content h2 {
  color: var(--primary);
  margin-bottom: 1em;
}

.placeholder-content p {
  color: var(--secondary);
  font-size: 1.1em;
}

/* How It Works page styles */
.how-it-works-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.3rem;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 3em;
  line-height: 1.6;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2em;
  margin-bottom: 3em;
  padding: 2.5em;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  border-left: 6px solid var(--primary);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-light);
}

.step-content {
  flex: 1;
}

.step-content h2 {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8em;
  line-height: 1.3;
}

.step-content p {
  color: var(--secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* For Investors page styles */
.for-investors-content,
.for-founders-content {
  max-width: 800px;
  margin: 0 auto;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3em 0;
}

.feature-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8em 2em;
  margin-bottom: 1.5em;
  box-shadow: var(--shadow-light);
  border-left: 6px solid var(--primary);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--secondary);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.feature-title {
  font-weight: 600;
  color: var(--primary);
  margin-right: 0.5em;
}

.cta-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5em 2em;
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--cta);
}

.cta-text {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5em;
}

.page-cta-btn {
  background: var(--cta);
  color: #fff;
  padding: 1em 2.5em;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-light);
}

.page-cta-btn:hover {
  background: #b73a10;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* FAQ page styles */
.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 2em;
  box-shadow: var(--shadow-light);
  border-left: 6px solid var(--primary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.faq-question {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8em;
  line-height: 1.4;
}

.faq-answer {
  color: var(--secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.faq-link {
  color: var(--cta);
  text-decoration: underline;
  transition: color 0.2s;
}

.faq-link:hover {
  color: #b73a10;
}

.coming-soon h2 {
  color: var(--primary);
  font-size: 2em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.coming-soon p {
  color: var(--secondary);
  font-size: 1.2em;
  margin-bottom: 2em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.email-signup {
  display: flex;
  gap: 1em;
  max-width: 400px;
  margin: 0 auto 1em auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-signup input {
  flex: 1;
  min-width: 250px;
  padding: 1em;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 1em;
  transition: border-color 0.2s;
}

.email-signup input:focus {
  outline: none;
  border-color: var(--cta);
}

.email-signup button {
  background: var(--cta);
  color: #fff;
  border: none;
  padding: 1em 2em;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 120px;
}

.email-signup button:hover {
  background: #b73a10;
  transform: translateY(-2px);
}

.signup-success {
  background: #e8f5e8;
  border: 2px solid #4caf50;
  border-radius: var(--radius);
  padding: 1em;
  margin-top: 1em;
}

.signup-success p {
  color: #2e7d32;
  margin: 0;
  font-weight: 500;
}

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #ececec;
  margin-top: 4em;
  padding: 3em 7vw 2em 7vw;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3em;
}

.footer-left .logo {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}

.footer-left p {
  color: var(--secondary);
  margin: 0;
  font-size: 1.05em;
}

.footer-links {
  display: flex;
  gap: 3em;
}

.footer-column h4 {
  color: var(--primary);
  margin: 0 0 1em 0;
  font-size: 1.1em;
  font-weight: 600;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.footer-column a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95em;
}

.footer-column a:hover {
  color: var(--cta);
}

.footer-bottom {
  text-align: center;
  color: var(--secondary);
  font-size: 0.9em;
  padding-top: 2em;
  margin-top: 2em;
  border-top: 1px solid #ececec;
}

/* Responsive Design */
@media (max-width: 900px) {
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1.5em;
    padding: 2em 5vw;
  }
  
  nav {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
  }
  
  .cta-btn {
    margin: 0;
    order: 3;
  }
  
  main {
    padding: 3em 5vw 2em 5vw;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-desc {
    font-size: 1.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions button {
    width: 100%;
    max-width: 280px;
  }
  
  .email-signup {
    flex-direction: column;
    align-items: center;
  }
  
  .email-signup input,
  .email-signup button {
    width: 100%;
    max-width: 300px;
  }
  
  footer {
    padding: 2em 5vw;
  }
  
  .footer-links {
    gap: 2em;
  }
  
  /* How It Works mobile styles */
  .step {
    flex-direction: column;
    gap: 1.5em;
    padding: 2em 1.5em;
    text-align: center;
  }
  
  .step-number {
    align-self: center;
    margin-bottom: 0.5em;
  }
  
  .intro-text {
    font-size: 1.2rem;
    margin-bottom: 2em;
  }
  
  /* For Investors mobile styles */
  .feature-item {
    padding: 1.5em;
    margin-bottom: 1.2em;
  }
  
  .cta-section {
    padding: 2em 1.5em;
  }
  
  /* FAQ mobile styles */
  .faq-item {
    padding: 1.5em;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 2em 1.5em;
  }
  
  .founder-section,
  .coming-soon {
    padding: 2em 1.5em;
  }
}
