:root {
  /* Colors */
  --bg-dark: #121411;
  /* Extremely dark green/gray */
  --bg-light: #F4F5F2;
  /* Off white / warm gray */
  --brand-green: #D1FF4F;
  /* Neon yellow-green, like Orbitly */
  --brand-green-dim: rgba(209, 255, 79, 0.4);

  --text-dark: #FFFFFF;
  --text-dark-muted: #A3A8A5;
  --text-light: #202221;
  --text-light-muted: #6B726C;

  --card-bg: #FFFFFF;
  --card-border: rgba(0, 0, 0, 0.08);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

  --nav-height: 80px;

  /* Spacing */
  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-light);
  /* Base is light, hero is separate */
  color: var(--text-light);
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

/* -------------------------------------
   DARK HERO SECTION
   ------------------------------------- */
.hero-wrapper {
  background-color: var(--bg-dark);
  color: var(--text-dark);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding-bottom: 6rem;
  margin: 1rem;
  margin-top: 0;
}

/* Navbar */
.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-brand {
  color: var(--brand-green);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.btn-nav {
  background-color: white;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.btn-nav:hover {
  background-color: #f0f0f0;
}

/* Hero Content */
.hero {
  padding-top: 6rem;
  position: relative;
  z-index: 10;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-dark-muted);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-dark-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.btn-primary {
  background-color: var(--brand-green);
  color: #000;
  padding: 0.875rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 14px var(--brand-green-dim);
  transition: all 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--brand-green-dim);
}

.btn-text {
  color: var(--text-dark-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.btn-text:hover {
  color: white;
}

.text-sm {
  font-size: 0.75rem;
  margin-top: 2px;
}

/* Mockup & Glow */
.hero-dashboard-mockup {
  position: relative;
  width: 900px;
  max-width: 100%;
}

.light-ray {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: radial-gradient(circle at center top, rgba(209, 255, 79, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.glow-effect {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 90%;
  height: 200px;
  transform: translate(-50%, -50px);
  background: var(--brand-green);
  filter: blur(100px);
  opacity: 0.4;
  border-radius: 50%;
  z-index: -1;
}

.dashboard-img {
  background-color: #0f1613;
  /* slightly different dark */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(209, 255, 79, 0.3), 0 0 40px rgba(209, 255, 79, 0.2);
}

.dashboard-top {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
  display: flex;
  gap: 6px;
  margin-right: 20px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}

.search-bar {
  background: rgba(255, 255, 255, 0.05);
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #666;
}

.dashboard-content {
  display: flex;
  height: 400px;
}

.sidebar {
  width: 200px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.main-panel {
  flex: 1;
  padding: 2rem;
  text-align: left;
}

.welcome-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.welcome-text span {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  font-weight: 400;
  display: block;
}

.stats-row {
  display: flex;
  gap: 1rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  flex: 1;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-green);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  color: var(--brand-green);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(209, 255, 79, 0.2);
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* -------------------------------------
   LIGHT BODY SECTIONS
   ------------------------------------- */
.main-content {
  padding: 4rem 1rem;
}

/* Trusted Logos */
.trusted-section {
  padding-bottom: 5rem;
}

.trusted-text {
  color: var(--text-light-muted);
  font-weight: 500;
  margin-bottom: 2rem;
}

.logo-strip {
  display: flex;
  justify-content: space-between;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.logo-item {
  flex: 1;
  padding: 1.5rem;
  border-right: 1px solid var(--card-border);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.logo-item:last-child {
  border-right: none;
}

.logo-item div i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Section Headers */
.section-title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-light-muted);
}

/* Bento Grid Layout */
.bento-section {
  padding: 2rem 0;
}

.grid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-rows: minmax(350px, auto);
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.bento-card.span-2 {
  grid-column: span 2;
}

.bento-card.span-1 {
  grid-column: span 1;
}

.bento-image {
  flex: 1;
  background-color: #fcfcfc;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

.bento-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bento-text p {
  color: var(--text-light-muted);
  font-size: 0.875rem;
}

/* Workflow Section Grid */
.workflow-section {
  padding: 5rem 0;
}

.workflow-section .container-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 40px;
  padding: 4rem;
  box-shadow: var(--card-shadow);
}

.workflow-section .row-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  row-gap: 4rem;
}

.workflow-item {
  text-align: center;
  padding: 0 1rem;
}

.icon-orb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.25rem;
  background: #f0f0f0;
}

.icon-orb.bg-green {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
}

.icon-orb.bg-purple {
  color: #9b59b6;
  background: rgba(155, 89, 182, 0.1);
}

.icon-orb.bg-blue {
  color: #3498db;
  background: rgba(52, 152, 219, 0.1);
}

.icon-orb.bg-yellow {
  color: #f1c40f;
  background: rgba(241, 196, 15, 0.1);
}

.icon-orb.bg-red {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

.icon-orb.bg-gray {
  color: #7f8c8d;
  background: rgba(127, 140, 141, 0.1);
}

.workflow-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.workflow-item p {
  color: var(--text-light-muted);
  font-size: 0.875rem;
}

/* Mockup Elements Styling inside Bento */
.task-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  position: absolute;
  top: 20%;
  left: 20%;
  transform: rotate(-5deg);
  z-index: 2;
}

.task-card .tag {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 5px;
}

.task-card h4 {
  font-size: 0.8rem;
  margin: 0;
}

.task-card p {
  font-size: 0.7rem;
  color: #666;
}

.reply-card {
  background: #e1f5fe;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.7rem;
  position: absolute;
  bottom: 20%;
  right: 20%;
  transform: rotate(3deg);
  z-index: 1;
  border: 1px solid #b3e5fc;
}

.time-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.slot-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}

.text-green {
  color: #2ecc71;
}

.cal-days {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
}

.cal-days span.active {
  background: #000;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
}

.cal-event {
  background: var(--brand-green);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 600;
}

.budget-bar {
  height: 10px;
  width: 60%;
  background: var(--brand-green);
  border-radius: 5px;
  margin-bottom: 10px;
}

.budget-stats {
  font-size: 1.25rem;
  font-weight: 700;
}

.pos-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
}

.pos-items span {
  padding: 5px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 0.8rem;
  background: white;
}

/* Footer */
.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--card-border);
  background: var(--bg-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left .logo {
  margin-bottom: 0.5rem;
}

.footer-copyright {
  color: var(--text-light-muted);
  font-size: 0.875rem;
}

.footer-links-bottom {
  display: flex;
  gap: 1.5rem;
}

.footer-links-bottom a {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links-bottom a:hover {
  color: var(--text-light);
}

/* Responsive basics */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.span-2 {
    grid-column: span 2;
  }

  .grid-header,
  .workflow-section .row-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  .logo-strip {
    flex-wrap: wrap;
  }

  .logo-item {
    flex: 1 1 30%;
    border-bottom: 1px solid var(--card-border);
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 0 2rem;
  }

  .btn-primary,
  .btn-text {
    width: 100%;
    justify-content: center;
  }

  .logo-strip {
    flex-direction: column;
  }

  .logo-item {
    border-right: none;
    border-bottom: 1px solid var(--card-border);
  }

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

  .bento-card.span-2 {
    grid-column: span 1;
  }

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

  .workflow-section .container-box {
    padding: 2rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .sidebar {
    display: none;
  }

  .main-panel {
    padding: 1.5rem;
  }

  .welcome-text {
    font-size: 1.25rem;
  }

  .dashboard-content {
    height: auto;
  }

  .stats-row {
    flex-direction: column;
  }

  .stat-box {
    padding: 1rem;
    font-size: 1.25rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2rem;
  }
}