.homepage {
  background: #090909;
  min-height: 100vh;
  color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden; }

.homepage-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px; }
  .homepage-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .homepage-nav .nav-left {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 8px 8px 16px; }
  .homepage-nav .nav-logo {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px; }
    .homepage-nav .nav-logo img {
      height: 24px;
      width: auto;
      filter: brightness(0) invert(1); }
  .homepage-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 4px; }
    .homepage-nav .nav-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 100px;
      transition: all 0.2s ease; }
      .homepage-nav .nav-links a:hover {
        color: #f8fafc;
        background: rgba(255, 255, 255, 0.08); }
  .homepage-nav .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px; }

.btn-nav-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: transparent;
  color: #f8fafc;
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease; }
  .btn-nav-ghost:hover {
    background: rgba(255, 255, 255, 0.08); }

.btn-nav-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #f8fafc;
  color: #090909;
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease; }
  .btn-nav-filled:hover {
    background: #e2e8f0; }

.btn-primary-hp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #6366f1;
  color: #f8fafc;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease; }
  .btn-primary-hp:hover {
    background: #818cf8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4); }
  .btn-primary-hp:active {
    transform: translateY(0); }

.btn-secondary-hp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease; }
  .btn-secondary-hp:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #94a3b8;
    transform: translateY(-2px); }

.btn-ghost-hp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  color: #94a3b8;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease; }
  .btn-ghost-hp:hover {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.05); }

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 65px 24px 60px;
  overflow: hidden; }
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent), radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.1), transparent), radial-gradient(ellipse 50% 30% at 20% 80%, rgba(59, 130, 246, 0.1), transparent);
    animation: heroGradient 15s ease-in-out infinite alternate;
    pointer-events: none; }
  .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; }

@keyframes heroGradient {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1; }
  100% {
    transform: scale(1.1) rotate(3deg);
    opacity: 0.8; } }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 24px;
  backdrop-filter: blur(8px); }
  .hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite; }
  .hero-badge .blue-dot {
    background: #383cff; }

@keyframes pulse {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0.5; } }

.hero-title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; }

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap; }

.hero-float {
  position: absolute;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 16px;
  animation: float 6s ease-in-out infinite; }
  .hero-float.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s; }
  .hero-float.float-2 {
    top: 30%;
    right: 8%;
    animation-delay: 2s; }
  .hero-float.float-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 4s; }

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

.clients-section {
  padding: 60px 0;
  background: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.clients-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px; }

.clients-marquee {
  overflow: hidden;
  position: relative; }
  .clients-marquee::before, .clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none; }

.clients-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: fit-content; }

.clients-track-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px; }

.client-logo {
  height: 40px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease; }
  .client-logo:hover {
    opacity: 1; }

@keyframes marquee {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }

.features-section {
  padding: 100px 24px;
  background: #090909; }

.features-container {
  max-width: 1200px;
  margin: 0 auto; }

.features-header {
  text-align: center;
  margin-bottom: 60px; }

.features-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px; }

.features-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 16px; }

.features-subtitle {
  font-size: 16px;
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; }

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease; }
  .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
    .feature-card:hover .feature-icon {
      background: #6366f1;
      color: white; }

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #334155;
  border-radius: 12px;
  margin-bottom: 20px;
  color: #94a3b8;
  transition: all 0.2s ease; }
  .feature-icon svg {
    width: 24px;
    height: 24px; }

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #f8fafc;
  margin: 0 0 12px; }

.feature-description {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0; }

.cta-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #090909 0%, #0f141d 100%);
  text-align: center; }

.cta-container {
  max-width: 600px;
  margin: 0 auto; }

.cta-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 16px; }

.cta-subtitle {
  font-size: 16px;
  color: #94a3b8;
  margin: 0 0 32px; }

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap; }

.homepage-footer {
  padding: 60px 24px 30px;
  background: #0f141d;
  border-top: 1px solid rgba(255, 255, 255, 0.1); }

.footer-container {
  max-width: 1200px;
  margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.footer-brand {
  max-width: 280px; }

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 12px; }

.footer-tagline {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6; }

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap; }

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px; }

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.footer-column li {
  margin-bottom: 10px; }

.footer-column a {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease; }
  .footer-column a:hover {
    color: #f8fafc; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px; }

.footer-copyright {
  font-size: 12px;
  color: #94a3b8; }

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8; }
  .footer-status .status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%; }

@media (max-width: 768px) {
  .homepage-nav {
    padding: 12px 16px; }
    .homepage-nav .nav-container {
      gap: 12px; }
    .homepage-nav .nav-left {
      padding: 6px 6px 6px 12px; }
    .homepage-nav .nav-logo {
      font-size: 18px; }
      .homepage-nav .nav-logo img {
        height: 22px; }
    .homepage-nav .nav-links {
      display: none; }
    .homepage-nav .nav-cta {
      padding: 4px; }
      .homepage-nav .nav-cta .btn-nav-ghost {
        display: none; }
      .homepage-nav .nav-cta .btn-nav-filled {
        padding: 8px 16px;
        font-size: 12px; }
  .hero-section {
    padding: 100px 20px 60px;
    min-height: auto; }
  .hero-cta {
    flex-direction: column; }
    .hero-cta .btn-primary-hp,
    .hero-cta .btn-secondary-hp {
      width: 100%;
      max-width: 280px; }
  .hero-float {
    display: none; }
  .features-grid {
    grid-template-columns: 1fr; }
  .footer-top {
    flex-direction: column; }
  .footer-links {
    gap: 30px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center; } }

@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    animation: none; }
  .clients-track {
    animation: none; }
  .hero-float {
    animation: none; }
  .badge-dot {
    animation: none; } }

