
:root {
  color-scheme: light;
  --bro-blue: #0ea5e9;
  --bro-blue-dark: #0284c7;
  --ink: #0f172a;
  --muted: #475569;
  --soft: #f8fbfd;
  --line: #e2e8f0;
  --white: #ffffff;
  --warm: #d4a76a;
  --green: #10b981;
  font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--soft);
  color: var(--ink);
  font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.55);
  outline-offset: 3px;
}

.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(20px);
}

.nav-inner {
  width: min(1280px, calc(100% - 32px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-left,
.brand,
.nav-actions,
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-left,
.brand {
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bro-blue-dark);
}

.desktop-nav {
  gap: 32px;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.desktop-nav a:hover {
  color: var(--bro-blue);
}

.nav-actions {
  gap: 12px;
}

.nav-cta,
.primary-button,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--bro-blue);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
  cursor: pointer;
}

.nav-cta:hover,
.primary-button:hover,
.mobile-cta:hover {
  background: var(--bro-blue-dark);
  transform: translateY(-1px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  padding: 12px 28px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: #334155;
}

.mobile-menu {
  display: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  padding: 56px 0 48px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 46%, #ecfeff 100%);
}

.hero-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.7;
  filter: blur(80px);
}

.hero-bg-one {
  top: -140px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: rgba(14, 165, 233, 0.18);
}

.hero-bg-two {
  bottom: -180px;
  left: -140px;
  width: 520px;
  height: 520px;
  background: rgba(251, 146, 60, 0.16);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 840px;
  margin: 0 auto 88px;
  text-align: center;
}

.badge,
.section-chip,
.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--bro-blue);
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 800;
}

.spark {
  font-size: 1.05rem;
  line-height: 1;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 3.75rem;
  line-height: 1.04;
  font-weight: 950;
}

.hero-copy p {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 600;
}

.hero-pills,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-pills {
  margin-top: 28px;
}

.hero-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #334155;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-pills span + span {
  border-color: rgba(14, 165, 233, 0.2);
  background: rgba(14, 165, 233, 0.06);
  color: var(--bro-blue);
}

.hero-actions {
  margin-top: 28px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  min-height: 228px;
  overflow: visible;
  border: 1px solid;
  border-radius: 32px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 66%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.28);
}

.step-card img {
  position: absolute;
  z-index: 2;
  top: -24px;
  right: 0;
  width: 64%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.16));
}

.step-card span,
.step-card h3,
.step-card p {
  position: relative;
  z-index: 3;
}

.step-card span {
  margin-bottom: 4px;
  color: rgba(71, 85, 105, 0.85);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.step-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 950;
}

.step-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
}

.rose {
  border-color: rgba(254, 205, 211, 0.9);
  background: linear-gradient(135deg, #ffe4e6, #fff1f2);
}

.orange {
  border-color: rgba(254, 215, 170, 0.9);
  background: linear-gradient(135deg, #ffedd5, #fffbeb);
}

.amber {
  border-color: rgba(253, 230, 138, 0.9);
  background: linear-gradient(135deg, #fef3c7, #fefce8);
}

.lime {
  border-color: rgba(217, 249, 157, 0.9);
  background: linear-gradient(135deg, #ecfccb, #f0fdf4);
}

.emerald {
  border-color: rgba(167, 243, 208, 0.9);
  background: linear-gradient(135deg, #d1fae5, #f0fdf4);
}

.waitlist-section,
.trust-section,
.coverage-section,
.features-section,
.video-section,
.stories-section,
.faq-section {
  padding: 64px 0;
}

.waitlist-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.waitlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.waitlist-grid h2,
.section-heading h2,
.coverage-grid h2,
.faq-shell h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 2.85rem;
  line-height: 1.05;
  font-weight: 950;
}

.waitlist-grid p,
.section-heading p,
.coverage-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.1);
}

label {
  display: grid;
  gap: 8px;
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #fbfdff;
  color: #0f172a;
  padding: 13px 14px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--bro-blue);
  outline: 3px solid rgba(14, 165, 233, 0.18);
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: #059669;
}

.form-status.error {
  color: #b42318;
}

.centered {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.trust-section,
.features-section,
.stories-section {
  background: var(--white);
}

.trust-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.trust-grid article,
.story-grid article {
  border: 1px solid;
  border-radius: 24px;
  padding: 28px;
}

.trust-grid article:nth-child(1) {
  border-color: #dbeafe;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.trust-grid article:nth-child(2) {
  border-color: #ffedd5;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.trust-grid article:nth-child(3) {
  border-color: #d1fae5;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 950;
}

.trust-grid h3,
.feature-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 950;
}

.trust-grid article {
  text-align: center;
}

.trust-grid p,
.feature-card p,
.story-grid p,
.faq-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.blue {
  background: var(--bro-blue);
}

.warm {
  background: #f59e0b;
}

.green {
  background: #10b981;
}

.purple {
  background: #7c3aed;
}

.translucent {
  background: rgba(255, 255, 255, 0.22);
}

.coverage-section {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.06), #ecfeff);
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.mini-chip {
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.districts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.districts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #334155;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
}

.kerala-map {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.features-section {
  position: relative;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
  gap: 24px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 36px;
}

.feature-card.large {
  grid-column: span 2;
}

.feature-card h3 {
  font-size: 1.55rem;
}

.green-card {
  background: linear-gradient(135deg, #10b981, #0d9488);
}

.green-card h3,
.green-card p,
.dark-card h3,
.dark-card p {
  color: var(--white);
}

.green-card p {
  color: #ecfdf5;
}

.light-card {
  border: 1px solid;
}

.orange-card {
  border-color: #fed7aa;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.purple-card {
  border-color: #ddd6fe;
  background: linear-gradient(135deg, #faf5ff, #eef2ff);
}

.dark-card {
  background: linear-gradient(135deg, #1e293b, #020617);
}

.video-section {
  background: var(--soft);
}

.video-frame {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 32px;
  background: #020617;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.12));
  transition: opacity 0.25s ease;
}

.video-overlay.hidden {
  pointer-events: none;
  opacity: 0;
}

.play-button {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 2rem;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.video-overlay h3 {
  margin: 24px 0 8px;
  font-size: 1.6rem;
  color: var(--white);
}

.video-overlay p {
  margin: 0;
  color: #e2e8f0;
  font-weight: 700;
}

.story-grid article {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  border-color: #dbeafe;
  background: var(--soft);
}

.quote {
  margin-bottom: 14px;
  color: rgba(212, 167, 106, 0.65);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.blue-quote {
  color: rgba(14, 165, 233, 0.5);
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.person span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: var(--bro-blue);
  font-weight: 950;
}

.person strong,
.person small {
  display: block;
}

.person strong {
  color: var(--ink);
}

.person small {
  margin-top: 2px;
  color: #64748b;
}

.faq-section {
  background: var(--soft);
}

.faq-shell {
  width: min(896px, calc(100% - 32px));
  margin: 0 auto;
}

.faq-shell h2 {
  margin: 0 0 40px;
  text-align: center;
  font-size: 2rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-item.open {
  border-color: rgba(14, 165, 233, 0.4);
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.chevron {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
  background: var(--bro-blue);
  color: var(--white);
}

.faq-panel {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.open .faq-panel {
  display: block;
}

.faq-footer {
  margin-top: 40px;
  text-align: center;
}

.faq-footer p {
  color: var(--muted);
  font-weight: 700;
}

.faq-footer a {
  display: inline-flex;
  border-radius: 999px;
  background: #e2e8f0;
  color: var(--ink);
  padding: 12px 28px;
  font-weight: 900;
}

.broai-footer {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #f4ecd5;
  padding: 64px 0 220px;
}

.broai-footer > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.footer-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-intro img {
  width: 156px;
  height: 156px;
  object-fit: contain;
}

.footer-intro p,
.footer-grid a,
.footer-bottom p,
.datavedam-credit {
  color: #1e293b;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.35);
}

.footer-grid h4 {
  margin: 42px 0 22px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 950;
}

.footer-grid a {
  display: block;
  margin: 0 0 18px;
}

.footer-grid a:hover {
  color: var(--bro-blue);
  text-decoration: underline;
}

.footer-bottom {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 20px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 8px 12px;
  backdrop-filter: blur(8px);
}

.datavedam-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
  padding: 7px 12px 7px 14px;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.datavedam-credit:hover {
  color: var(--bro-blue-dark);
  transform: translateY(-1px);
}

.datavedam-credit span {
  white-space: nowrap;
}

.datavedam-credit img {
  width: 118px;
  height: 30px;
  object-fit: contain;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu.open {
    display: grid;
    gap: 8px;
    border-top: 1px solid var(--line);
    background: var(--white);
    padding: 16px;
  }

  .mobile-menu a {
    border-radius: 12px;
    color: var(--muted);
    padding: 12px 16px;
    font-weight: 900;
  }

  .mobile-cta {
    color: var(--white) !important;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 48px;
  }

  .step-card:last-child {
    grid-column: span 2;
  }

  .waitlist-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card.large {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .nav-inner {
    min-height: 72px;
  }

  .brand span {
    font-size: 1.3rem;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .hero-section {
    min-height: auto;
    padding: 42px 0 44px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero-copy {
    margin-bottom: 70px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .steps-grid {
    gap: 44px 12px;
  }

  .step-card {
    min-height: 184px;
    border-radius: 28px;
    padding: 16px;
  }

  .step-card img {
    top: -20px;
    width: 58%;
  }

  .waitlist-grid h2,
  .section-heading h2,
  .coverage-grid h2 {
    font-size: 2.1rem;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .feature-card {
    border-radius: 28px;
    padding: 28px;
  }

  .broai-footer {
    min-height: 560px;
    padding-top: 44px;
  }

  .broai-footer > img {
    object-position: 10% 20%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid h4 {
    margin-top: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom p {
    max-width: 320px;
    padding: 7px 10px;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .datavedam-credit {
    max-width: 340px;
    padding: 7px 10px 7px 12px;
    font-size: 0.9rem;
  }

  .datavedam-credit img {
    width: 104px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
