:root{
  --bg:#050816;
  --surface:#101426;
  --surface-2:#171b31;
  --text:#f7f8ff;
  --muted:#aeb5cf;
  --gold:#ffd34d;
  --orange:#ff8a2a;
  --blue:#22a8ff;
  --cyan:#28d7ff;
  --green:#36d98b;
  --border:rgba(255,255,255,.12);
  --shadow:0 20px 60px rgba(0,0,0,.35);
}

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

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at 20% 10%,rgba(255,145,35,.14),transparent 30%),
    radial-gradient(circle at 80% 20%,rgba(35,150,255,.14),transparent 30%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}
.Business, div, header, section { box-sizing: border-box; }
.topbar {
  position: sticky;
  top: 0;
  zind-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  backdrop-filter: blur(12px);
  background: rgba(20,20,30,.75);
  border: 1px solid var(--border);
  border-top: 0;
}

.brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand span { color: var(--gold); }
.brand b { color: var(--blue); }

.controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.controls button {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.controls button:hover { border-color: var(--cyan); }

.hero {
  min-height: 22vh;
  display: flex;
  place-items: center;
  text-align: center;
  padding: 15px 20px;
}

.hero-logo {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(255,211,50,.2);
}

.hero-logo span { color: var(--gold); }
.hero-logo b { color: var(--cyan); }

.hero tagline {
  font-size: 22px;
  font-weight: 700;
  margin: 16px 0;
}

.hero-text {
  max-width: 800px;
  margin: 10px auto 30px;
  color: var(--muted);
  font-size: 18px;
}

/* ===== COMPACT HERO BANNER ===== */
.hero {
  min-height: auto !important;
  padding: 10px 20px 24px !important;
}

.hero-logo {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 12px !important;
  font-size: 0 !important;
  text-shadow: none !important;
}

.hero-logo img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .hero {
    padding: 8px 10px 18px !important;
  }

  .hero-logo img {
    height: 140px;
    border-radius: 10px;
  }
}

/* ===== END COMPACT HERO BANNER ===== */

/* ===== FINAL COMPACT BANNER 800x55 ===== */
.hero {
  min-height: auto !important;
  padding: 6px 10px 14px !important;
}

.hero-logo {
  width: 100% !important;
  max-width: 800px !important;
  margin: 0 auto 8px !important;
  font-size: 0 !important;
  text-shadow: none !important;
}

.hero-logo img {
  display: block !important;
  width: 100% !important;
  max-width: 800px !important;
  height: 55px !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 auto !important;
  border-radius: 8px !important;
}

@media (max-width: 768px) {
  .hero-logo img {
    max-width: 800px !important;
    height: 55px !important;
  }
}
/* ===== END FINAL COMPACT BANNER ===== */

/* ===== FINAL BANNER TEST: 1200 x 110 ===== */
.hero-logo {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto 8px !important;
}

.hero-logo img {
  display: block !important;
  width: 100% !important;
  max-width: 1200px !important;
  height: 110px !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 auto !important;
  border-radius: 10px !important;
}

@media (max-width: 768px) {
  .hero-logo img {
    width: 100% !important;
    max-width: 1200px !important;
    height: 110px !important;
  }
}

/* ===== END FINAL BANNER TEST ===== */

/* ===== HERO RESTRUCTURE — BANNER FULL ROW ===== */
.hero {
  display: grid !important;
  grid-template-columns: 1fr !important;
  width: 100% !important;
  min-height: auto !important;
  padding: 10px 0 24px !important;
  gap: 12px !important;
  align-items: start !important;
}

.hero-logo {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.hero-logo img {
  width: 100% !important;
  max-width: none !important;
  height: 110px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

.hero .tagline {
  grid-column: 1 !important;
  grid-row: 2 !important;
  width: 100% !important;
  margin: 0 !important;
  text-align: center !important;
}

.hero .hero-text {
  grid-column: 1 !important;
  grid-row: 3 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-align: center !important;
}

/* ===== HERO BANNER HEIGHT TEST ===== */
.hero-logo img {
  height: 150px !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* ===== HERO FINAL VISIBILITY FIX ===== */
.hero-logo img {
    width: 100% !important;
    max-width: none !important;
    height: 150px !important;
    object-fit: fill !important;
    object-position: center !important;
    display: block !important;
}

/* ===== HERO BANNER FULL IMAGE TEST ===== */
.hero-logo img {
    width: 100% !important;
    max-width: none !important;
    height: 150px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #050b18 !important;
    display: block !important;
}


/* ===== FINAL HERO BANNER FIT ===== */
.hero {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.hero-logo {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-logo img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 !important;
}

/* Keep hero text below the full artwork */
.hero .tagline {
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
}

@media (max-width: 768px) {
  .hero-logo img {
    width: 100% !important;
    height: auto !important;
  }
}

/* ===== FOUNDER CARD — HERO WIDTH SYSTEM ===== */
.founder-card,
.founder-section,
.founder-banner {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.founder-card img,
.founder-section img,
.founder-banner img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}

@media (max-width: 768px) {
  .founder-card,
  .founder-section,
  .founder-banner {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .founder-card img,
  .founder-section img,
  .founder-banner img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}


/* ===== OM NS AI — FINAL CARD DESIGN ===== */

.features-section{
  width:100%;
  max-width:1200px;
  margin:35px auto 45px;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  box-sizing:border-box;
}

.features-section .card{
  position:relative;
  min-height:190px;
  padding:28px 22px;
  border-radius:20px;
  background:linear-gradient(145deg,#171722,#0b1020);
  border:1px solid rgba(255,193,7,.35);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  text-align:center;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
  cursor:pointer;
  box-sizing:border-box;
}

.features-section .card:hover{
  transform:translateY(-6px);
  border-color:rgba(0,190,255,.8);
  box-shadow:0 15px 38px rgba(0,150,255,.25);
}

.features-section .icon{
  font-size:38px;
  margin-bottom:14px;
  line-height:1;
}

.features-section .card h3{
  margin:8px 0 10px;
  font-size:22px;
  font-weight:700;
  color:#fff;
}

.features-section .card p{
  margin:0;
  font-size:15px;
  line-height:1.55;
  color:#cfd3e6;
}

.features-section .card.premium{
  border:1px solid rgba(255,193,7,.75);
  background:linear-gradient(145deg,#21170b,#111421);
}

.features-section .badge{
  display:inline-block;
  margin-bottom:8px;
  padding:4px 12px;
  border-radius:20px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  color:#111;
  background:linear-gradient(90deg,#ffd54a,#ff9f1a);
}

/* ===== MOBILE ===== */

@media (max-width:900px){
  .features-section{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:0 14px;
  }

  .features-section .card{
    min-height:175px;
    padding:22px 15px;
  }

  .features-section .card h3{
    font-size:19px;
  }

  .features-section .card p{
    font-size:14px;
  }

  .features-section .icon{
    font-size:32px;
  }
}

@media (max-width:520px){
  .features-section{
    grid-template-columns:1fr;
    gap:14px;
    margin-top:25px;
  }

  .features-section .card{
    min-height:150px;
    padding:22px 18px;
    border-radius:18px;
  }

  .features-section .card h3{
    font-size:20px;
  }

  .features-section .card p{
    font-size:14px;
  }
}


/* ===== OM NS AI COMPACT ICON CARDS — FINAL ===== */

.features-section,
.features_section{
  width:100% !important;
  max-width:1200px !important;
  margin:35px auto 45px !important;
  padding:0 20px !important;
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:18px !important;
  box-sizing:border-box !important;
}

.features-section > .card,
.features_section > .card{
  min-width:0 !important;
  min-height:165px !important;
  padding:22px 18px !important;
  border-radius:18px !important;
  box-sizing:border-box !important;
  text-align:center !important;
  background:linear-gradient(145deg,#171722,#0b1020) !important;
  border:1px solid rgba(255,193,7,.35) !important;
  box-shadow:0 8px 25px rgba(0,0,0,.35) !important;
  overflow:hidden !important;
  transition:transform .25s ease,box-shadow .25s ease !important;
}

.features-section > .card:hover,
.features_section > .card:hover{
  transform:translateY(-5px) !important;
  box-shadow:0 14px 32px rgba(0,160,255,.22) !important;
}

.features-section .icon,
.features_section .icon{
  width:52px !important;
  height:52px !important;
  margin:0 auto 12px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:28px !important;
  border-radius:14px !important;
  background:rgba(0,170,255,.10) !important;
  border:1px solid rgba(0,200,255,.30) !important;
}

.features-section .card h3,
.features_section .card h3{
  margin:5px 0 8px !important;
  font-size:20px !important;
  line-height:1.2 !important;
  color:#fff !important;
}

.features-section .card p,
.features_section .card p{
  margin:0 auto !important;
  max-width:230px !important;
  font-size:13px !important;
  line-height:1.4 !important;
  color:#cfd4e6 !important;
  display:-webkit-box !important;
  -webkit-box-orient:vertical !important;
  -webkit-line-clamp:2 !important;
  overflow:hidden !important;
}

.features-section .premium,
.features_section .premium{
  border-color:rgba(255,193,7,.70) !important;
  background:linear-gradient(145deg,#24180a,#111421) !important;
}

.features-section .badge,
.features_section .badge{
  display:inline-block !important;
  margin-bottom:7px !important;
  padding:3px 10px !important;
  border-radius:20px !important;
  font-size:10px !important;
  font-weight:700 !important;
  letter-spacing:.8px !important;
}

/* TABLET */
@media(max-width:900px){
  .features-section,
  .features_section{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:14px !important;
    padding:0 14px !important;
  }
}

/* MOBILE */
@media(max-width:520px){
  .features-section,
  .features_section{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
    padding:0 10px !important;
    margin:25px auto 35px !important;
  }

  .features-section > .card,
  .features_section > .card{
    min-height:150px !important;
    padding:17px 10px !important;
    border-radius:16px !important;
  }

  .features-section .icon,
  .features_section .icon{
    width:44px !important;
    height:44px !important;
    font-size:23px !important;
    margin-bottom:9px !important;
  }

  .features-section .card h3,
  .features_section .card h3{
    font-size:17px !important;
  }

  .features-section .card p,
  .features_section .card p{
    font-size:12px !important;
    line-height:1.35 !important;
    -webkit-line-clamp:2 !important;
  }
}


/* ===== FINAL OM NS AI FEATURE CARDS ===== */

.features.section{
  width:100% !important;
  max-width:1200px !important;
  margin:35px auto 45px !important;
  padding:0 20px !important;
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:18px !important;
  box-sizing:border-box !important;
}

.features.section > .card{
  min-width:0 !important;
  min-height:165px !important;
  padding:22px 18px !important;
  border-radius:18px !important;
  text-align:center !important;
  box-sizing:border-box !important;
  background:linear-gradient(145deg,#171722,#0b1020) !important;
  border:1px solid rgba(255,193,7,.38) !important;
  box-shadow:0 8px 25px rgba(0,0,0,.35) !important;
  overflow:hidden !important;
}

.features.section > .card .icon{
  width:52px !important;
  height:52px !important;
  margin:0 auto 12px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:14px !important;
  font-size:28px !important;
  background:rgba(0,180,255,.10) !important;
  border:1px solid rgba(0,200,255,.30) !important;
}

.features.section > .card h3{
  margin:5px 0 8px !important;
  font-size:20px !important;
  line-height:1.2 !important;
  color:#fff !important;
}

.features.section > .card p{
  margin:0 auto !important;
  max-width:230px !important;
  font-size:13px !important;
  line-height:1.4 !important;
  color:#cfd4e6 !important;
}

.features.section > .card.premium{
  border-color:rgba(255,193,7,.75) !important;
  background:linear-gradient(145deg,#24180a,#111421) !important;
}

.features.section .badge{
  display:inline-block !important;
  margin-bottom:7px !important;
  padding:3px 10px !important;
  border-radius:20px !important;
  font-size:10px !important;
  font-weight:700 !important;
}

/* MOBILE */
@media(max-width:900px){
  .features.section{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:14px !important;
    padding:0 14px !important;
  }
}

@media(max-width:520px){
  .features.section{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
    padding:0 10px !important;
  }

  .features.section > .card{
    min-height:150px !important;
    padding:17px 10px !important;
  }

  .features.section > .card .icon{
    width:44px !important;
    height:44px !important;
    font-size:23px !important;
    margin-bottom:9px !important;
  }

  .features.section > .card h3{
    font-size:17px !important;
  }

  .features.section > .card p{
    font-size:12px !important;
    line-height:1.35 !important;
  }
}



/* ===== FOUNDER PROFILE CARD ===== */
.founder-profile-card{
  grid-column:1 / -1 !important;
  display:flex !important;
  align-items:center;
  gap:28px;
  text-align:left !important;
  min-height:260px;
  padding:22px !important;
  overflow:hidden;
}

.founder-card-photo{
  flex:0 0 250px;
  height:210px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,193,7,.45);
}

.founder-card-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

.founder-card-info{
  flex:1;
  min-width:0;
}

.founder-card-info .badge{
  display:inline-block;
  margin-bottom:8px;
}

.founder-card-info h3{
  margin:4px 0 8px;
}

.founder-role{
  font-weight:600;
  margin-bottom:10px;
}

.founder-card-info p{
  margin:0;
  line-height:1.6;
}

@media (max-width:700px){
  .founder-profile-card{
    grid-column:1 / -1 !important;
    flex-direction:column;
    gap:14px;
    padding:16px !important;
    min-height:0;
    text-align:center !important;
  }

  .founder-card-photo{
    width:100%;
    max-width:230px;
    height:180px;
    flex-basis:auto;
  }

  .founder-card-info{
    width:100%;
  }

  .founder-card-info h3{
    font-size:20px;
  }

  .founder-card-info p{
    font-size:14px;
  }
}

/* ===== FOUNDER PROFILE: HIDDEN UNTIL CARD CLICK ===== */
#founder.founder-hidden{
  display:none !important;
}

#founder.founder-revealed{
  display:block !important;
  animation: founderReveal .45s ease;
}

@keyframes founderReveal{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.founder-profile-card{
  cursor:pointer;
}

.founder-profile-card:focus{
  outline:2px solid rgba(0,200,255,.8);
  outline-offset:3px;
}


/* =========================================================
   ॐ NS AI — FINAL PREMIUM LAYOUT
   ========================================================= */

.features-section .card.premium{
  border-color:rgba(255,193,7,.85) !important;
  background:
    linear-gradient(145deg,
      rgba(55,39,5,.95),
      rgba(20,23,35,.98)) !important;
  box-shadow:
    0 0 24px rgba(255,193,7,.18),
    inset 0 0 25px rgba(255,193,7,.05) !important;
}

.features-section .card.premium h3{
  color:#ffc107 !important;
}

/* =========================================================
   FOUNDER + COMING SOON = 50 / 50
   ========================================================= */

.omnsai-bottom-final{
  width:100%;
  max-width:1200px;
  margin:45px auto 35px;
  padding:0 20px;
  box-sizing:border-box;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

/* Common card */
.founder-final-card,
.coming-final-card{
  min-width:0;
  box-sizing:border-box;
  border-radius:22px;
  overflow:hidden;
  position:relative;
}

/* =========================================================
   FOUNDER — GOLD
   ========================================================= */

.founder-final-card{
  padding:20px;
  border:1px solid rgba(255,193,7,.65);

  background:
    linear-gradient(145deg,
      rgba(25,25,30,.98),
      rgba(7,18,38,.98));

  box-shadow:
    0 12px 35px rgba(0,0,0,.35),
    0 0 22px rgba(255,193,7,.08);
}

.founder-final-photo img{
  width:100%;
  height:auto;
  max-height:340px;
  display:block;
  object-fit:cover;
  border-radius:16px;
}

.founder-final-info{
  padding-top:18px;
}

.final-label{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.8px;
  padding:5px 10px;
  border-radius:7px;
}

.gold-label{
  color:#ffc107;
  border:1px solid rgba(255,193,7,.55);
  background:rgba(255,193,7,.08);
}

.founder-final-info h2{
  margin:10px 0 6px;
}

.founder-final-role{
  color:#ffc107;
  font-weight:700;
  margin-bottom:12px;
}

.founder-final-info p{
  line-height:1.65;
}

.founder-final-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.founder-final-meta span{
  flex:1;
  min-width:90px;
  padding:10px;
  border:1px solid rgba(255,193,7,.28);
  border-radius:10px;
  text-align:center;
  font-size:13px;
}

/* =========================================================
   COMING SOON — GREEN PREMIUM
   ========================================================= */

.coming-final-card{
  padding:30px;

  border:1px solid rgba(80,255,120,.75);

  background:
    radial-gradient(circle at 80% 20%,
      rgba(0,255,100,.12),
      transparent 42%),
    linear-gradient(145deg,
      rgba(8,38,25,.98),
      rgba(5,22,30,.98));

  box-shadow:
    0 12px 35px rgba(0,0,0,.35),
    0 0 28px rgba(50,255,100,.13),
    inset 0 0 35px rgba(50,255,100,.035);

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.green-label{
  color:#45ff73;
  border:1px solid rgba(69,255,115,.55);
  background:rgba(69,255,115,.08);
  align-self:flex-start;
}

.coming-final-card h2{
  margin:12px 0;
}

.coming-final-card p{
  line-height:1.7;
}

.final-brand{
  margin-top:30px;
  padding-top:25px;
  text-align:center;
  border-top:1px solid rgba(69,255,115,.30);
}

.final-brand-name{
  font-size:44px;
  font-weight:900;
  letter-spacing:2px;
  line-height:1.05;
}

.brand-gold{
  color:#ffc107;
}

.brand-ai{
  color:#00c8ff;
}

.final-tagline{
  margin-top:10px;
  color:#45ff73;
  font-size:18px;
  font-weight:700;
  letter-spacing:1.5px;
}

.final-copy{
  margin-top:20px;
  font-size:12px;
  opacity:.75;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:768px){

  .omnsai-bottom-final{
    grid-template-columns:1fr;
    gap:18px;
    margin:28px auto 25px;
    padding:0 12px;
  }

  .founder-final-card{
    padding:15px;
  }

  .coming-final-card{
    padding:22px 17px;
  }

  .founder-final-photo img{
    max-height:none;
  }

  .final-brand-name{
    font-size:34px;
  }

  .final-tagline{
    font-size:15px;
  }

  .founder-final-meta{
    flex-direction:column;
  }
}

/* ===== OM NS AI FINAL BOTTOM LAYOUT ===== */

/* Bottom area: Founder + Coming Soon */
.omnsai-bottom-final{
  width:100% !important;
  max-width:1200px !important;
  margin:25px auto 10px !important;
  padding:0 20px !important;
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:22px !important;
  box-sizing:border-box !important;
}

/* Each bottom panel = width of TWO normal cards */
.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel{
  grid-column:span 2 !important;
  width:100% !important;
  height:190px !important;
  min-height:190px !important;
  margin:0 !important;
  box-sizing:border-box !important;
  border-radius:20px !important;
}

/* Founder */
.omnsai-bottom-final .founder-bottom-panel{
  overflow:hidden !important;
}

/* Coming Soon */
.omnsai-bottom-final .coming-bottom-panel{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  padding:18px !important;
  background:linear-gradient(145deg,#063d2b,#006b46,#073d30) !important;
  border:1px solid rgba(0,255,150,.70) !important;
  box-shadow:0 10px 30px rgba(0,255,150,.18) !important;
}

/* Coming Soon content centered */
.omnsai-bottom-final .coming-bottom-panel h2,
.omnsai-bottom-final .coming-bottom-panel p{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Brand centered */
.omnsai-bottom-final .bottom-brand{
  width:100% !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  margin:10px auto 0 !important;
}

.omnsai-bottom-final .bottom-brand-name{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  font-size:28px !important;
  font-weight:900 !important;
  line-height:1 !important;
  margin:0 auto !important;
}

.omnsai-bottom-final .brand-gold{
  color:#ffc107 !important;
}

.omnsai-bottom-final .brand-ai{
  color:#00d9ff !important;
}

.omnsai-bottom-final .bottom-tagline{
  width:100% !important;
  text-align:center !important;
  color:#39ff88 !important;
  margin:8px auto 0 !important;
  font-weight:700 !important;
}

.omnsai-bottom-final .bottom-copyright{
  width:100% !important;
  text-align:center !important;
  color:#fff !important;
  font-size:12px !important;
  margin:7px auto 0 !important;
}

/* Remove duplicate old footer only */
body > footer{
  display:none !important;
}

/* Mobile */
@media(max-width:700px){
  .omnsai-bottom-final{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:14px !important;
    padding:0 12px !important;
  }

  .omnsai-bottom-final .founder-bottom-panel,
  .omnsai-bottom-final .coming-bottom-panel{
    grid-column:span 1 !important;
    height:190px !important;
    min-height:190px !important;
  }

  .omnsai-bottom-final .bottom-brand-name{
    font-size:22px !important;
  }
}


/* ===== OMNSAI FINAL 50/50 + CENTER LOCK ===== */

/* Desktop: Founder + Coming Soon remain equal 50/50 */
.omnsai-bottom-final{
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
}

.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel{
  grid-column:span 2 !important;
  width:100% !important;
  box-sizing:border-box !important;
}

/* Founder content centered like Coming Soon */
.omnsai-bottom-final .founder-bottom-panel{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}

/* Coming Soon stays centered */
.omnsai-bottom-final .coming-bottom-panel{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}

/* Bottom OMNS AI branding centered */
.omnsai-bottom-final .bottom-brand,
.omnsai-bottom-final .bottom-brand-name,
.omnsai-bottom-final .bottom-tagline,
.omnsai-bottom-final .bottom-copyright{
  width:100% !important;
  text-align:center !important;
}

/* Branding colors: OMNS together, AI separate */
.omnsai-bottom-final .brand-gold{
  color:#ffc107 !important;
}

.omnsai-bottom-final .brand-ai{
  color:#00d9ff !important;
}

/* Copyright centered */
.omnsai-bottom-final .bottom-copyright{
  margin-left:auto !important;
  margin-right:auto !important;
}

/* ===== END FINAL 50/50 + CENTER LOCK ===== */

/* ===== 50/50 FINAL CARD LOCK ===== */
.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel{
  grid-column: span 1 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
/* ===== END 50/50 FINAL CARD LOCK ===== */

/* ===== FINAL WIDTH FIX ===== */
.omnsai-bottom-final{
  width:calc(100vw - 40px) !important;
  max-width:none !important;
  margin-left:20px !important;
  margin-right:20px !important;
}

.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel{
  width:100% !important;
  min-width:0 !important;
}

.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel{
  grid-column:span 1 !important;
}

/* ===== FOUNDER + COMING SOON FINAL 50/50 ===== */
.omnsai-bottom-final{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  width:calc(100vw - 40px) !important;
  max-width:none !important;
  margin-left:20px !important;
  margin-right:20px !important;
}

.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel{
  width:100% !important;
  grid-column:auto !important;
}

/* Hide Founder personal meta: DOB / BA / Mumbai */
.omnsai-bottom-final .founder-final-meta{
  display:none !important;
}

/* ===== PREMIUM 4-CARD GRID / 2-CARD PAIR LAYOUT ===== */
.omnsai-bottom-final{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  width:100% !important;
  max-width:1200px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel{
  grid-column:span 2 !important;
  width:100% !important;
  min-width:0 !important;
}

@media (max-width:768px){
  .omnsai-bottom-final{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

  .omnsai-bottom-final .founder-bottom-panel,
  .omnsai-bottom-final .coming-bottom-panel{
    grid-column:span 1 !important;
  }
}

/* ===== FINAL: BOTTOM 50/50 + SAME HEIGHT LOCK ===== */
.omnsai-bottom-final{
  width:100% !important;
  max-width:1200px !important;
  grid-column:1 / -1 !important;
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
  box-sizing:border-box !important;
}

.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel{
  grid-column:auto !important;
  width:100% !important;
  height:190px !important;
  min-height:190px !important;
  max-height:190px !important;
  box-sizing:border-box !important;
  overflow:hidden !important;
}

/* ===== END FINAL 50/50 + SAME HEIGHT ===== */
/* FINAL HEIGHT ONLY */
.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel,
.omnsai-bottom-final .founder-final-card{
  height:300px !important;
  min-height:300px !important;
  max-height:300px !important;
}

.omnsai-bottom-final .founder-bottom-panel img,
.omnsai-bottom-final .founder-final-card img{
  height:auto !important;
  max-height:150px !important;
  object-fit:contain !important;
}

/* ===== UNIVERSAL CARD HEIGHT LOCK ===== */
.omnsai-bottom-final .founder-bottom-panel,
.omnsai-bottom-final .coming-bottom-panel,
.omnsai-bottom-final .founder-final-card,
.omnsai-bottom-final .coming-final-card{
  height:190px !important;
  min-height:190px !important;
  max-height:190px !important;
  box-sizing:border-box !important;
  overflow:hidden !important;
}

/* Bottom cards must match the standard card height */
.omnsai-bottom-final{
  align-items:stretch !important;
}


/* ===== FOUNDER UPPER TICKET — LOCKED DESIGN ===== */
.founder-upper-ticket{
  position:relative;
  width:100%;
  height:300px;
  min-height:300px;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  gap:28px;
  padding:26px 30px 42px;
  border:1px solid #ffc107;
  border-radius:22px;
  background:linear-gradient(135deg,#111827,#07111f);
  box-shadow:0 0 24px rgba(255,193,7,.22);
  cursor:pointer;
  overflow:hidden;
}
.founder-upper-photo-wrap{
  width:150px;
  height:210px;
  min-width:150px;
  border:2px solid #ffc107;
  border-radius:18px;
  overflow:hidden;
  background:#111827;
}
.founder-upper-photo{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center 28%;
}
.founder-upper-info{flex:1;min-width:0}
.founder-upper-badge{
  display:inline-block;
  padding:7px 16px;
  border:1px solid #ffc107;
  border-radius:9px;
  color:#ffc107;
  font-weight:800;
  letter-spacing:.5px;
  margin-bottom:12px;
}
.founder-upper-info h2{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.15;
}
.founder-upper-role{
  color:#ffc107;
  font-size:18px;
  font-weight:700;
  margin-bottom:16px;
}
.founder-upper-role span{color:#00aaff}
.founder-upper-place{
  color:#fff;
  font-size:17px;
}
.founder-upper-hint{
  position:absolute;
  left:0;
  right:0;
  bottom:12px;
  text-align:center;
  color:#fff;
  font-size:14px;
}
.founder-profile-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:25px;
  background:rgba(0,0,0,.82);
  backdrop-filter:blur(8px);
}
.founder-profile-modal.open{display:flex}
.founder-profile-modal-inner{
  position:relative;
  width:min(1100px,96vw);
  max-height:92vh;
  overflow:auto;
}
.founder-profile-close{
  position:absolute;
  right:12px;
  top:12px;
  z-index:100001;
  width:38px;
  height:38px;
  border:1px solid #ffc107;
  border-radius:50%;
  background:#07111f;
  color:#fff;
  font-size:25px;
  cursor:pointer;
}
.founder-profile-modal-inner .founder-final-card{
  width:100% !important;
  max-width:none !important;
  box-sizing:border-box;
}

@media (max-width:768px){
  .founder-upper-ticket{
    height:300px;
    min-height:300px;
    padding:20px 18px 42px;
    gap:16px;
  }
  .founder-upper-photo-wrap{
    width:105px;
    min-width:105px;
    height:155px;
  }
  .founder-upper-info h2{font-size:21px}
  .founder-upper-role{font-size:14px}
  .founder-upper-place{font-size:14px}
}

/* ===== FINAL LOCK: FOUNDER + COMING SOON SAME HEIGHT ===== */
.omnsai-bottom-final .founder-upper-ticket,
.omnsai-bottom-final .coming-final-card{
  height:300px !important;
  min-height:300px !important;
  box-sizing:border-box !important;
}

/* Copyright stays outside the cards */
.omnsai-bottom-final .bottom-copyright{
  width:100% !important;
  text-align:center !important;
  margin:0 auto !important;
}

/* ===== FINAL BOTTOM COPYRIGHT ===== */
.site-copyright{
  width:100%;
  text-align:center;
  margin:18px 0 0 0;
  padding:0 0 18px 0;
  box-sizing:border-box;
  font-size:13px;
  line-height:1.4;
  color:#ffffff;
  opacity:.9;
}

/* ===== BOTTOM CARDS + COPYRIGHT RESPONSIVE FINAL ===== */

.omnsai-bottom-final{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  box-sizing:border-box;
}

.omnsai-bottom-final .founder-final-card,
.omnsai-bottom-final .coming-final-card{
  width:100%;
  min-width:0;
  height:300px;
  min-height:300px;
  max-height:300px;
  box-sizing:border-box;
  overflow:hidden;
}

/* COPYRIGHT - outside both cards */
.site-copyright{
  display:block !important;
  width:100% !important;
  clear:both;
  text-align:center;
  margin:18px 0 0 0 !important;
  padding:0 0 20px 0 !important;
  box-sizing:border-box;
  font-size:13px;
  line-height:1.4;
  color:#ffffff;
}

/* MOBILE */
@media (max-width:768px){
  .omnsai-bottom-final{
    grid-template-columns:1fr;
    gap:14px;
  }

  .omnsai-bottom-final .founder-final-card,
  .omnsai-bottom-final .coming-final-card{
    width:100%;
    height:300px;
    min-height:300px;
    max-height:300px;
  }

  .site-copyright{
    margin-top:14px !important;
    padding-bottom:18px !important;
    font-size:12px;
  }
}

/* ===== MOBILE: 10-TICKET PREMIUM GRID ===== */
@media (max-width:768px){

  .omnsai-bottom-final{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
    width:100% !important;
  }

  .omnsai-bottom-final .founder-final-card,
  .omnsai-bottom-final .coming-final-card{
    width:100% !important;
    min-width:0 !important;
    height:210px !important;
    min-height:210px !important;
    max-height:210px !important;
    padding:14px !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
  }

  /* Founder photo hidden only on mobile */
  .omnsai-bottom-final .founder-final-card img{
    display:none !important;
  }

  .omnsai-bottom-final .founder-final-card h1,
  .omnsai-bottom-final .founder-final-card h2,
  .omnsai-bottom-final .founder-final-card h3{
    font-size:18px !important;
    line-height:1.15 !important;
  }

  .omnsai-bottom-final .founder-final-card p,
  .omnsai-bottom-final .coming-final-card p{
    font-size:12px !important;
    line-height:1.35 !important;
  }

  .omnsai-bottom-final .coming-final-card h2{
    font-size:18px !important;
    line-height:1.15 !important;
  }

  .site-copyright{
    margin-top:14px !important;
    font-size:11px !important;
  }
}

/* ===== MOBILE BOTTOM CARDS - ACTUAL IDs ===== */
@media (max-width:768px){

  #founder,
  #coming{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    height:220px !important;
    min-height:220px !important;
    max-height:220px !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
  }

  #founder{
    display:block !important;
    padding:14px !important;
  }

  #founder img{
    width:90px !important;
    height:110px !important;
    object-fit:cover !important;
    float:left !important;
    margin:0 12px 8px 0 !important;
    border-radius:12px !important;
  }

  #founder h1,
  #founder h2,
  #founder h3{
    font-size:17px !important;
    line-height:1.15 !important;
    margin:6px 0 !important;
  }

  #founder p,
  #founder div{
    max-width:100% !important;
    font-size:11px !important;
    line-height:1.3 !important;
  }

  #coming{
    padding:14px !important;
  }

  #coming h2{
    font-size:18px !important;
    line-height:1.15 !important;
    margin:8px 0 !important;
  }

  #coming p{
    font-size:11px !important;
    line-height:1.35 !important;
  }

  #coming .final-brand{
    margin-top:8px !important;
  }

  #coming .final-brand-name{
    font-size:22px !important;
  }

  .site-copyright{
    display:block !important;
    width:100% !important;
    text-align:center !important;
    margin:12px 0 18px !important;
    font-size:11px !important;
  }
}
