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

:root {
  --bg: #020205;
  --bg-soft: #08080f;
  --bg-card: rgba(255, 255, 255, 0.02);
  --border-card: rgba(255, 255, 255, 0.06);
  --txt: #ffffff;
  --muted: #94a3b8;
  --brand: #f7931a; /* rural theme orange */
  --brand-glow: rgba(247, 147, 26, 0.15);
  --ok: #22c55e;
  --danger: #ef4444;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  --radius: 16px;
  --radius-lg: 28px;
  --maxw: 1200px;
  --font-inter: 'Inter', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
  font-family: var(--font-poppins);
  background-color: var(--bg);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Background Spotlights */
.global-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(800px circle at var(--global-mouse-x, 50%) var(--global-mouse-y, 50%), rgba(247, 147, 26, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.ambient-glow {
  position: fixed;
  top: -10%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.03) 0%, transparent 60%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.ambient-glow-2 {
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.02) 0%, transparent 60%);
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
}

/* Container */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px 0;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--txt);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.headline span {
  background: linear-gradient(135deg, #ffffff 40%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 400;
}

.badge-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0c0a09;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.badge-container img {
  height: 18px;
  width: auto;
  border-radius: 0;
  display: inline-block;
}

.badge-container .startup-india-logo {
  filter: none;
}

.badge-container .driftsync-logo {
  height: 14px;
  filter: none;
  opacity: 1;
}

.badge-divider {
  width: 1px;
  height: 14px;
  background: rgba(0, 0, 0, 0.15);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn.primary {
  background: linear-gradient(90deg, var(--brand) 0%, #f77c1a 100%);
  border: none;
  color: #000;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(247, 147, 26, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(247, 147, 26, 0.45);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--txt);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Phone Mockup */
.phone-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup-wrapper::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(247, 147, 26, 0.15) 0%, transparent 70%);
}

.phone-frame {
  width: 290px;
  height: 580px;
  background: #000;
  border-radius: 36px;
  border: 10px solid #1c1c1c;
  box-shadow: 0 25px 60px rgba(0,0,0,0.85), inset 0 0 4px rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.phone-camera {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #0d0d0d;
  border: 2px solid #222;
  border-radius: 50%;
  z-index: 100;
  box-shadow: inset 0 0 2px rgba(255,255,255,0.5);
}

.phone-screen-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #000;
}

.phone-status-bar {
  height: 24px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  z-index: 10;
}

.android-nav-bar {
  height: 36px;
  background: #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #111;
  padding: 0 20px;
  z-index: 10;
}

.android-nav-btn {
  color: #555;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
}

.android-nav-recents {
  display: flex;
  gap: 3px;
}

.android-nav-recents span {
  width: 2px;
  height: 8px;
  background: currentColor;
  border-radius: 1px;
}

.android-nav-home {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.android-nav-back {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-scroll-container {
  flex-grow: 1;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: #000;
  position: relative;
}

.app-scroll-image {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  animation: appScrollAnimation 10s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes appScrollAnimation {
  0%, 15% { transform: translateY(0); }
  85%, 100% { transform: translateY(calc(-100% + 520px)); }
}


/* Section Headings */
.center {
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-weight: 400;
}


/* Features Section */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 147, 26, 0.3);
  box-shadow: 0 20px 40px rgba(247, 147, 26, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.card .media {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .media img {
  transform: scale(1.06);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}


/* Parent Company & Credibility Section */
.credibility-section {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0;
}

.credibility-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.credibility-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.credibility-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.credibility-content ul {
  list-style: none;
  padding: 0;
}

.credibility-content li {
  font-size: 0.95rem;
  color: var(--txt);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.credibility-content li i {
  color: var(--brand);
}

.credibility-logos-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.02);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-wrapper.bordered {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 30px;
}

.credibility-logos-card img {
  height: 48px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}

.credibility-logos-card img.ds-logo {
  filter: none;
  height: 38px;
}

.credibility-logos-card img.si-logo {
  filter: none;
}

.credibility-logos-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}


/* Pitch Deck & Traction Section */
.traction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.traction-card {
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.traction-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 15px 35px rgba(247, 147, 26, 0.1);
}

.traction-val {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  font-family: var(--font-inter);
}

.traction-val span {
  color: var(--brand);
}

.traction-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.pitch-deck-banner {
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.08) 0%, rgba(2, 2, 5, 0.8) 100%);
  border: 1px solid rgba(247, 147, 26, 0.2);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pitch-deck-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.pitch-deck-info {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.pitch-deck-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.pitch-deck-info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pitch-deck-btn-wrapper {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}


/* How it Works Section */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  padding: 30px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.step .num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), #f77c1a);
  display: grid;
  place-items: center;
  color: #000;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 20px rgba(247, 147, 26, 0.25);
}

.step strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}


/* Footer */
.footer {
  background-color: #010103;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 2;
}

.footer__section {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-container {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 10px;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

.footer-logo-container img.footer-brand-logo {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 0;
}

.footer-about p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.links-contaniner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-links .links-head {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--brand);
}

.copyright-social-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--muted);
}

.copyright a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright a:hover {
  border-color: #fff;
}

.social-handles {
  display: flex;
  gap: 16px;
}

.social-handles a {
  color: var(--muted);
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.social-handles a:hover {
  color: var(--brand);
  transform: translateY(-2px);
}


/* Modal Overlay (Routing pages about, privacy, terms) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #06060c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(247, 147, 26, 0.05);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 1001;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand);
  transform: rotate(90deg);
}

.modal-container::-webkit-scrollbar {
  width: 6px;
}

.modal-container::-webkit-scrollbar-track {
  background: transparent;
}

.modal-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* Modal Content Styles */
.modal-container h1, 
.modal-container h2 {
  color: #fff;
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.modal-container h1 {
  font-size: 2.2rem;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 16px;
}

.modal-container h2 {
  font-size: 1.4rem;
}

.modal-container h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-top: 18px;
  margin-bottom: 10px;
}

.modal-container p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.modal-container ul {
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--muted);
}

.modal-container li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-container strong {
  color: #fff;
}


/* Media Queries */
@media (max-width: 1024px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .badge-container {
    justify-content: center;
  }
  
  .cta-row {
    justify-content: center;
  }
  
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .credibility-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .traction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pitch-deck-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 30px;
  }
  
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .links-contaniner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .headline {
    font-size: 2rem;
  }
  
  .sub {
    font-size: 1rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .traction-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .copyright-social-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .modal-container {
    padding: 24px;
    width: 95%;
  }
  
  .modal-container h1 {
    font-size: 1.6rem;
  }
}