:root{
  --navy:#082654;
  --navy-2:#061d42;
  --blue:#0b5cff;
  --soft:#f3f7ff;
  --ink:#092044;
  --muted:#5b6b84;
  --shadow:0 24px 70px rgba(6,29,66,.18);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--ink);
  background:#fff;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1180px,92vw);
  margin:auto;
}

.section-pad{padding:92px 0}

.centered{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(8,38,84,.08);
}

.nav{
  width:min(1180px,92vw);
  height:76px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--blue),#6ab3ff);
  color:#fff;
  font-weight:900;
  font-size:26px;
}

.brand strong{
  display:block;
  font-size:22px;
  letter-spacing:.02em;
  color:var(--blue);
}

.brand small{
  display:block;
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

.nav-links{
  display:flex;
  gap:30px;
  align-items:center;
  font-weight:700;
  color:#173057;
}

.nav-cta{
  padding:12px 18px;
  border-radius:999px;
  background:var(--navy);
  color:white;
}

.menu-btn{
  display:none;
  border:0;
  background:transparent;
  font-size:28px;
  cursor:pointer;
}

.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,var(--navy) 0%,#0b3472 52%,#06172f 100%);
  color:white;
}

.hero-bg-glow{
  position:absolute;
  inset:auto -180px -260px auto;
  width:650px;
  height:650px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(102,181,255,.4),transparent 64%);
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:58px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:13px;
  font-weight:900;
  color:#b9d9ff;
}

.eyebrow.dark{color:var(--blue)}

h1,h2,h3,p{margin-top:0}

h1{
  font-size:clamp(42px,6vw,78px);
  line-height:.98;
  letter-spacing:-.055em;
  margin-bottom:26px;
}

h1 span{color:#bfe3ff}

h2{
  font-size:clamp(34px,4.2vw,58px);
  line-height:1.05;
  letter-spacing:-.04em;
  margin-bottom:18px;
}

h3{
  font-size:24px;
  margin-bottom:10px;
}

.hero-text,
.section-heading p,
.showcase-copy > p{
  font-size:20px;
  line-height:1.65;
  color:rgba(255,255,255,.78);
  max-width:650px;
}

.light-section .section-heading p,
.brochure-section .section-heading p,
.contact-card p,
.tv-section .showcase-copy > p,
.app-section .showcase-copy > p{
  color:var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:16px 24px;
  font-weight:900;
  border:1px solid transparent;
  transition:.2s;
}

.btn:hover{transform:translateY(-2px)}

.btn.primary{
  background:var(--blue);
  color:white;
  box-shadow:0 16px 30px rgba(11,92,255,.28);
}

.btn.secondary{
  border-color:rgba(255,255,255,.28);
  color:white;
  background:rgba(255,255,255,.08);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:32px 0 0;
}

.hero-visual{
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transform:rotate(1deg);
  background:linear-gradient(180deg,#07111f,#0a1c36);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-visual img{
  width:100%;
  height:560px;
  object-fit:contain;
  object-position:center;
  border-radius:22px;
}

.tv-section,
.app-section{
  background:white;
}

.showcase-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}

.showcase-grid.reverse{
  grid-template-columns:.95fr 1.05fr;
}

.showcase-copy{max-width:650px}

.bullet-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:34px;
}

.bullet-grid.single-column{
  grid-template-columns:1fr;
}

.bullet-card{
  padding:24px;
  border-radius:24px;
  background:var(--soft);
  border:1px solid rgba(8,38,84,.08);
  box-shadow:0 18px 40px rgba(8,38,84,.05);
}

.bullet-card h3{
  font-size:22px;
  color:var(--ink);
}

.bullet-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.showcase-visual{position:relative}

.framed-screen{
  padding:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  border:0;
  transform:scale(1.12);
  transform-origin:center;
}

.framed-screen img{
  width:100%;
  border-radius:0;
}

.phone-frame{
  max-width:420px;
  justify-self:center;
  padding:14px;
  border-radius:42px;
  background:linear-gradient(180deg,#f7faff,#eaf2ff);
  box-shadow:0 24px 70px rgba(6,29,66,.16);
}

.phone-frame img{
  width:100%;
  border-radius:32px;
  border:1px solid rgba(8,38,84,.08);
}

.light-section{background:var(--soft)}

.section-heading{
  max-width:800px;
  margin-bottom:48px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.feature-card{
  padding:32px;
  border-radius:28px;
  background:white;
  box-shadow:0 18px 50px rgba(8,38,84,.08);
  border:1px solid rgba(8,38,84,.06);
}

.feature-card p{
  color:var(--muted);
  line-height:1.6;
}

.icon{
  width:62px;
  height:62px;
  border-radius:20px;
  background:#eaf3ff;
  display:grid;
  place-items:center;
  font-size:30px;
  margin-bottom:24px;
}

.navy-section,
.usecase-section{
  background:var(--navy);
  color:white;
}

.inverse p{color:rgba(255,255,255,.75)}

.connected-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:20px;
  text-align:center;
}

.connected-grid > div{
  padding:34px 28px;
  border-radius:30px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.connected-grid p{
  color:rgba(255,255,255,.75);
  font-size:18px;
  line-height:1.55;
}

.large-icon{
  font-size:58px;
  margin-bottom:12px;
}

.connected-grid-two{
  grid-template-columns:repeat(2,1fr);
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.connected-card{
  text-align:left;
}

.download-panel{
  margin:42px auto 0;
  max-width:980px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:30px;
  border-radius:30px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
}

.download-panel h3{
  margin-bottom:8px;
}

.download-panel p{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.6;
}

.store-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.store-btn{
  min-width:178px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border-radius:18px;
  background:#fff;
  color:#082654;
  font-weight:900;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.store-btn small{
  display:block;
  font-size:11px;
  color:#5b6b84;
  font-weight:800;
  line-height:1;
}

.store-btn strong{
  display:block;
  font-size:18px;
  line-height:1.15;
}

.store-icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#eaf3ff;
  color:#0b5cff;
  font-size:20px;
}


.brochure-section{
  background:white;
  overflow:hidden;
}

.brochure-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:56px;
  align-items:center;
}

.brochure-stack{
  position:relative;
  min-height:720px;
}

.brochure-img{
  position:absolute;
  width:48%;
  border-radius:24px;
  box-shadow:0 28px 80px rgba(8,38,84,.18);
  border:1px solid rgba(8,38,84,.08);
  background:white;
}

.brochure-img.top{
  left:4%;
  top:0;
  transform:rotate(-5deg);
}

.brochure-img.bottom{
  right:0;
  top:110px;
  transform:rotate(4deg);
}

.usecase-section{
  background:linear-gradient(180deg,var(--navy),var(--navy-2));
}

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

.usecase{
  padding:22px 24px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.13);
  font-weight:800;
  text-align:center;
}

.contact-section{background:var(--soft)}

.contact-card{
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:center;
  background:white;
  border-radius:36px;
  padding:52px;
  box-shadow:var(--shadow);
}

.contact-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-link{
  font-size:22px;
  font-weight:900;
  color:var(--blue);
  padding:16px 20px;
  border-radius:18px;
  background:#eff6ff;
}

.footer{
  padding:34px 0;
  background:#fff;
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  font-weight:800;
}

.footer-brand .brand-mark{
  width:34px;
  height:34px;
  font-size:20px;
}

.footer-brand strong{font-size:18px}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:980px){
  .hero-grid,
  .showcase-grid,
  .showcase-grid.reverse,
  .brochure-grid{
    grid-template-columns:1fr;
  }

  .hero-visual img{height:auto}

  .feature-grid,
  .bullet-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .connected-grid,
  .connected-grid-two,
  .usecase-grid{
    grid-template-columns:1fr;
  }

  .download-panel{
    align-items:flex-start;
    flex-direction:column;
  }

  .brochure-stack{
    min-height:auto;
    display:grid;
    gap:24px;
  }

  .brochure-img{
    position:static;
    width:100%;
    transform:none!important;
  }

  .contact-card{
    align-items:flex-start;
    flex-direction:column;
  }

  .nav-links{display:none}

  .menu-btn{display:block}

  .menu-open .nav-links{
    position:absolute;
    top:76px;
    left:0;
    right:0;
    display:grid;
    padding:24px;
    background:white;
    border-bottom:1px solid rgba(8,38,84,.1);
  }
}

@media(max-width:620px){
  .section-pad{padding:68px 0}

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

  h1{font-size:42px}

  .hero-actions{flex-direction:column}

  .btn{width:100%}

  .contact-card{padding:32px}

  .contact-link{font-size:18px}

  .footer-grid{
    flex-direction:column;
    gap:18px;
  }

  .brand strong{font-size:18px}
}


/* Updated: TV screenshot without black bounding box */
#tv-experience .framed-screen{
  padding:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  border:0 !important;
  transform:scale(1.12);
  transform-origin:center;
}

#tv-experience .framed-screen img{
  width:100%;
  border-radius:0 !important;
}

@media(max-width:980px){
  #tv-experience .framed-screen{
    transform:scale(1);
  }
}
