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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,sans-serif;
  background:#05070d;
  color:white;
  line-height:1.6;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:100;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:20px 7%;

  background:rgba(5,7,13,.92);
  backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo img{
  height:68px;
}

nav{
  display:flex;
  align-items:center;
  gap:28px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  transition:.2s ease;
}

nav a:hover{
  color:#0d7cff;
}

.nav-btn{
  background:#0d7cff;
  padding:12px 20px;
  border-radius:10px;
}

/* HERO */

.hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;

  align-items:center;

  padding:100px 7%;

  background:
    linear-gradient(
      90deg,
      rgba(5,7,13,.92),
      rgba(5,7,13,.72)
    ),
    url('https://thenextlevelinnovations.com/wp-content/uploads/2026/05/tnli-fair-hero-bg.png');

  background-size:cover;
  background-position:center;
}

.eyebrow{
  color:#0d7cff;
  font-weight:800;
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:14px;
}

.hero h1{
  font-size:clamp(48px,6vw,88px);
  line-height:1;
  margin-bottom:24px;

  text-shadow:
    0 0 20px rgba(13,124,255,.15);
}

.hero p{
  font-size:22px;
  color:#c8cedb;
  max-width:700px;
  margin-bottom:34px;
}

.hero-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* BUTTONS */

.btn{
  background:#0d7cff;
  color:white;
  text-decoration:none;

  padding:16px 28px;
  border-radius:12px;

  font-weight:700;

  display:inline-block;

  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-3px);

  box-shadow:
    0 0 28px rgba(13,124,255,.28);
}

.btn-outline{
  border:1px solid rgba(255,255,255,.25);

  color:white;
  text-decoration:none;

  padding:16px 28px;
  border-radius:12px;

  font-weight:700;
}

/* HERO CARD */

.hero-card{
  background:rgba(11,17,29,.96);

  border:1px solid rgba(255,255,255,.08);

  border-radius:24px;

  padding:34px;

  box-shadow:
    0 0 40px rgba(0,0,0,.35),
    0 0 80px rgba(13,124,255,.08);
}

.hero-card h3{
  font-size:28px;
  margin-bottom:24px;
}

.hero-item{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px 0;

  border-bottom:1px solid rgba(255,255,255,.06);
}

.hero-item span{
  color:#0d7cff;
  font-weight:700;
}

.hero-item.alert strong{
  color:#ffb347;
}

/* FEATURE STRIP */

.feature-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:20px;

  padding:34px 7%;

  background:#0b111d;

  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.feature-strip div{
  border-left:1px solid rgba(13,124,255,.35);
  padding-left:18px;
}

.feature-strip strong{
  display:block;
  margin-bottom:6px;
}

.feature-strip span{
  color:#c8cedb;
  font-size:14px;
}

/* GENERAL SECTION */

.section{
  padding:100px 7%;
}

.alt-section{
  background:#0b111d;
}

.section-heading{
  margin-bottom:44px;
}

.section-heading h2{
  font-size:48px;
  margin-bottom:18px;
}

.section-heading p{
  color:#c8cedb;
  max-width:760px;
  font-size:19px;
}

/* CARDS */

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

.info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.info-card,
.schedule-card,
.vendor-card{
  background:#111827;

  border:1px solid rgba(255,255,255,.08);

  border-radius:22px;

  padding:28px;

  transition:.25s ease;
}

.info-card:hover,
.schedule-card:hover,
.vendor-card:hover{
  transform:translateY(-5px);

  border-color:rgba(13,124,255,.45);

  box-shadow:
    0 0 30px rgba(13,124,255,.10);
}

.schedule-card h3,
.vendor-card h3,
.info-card h3{
  margin-bottom:12px;
  font-size:24px;
}

.schedule-time{
  color:#0d7cff;
  font-weight:800;
  margin-bottom:12px;
}

.vendor-tag{
  display:inline-block;

  background:#0d7cff;

  padding:6px 12px;

  border-radius:999px;

  font-size:12px;
  font-weight:700;

  margin-top:16px;
}

/* AI ASSISTANT */

.assistant-section{
  padding:100px 7%;
  background:#0b111d;
}

.assistant-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}

.assistant-copy h2{
  font-size:48px;
  margin-bottom:20px;
}

.assistant-copy p{
  color:#c8cedb;
  font-size:19px;
  margin-bottom:30px;
}

.prompt-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.prompt-list button{
  background:#111827;

  border:1px solid rgba(255,255,255,.08);

  color:white;

  padding:18px;

  border-radius:14px;

  text-align:left;

  font-size:15px;
  font-weight:700;

  cursor:pointer;

  transition:.25s ease;
}

.prompt-list button:hover{
  border-color:#0d7cff;

  transform:translateX(4px);
}

.chat-box{
  background:#111827;

  border:1px solid rgba(255,255,255,.08);

  border-radius:24px;

  overflow:hidden;
}

.chat-header{
  display:flex;
  align-items:center;
  gap:14px;

  padding:22px;

  border-bottom:1px solid rgba(255,255,255,.06);
}

.bot-icon{
  width:52px;
  height:52px;

  background:#0d7cff;

  border-radius:14px;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:26px;
}

.chat-header span{
  color:#8f9bb3;
  font-size:14px;
}

.chat-messages{
  padding:24px;
  min-height:320px;
}

.message{
  padding:18px;
  border-radius:18px;
  margin-bottom:18px;
  max-width:85%;
}

.message.bot{
  background:#0b111d;
}

.message.user{
  background:#0d7cff;
  margin-left:auto;
}

.chat-input{
  display:flex;
  border-top:1px solid rgba(255,255,255,.06);
}

.chat-input input{
  flex:1;

  background:transparent;
  border:none;

  color:white;

  padding:22px;

  font-size:16px;

  outline:none;
}

.chat-input button{
  background:#0d7cff;
  border:none;

  color:white;

  padding:0 28px;

  font-weight:700;

  cursor:pointer;
}

/* CTA */

.cta{
  text-align:center;
  padding:100px 7%;
}

.cta h2{
  font-size:56px;
  margin-bottom:20px;
}

.cta p{
  color:#c8cedb;
  font-size:22px;
  max-width:900px;
  margin:0 auto 34px;
}

/* FOOTER */

footer{
  padding:40px;
  text-align:center;
  color:#8f9bb3;

  border-top:1px solid rgba(255,255,255,.08);
}

/* MOBILE */

@media(max-width:1000px){

  .hero,
  .assistant-layout{
    grid-template-columns:1fr;
  }

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

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

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

}

@media(max-width:768px){

  nav{
    display:none;
  }

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

  .hero h1{
    font-size:54px;
  }

  .section-heading h2,
  .assistant-copy h2,
  .cta h2{
    font-size:38px;
  }

}
.bottom-nav button span {
  display:block;
  font-size:20px;
  margin-bottom:4px;
}

.bottom-nav button {
  background:none;
  border:none;
  color:#8f9bb3;
  padding:9px 3px;
  font-size:11px;
  cursor:pointer;
  border-radius:14px;
}

.bottom-nav button.active {
  color:white;
  background:rgba(13,124,255,.18);
  font-weight:900;
}

.fair-hero-card {
  background:
    linear-gradient(rgba(5,7,13,.25), rgba(5,7,13,.75)),
    url('https://thenextlevelinnovations.com/wp-content/uploads/2026/05/tnli-fair-hero-bg.png');
  background-size:cover;
  background-position:center;
  border-radius:24px;
  padding:28px 20px;
  text-align:center;
  margin-bottom:18px;
  border:1px solid rgba(255,255,255,.1);
}

.fair-logo {
  font-size:32px;
  font-weight:900;
  letter-spacing:1px;
  text-shadow:0 0 18px rgba(13,124,255,.4);
}

.fair-hero-card p {
  color:#fff;
  font-weight:700;
  margin-top:6px;
}

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

.tile-grid button {
  background:linear-gradient(145deg,#0d7cff,#084fbd);
  border:none;
  color:white;
  border-radius:18px;
  padding:20px 12px;
  font-size:24px;
  font-weight:900;
  cursor:pointer;
}

.tile-grid button span {
  display:block;
  font-size:13px;
  margin-top:8px;
  text-transform:uppercase;
}

.next-up-card {
  margin-top:18px;
  background:linear-gradient(145deg,#111827,#0b111d);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:18px;
}

.next-up-card small {
  color:#0d7cff;
  font-weight:900;
}

.next-up-card h3 {
  font-size:22px;
  margin:6px 0;
}

.next-up-card p {
  color:#c8cedb;
  font-size:14px;
}

.next-up-card button {
  margin-top:14px;
  background:#0d7cff;
  color:white;
  border:none;
  border-radius:14px;
  padding:12px 16px;
  font-weight:900;
}


.map-demo{
  height:240px;
  border-radius:24px;
  margin-bottom:18px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg,#19324d,#102235);
  box-shadow:inset 0 0 40px rgba(255,255,255,.03);
}

.map-demo:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:32px 32px;
  opacity:.45;
}


.map-pin{
  position:absolute;

  background:linear-gradient(145deg,#0d7cff,#0852c7);

  color:white;

  padding:10px 14px;

  border-radius:18px;

  font-weight:900;
  font-size:12px;

  display:flex;
  align-items:center;
  gap:6px;

  box-shadow:
    0 0 20px rgba(13,124,255,.35),
    0 8px 18px rgba(0,0,0,.28);

  border:1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(4px);
}
.map-pin span{
  margin-left:4px;
}

.pin-parking{
  top:24px;
  left:18px;
}

.pin-food{
  top:72px;
  right:20px;
}

.pin-grandstand{
  bottom:28px;
  left:38px;
}

.pin-midway{
  bottom:78px;
  right:48px;
}
.direction-btn{
  margin-top:14px;
  background:#0d7cff;
  color:white;
  border:none;
  border-radius:14px;
  padding:12px 16px;
  font-weight:900;
  cursor:pointer;
  width:100%;
}