@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #050505;
  --text-main: #ffffff;
  --text-muted: #a0aab2;
  --primary-teal: #2bd5c4;
  --primary-teal-hover: #22b5a5;
  --primary-gold: #f4ba40;
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.03);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button {
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}

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

/* Gradient Text Utilities */
.text-gradient-teal-gold {
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background-color: var(--primary-gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.navbar-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--primary-teal);
}

.btn-primary {
  background-color: var(--primary-teal);
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(43, 213, 196, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(43, 213, 196, 0.5);
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* offset for navbar */
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hex-shape {
  position: absolute;
  border: 1px solid var(--border-color);
  width: 300px;
  height: 346px; /* width * 1.154 for perfect hexagon roughly */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.2;
}

.shape-1 {
  top: -50px;
  right: -50px;
  width: 500px;
  height: 577px;
}

.shape-2 {
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 230px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.05);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  border: 2px solid var(--bg-color);
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.avatar:nth-child(2) {
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

.avatar:nth-child(3) {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.proof-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--text-muted);
}

.stars {
  color: var(--primary-gold);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 2px;
}

/* Right Graphic Styles */
.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.dashboard-mockup {
  background: rgba(20, 25, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: visible;
}

.dashboard-header {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.dashboard-body {
  padding: 32px;
}

.chart-title {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.chart-amount {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 150px;
}

.bar {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px 4px 0 0;
  transition: height 1s ease;
}

.teal-bar {
  background: linear-gradient(180deg, var(--primary-teal) 0%, rgba(45, 212, 191, 0.2) 100%);
}

.gold-bar {
  background: linear-gradient(180deg, var(--primary-gold) 0%, rgba(251, 191, 36, 0.2) 100%);
}

.floating-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: rgba(30, 35, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.icon-up {
  background: rgba(43, 213, 196, 0.2);
  color: var(--primary-teal);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
}

.card-title {
  font-size: 12px;
  color: var(--text-muted);
}

.card-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
  }
  
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .navbar-menu.active {
    right: 0;
  }

  .navbar-links {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    margin-bottom: 40px;
  }
  
  .navbar-links a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-social-proof {
    justify-content: center;
  }
  .eyebrow {
    margin: 0 auto 24px auto;
  }
  .floating-card {
    display: none; /* Hide floating card on mobile to save space */
  }
  .dashboard-mockup {
    transform: scale(0.9);
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
