:root {
  /* Brand palette derived from logo */
  --bm-bg: #0b0f17;
  /* near-black cosmic */
  --bm-bg-2: #0e1220;
  /* slightly lighter */
  --bm-teal-1: #2ce6c9;
  /* logo gradient start */
  --bm-teal-2: #18b6b9;
  /* logo gradient end */
  --bm-purple: #6a2cd8;
  /* accent like “Designed For You.” */
  --bm-white: #ffffff;
  --bm-muted: #98a2b3;
  /* text-muted */
  --bm-card: #0f1524;
  /* card background */
  --bm-card-border: #1f2a44;
  /* card border */
  --radius-xl: 20px;
  --radius-lg: 16px;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 14px 32px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.35);
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bm-bg);
  color: var(--bm-white);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(11, 15, 23, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  height: 34px;
}

.nav-actions a {
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-actions a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Cosmic hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* stars */
.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -2;
  background: radial-gradient(1200px 500px at 15% -10%,
      rgba(44, 230, 201, 0.18),
      transparent 60%),
    radial-gradient(1100px 600px at 85% 0%,
      rgba(24, 182, 185, 0.18),
      transparent 60%),
    radial-gradient(800px 800px at 50% 50%,
      rgba(106, 44, 216, 0.12),
      transparent 60%),
    linear-gradient(180deg, #0b0f17 0%, #0e1220 60%, #0b0f17 100%);
  filter: saturate(120%);
}

/* wave ribbon */
.hero::after {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  top: 10%;
  height: 70%;
  z-index: -1;
  opacity: 0.45;
  background: radial-gradient(closest-side,
      rgba(44, 230, 201, 0.25),
      transparent 60%) 0 0/50% 100% no-repeat,
    radial-gradient(closest-side,
      rgba(106, 44, 216, 0.25),
      transparent 60%) 100% 0/50% 100% no-repeat;
  transform: skewY(-4deg);
  filter: blur(22px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 96px;
}

.kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bm-muted);
  font-weight: 800;
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.02;
  margin: 0.35em 0 0.15em;
  font-weight: 900;
}

.hero h1 .accent {
  color: var(--bm-purple);
}

.hero p {
  color: var(--bm-muted);
  font-size: clamp(16px, 1.6vw, 18px);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--bm-teal-1), var(--bm-teal-2));
  color: #042326;
  border: 0;
  box-shadow: 0 10px 30px rgba(44, 230, 201, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.02);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
}

.subcaption {
  margin-top: 14px;
  color: var(--bm-muted);
  font-weight: 600;
}

.mock {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 12px;
}

.mock img,
.mock video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 8px);
}

section {
  padding: 84px 0;
}

.section-title {
  font-size: clamp(24px, 2.6vw, 36px);
  margin: 0 0 12px;
  font-weight: 900;
}

.section-sub {
  color: var(--bm-muted);
  max-width: 72ch;
  margin-top: 10px;
}

/* Audience */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: var(--bm-card);
  border: 1px solid var(--bm-card-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--bm-teal-1), var(--bm-teal-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Features */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.feature {
  background: var(--bm-card);
  border: 1px solid var(--bm-card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.bar {
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--bm-teal-1), var(--bm-teal-2));
  margin-bottom: 14px;
  opacity: 0.95;
}

/* Value/Trust */
.icons-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bm-card);
  border: 1px solid var(--bm-card-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.value i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bm-teal-1), var(--bm-teal-2));
  box-shadow: 0 6px 16px rgba(44, 230, 201, 0.25);
}

/* Proof */
.proof {
  display: grid;
  /* grid-template-columns: 1.2fr 0.8fr; */
  gap: 26px;
  align-items: center;
}

.quote {
  background: var(--bm-card);
  border: 1px solid var(--bm-card-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.screens div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  aspect-ratio: 16/10;
}

/* Signup */
.signup {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: center;
}

form {
  background: var(--bm-card);
  border: 1px solid var(--bm-card-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 700;
}

input,
select {
  background: rgba(255, 255, 255, 0.04);
  color: var(--bm-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

input::placeholder {
  color: #9aa3b2;
}

input:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(44, 230, 201, 0.15);
  border-color: var(--bm-teal-1);
}

.full {
  grid-column: 1 / -1;
}

.form-cta {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-wide {
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bm-teal-1), var(--bm-teal-2));
  color: #042326;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.btn-wide:hover {
  filter: brightness(1.04);
}

.trustline {
  color: var(--bm-muted);
  font-size: 14px;
  margin-top: 8px;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

details {
  background: var(--bm-card);
  border: 1px solid var(--bm-card-border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

/* Bottom CTA */
.bottom-cta {
  background: linear-gradient(135deg, var(--bm-teal-1), var(--bm-teal-2));
  border-radius: 24px;
  color: #042326;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

footer {
  padding: 40px 0;
  color: var(--bm-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .icons-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof {
    grid-template-columns: 1fr;
  }

  .signup {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Fade-in */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.container {
  margin-top: 30px;
}

.hero_wrap .container {
  max-height: 100vh;

}

.hero_wrap {
  position: relative;

  overflow: hidden;
  padding: 160px 20px 140px;
  text-align: center;
  color: #fff;
}

.hero_wrap video {
  height: 100vh;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .6) 70%, rgba(0, 0, 0, 0) 100%);
  ;
  z-index: 2;
}

.hero_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 40px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero_logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.hero_logo img {
  height: 42px;
  width: auto;
}

.hero_content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto;
}

.tagline {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffc107;
}

.hero_content h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
}

.hero_content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero_btns a {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  margin: 0 8px;
}

.btn_yellow {
  background: #ffc107;
  color: #fff;
}

.btn_outline {
  border: 2px solid #fff;
  color: #fff;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-dialog {
  max-width: 800px;
  width: 100%;
  margin: 0
}

.modal-content {
  width: 100%;
  ;
  border-radius: .5rem;
  border: 0px;
}

.modal-backdrop {
  opacity: 0.9;
  filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: .5;
  z-index: 1050
}

#content_frame {
  overflow-y: scroll;
  max-height: 100vh;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#content_frame::-webkit-scrollbar {
  display: none;
}

.btn_yellow:hover {
  background: #fff;
  color: #ffc107;
  transform: scale(1.1) !important;
}

.btn_login:hover {
  color: #fff;
  background: #ffc107;
  border-color: #ffc107;
  transform: scale(1.1) !important;

}

.ceo-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.ceo-card {
  display: flex;
  align-items: center;
  gap: 50px;
  color: #fff;
  background: var(--bm-card);
  border: 1px solid var(--bm-card-border);
  border-radius: var(--radius-lg);
  padding: 50px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), 0 0 40px rgba(0, 255, 210, 0.06);
  transition: 0.3s;
}

.ceo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22), 0 0 55px rgba(0, 255, 210, 0.1);
}

.ceo-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.ceo-info {
  flex: 1;
}

.ceo-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

.ceo-quote {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;

}

.ceo-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 768px) {
  .ceo-card {
    flex-direction: column;
    text-align: center;
    padding: 35px;
  }

  .ceo-photo img {
    width: 200px;
    height: 200px;
  }

  .ceo-title {
    font-size: 26px;
  }

  .ceo-quote {
    font-size: 16px;
  }
}

.ceo-photo img {
  transition: transform 0.5s linear;
}


.owl-carousel {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
}

.owl-carousel::-webkit-scrollbar {
  display: none;
}

.owl-carousel.project-owl .proj-slide {
  flex: 0 0 100%;
  height: 260px;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 14px;
  padding: 0px;
  scroll-snap-align: start;
  color: #fff;
}

.owl-carousel.photo-owl .photo-card {
  flex: 0 0 220px;
  /* You can adjust width */
  height: 180px;
  border-radius: 14px;
  background-size: cover !important;
  background-position: center !important;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  scroll-snap-align: start;
}

@media (min-width: 576px) {
  .owl-carousel.project-owl .proj-slide {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (min-width: 992px) {
  .owl-carousel.project-owl .proj-slide {
    flex: 0 0 calc(33.33% - 20px);
  }
}

.imgs_slides {
  padding: 20px 0;
}

.photo-owl .photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 0;
  height: 350px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .4);

}



.photo-owl .photo-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.photo-owl .photo-card h4 {
  font-size: 20px;
  margin: 10px 0 0 0;
  font-weight: 600;
  padding: 0 10px;
  position: absolute;
  bottom: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.project-owl .proj-slide {
  height: 350px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 10px;
}

.project-owl .proj-slide:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 25%);
  z-index: 0;
}

.project-owl .proj-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  padding-bottom: 5px;
  color: #fff;
}

.project-owl .proj-content h2 {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 600;
}

.project-owl .proj-content p {
  margin: 0 0 10px;
  font-size: 14px;
  opacity: 0.9;
}

.proj-content {
  background: rgba(0, 0, 0, 0.55);
  padding: 12px 16px;
  display: inline-block;
}