/* SliderJam one-page site styles */
:root{
  --bg0: #070A12;
  --bg1: #0B1020;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.58);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 20px 60px rgba(0,0,0,0.45);

  --red: #E43B3B;
  --teal: #19C1C1;
  --teal2: #0EA5A5;

  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 14% 10%, rgba(25,193,193,0.18), rgba(0,0,0,0) 60%),
    radial-gradient(900px 500px at 86% 18%, rgba(228,59,59,0.18), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit; text-decoration:none}
a:hover{opacity:0.92}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  color:#000;
  border-radius:10px;
  z-index:9999;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:80px;
  height:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.site-nav a{
  font-size:14px;
  color: rgba(255,255,255,0.82);
  padding:10px 10px;
  border-radius:12px;
}
.site-nav a:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95);
}
.nav-cta{
  background: linear-gradient(135deg, rgba(25,193,193,0.22), rgba(228,59,59,0.18));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

.nav-toggle{
  display:none;
  width:44px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color:#fff;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgba(255,255,255,0.82);
  border-radius:2px;
}

.hero{
  position:relative;
  padding:64px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:28px;
  align-items:start; /* or flex-start */
}

.hero-copy h1{
  margin:0 0 12px;
  font-size:48px;
  line-height:1.06;
  letter-spacing:-0.03em;
}
.lead{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.5;
  color: var(--muted);
}
.micro{
  margin:18px 0 0;
  font-size:13px;
  line-height:1.5;
  color: var(--muted2);
  max-width: 46ch;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  font-weight:600;
  font-size:14px;
  letter-spacing:-0.01em;
  white-space:nowrap;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(25,193,193,0.30), rgba(25,193,193,0.18));
  border-color: rgba(25,193,193,0.36);
}
.btn.primary:hover{background: linear-gradient(135deg, rgba(25,193,193,0.36), rgba(25,193,193,0.20));}
.btn.ghost{
  background: rgba(255,255,255,0.04);
}
.btn.ghost:hover{background: rgba(255,255,255,0.07);}

.hero-media .video-shell{
  position: relative; /* NEW: required for bezel + notch */
  border-radius: 34px; /* NEW: more phone-like than var(--radius2) */
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,12,18,0.70);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
  overflow: hidden;

  width: min(300px, 100%);
  aspect-ratio: 9 / 16;
  min-height: 0;
}
/* INNER PHONE SCREEN */
.hero-media .video-shell .phone-screen{
  position: absolute;
  inset: 14px;                 /* bezel thickness */
  border-radius: 24px;         /* slightly smaller than outer */
  overflow: hidden;
  background: #0b0f18;         /* matches game background */
  z-index: 2;
}

.hero-media .video-shell .phone-screen img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;         /* correct for UI walkthroughs */
  background: #000;         /* letterbox color */
  border-radius: 28px; /* slightly smaller than shell */
}
/* Carousel container lives inside .phone-screen */
.phone-screen{
  background:#000; /* keeps letterbox black */
}

/* Carousel layout */
.carousel{
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}

.carousel-track{
  height:100%;
  display:flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.carousel-slide{
  width:100%;
  height:100%;
  flex: 0 0 100%;
  display:block;
  object-fit: contain;      /* best for UI screenshots */
  background:#000;          /* ensures top/bottom bars are black */
}

/* Buttons */
.carousel-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.9);
  font-size:22px;
  line-height:36px;
  cursor:pointer;
  z-index:5;
}

.carousel-btn.prev{ left:10px; }
.carousel-btn.next{ right:10px; }

.carousel-btn:hover{
  background: rgba(0,0,0,0.62);
}

/* Dots */
.carousel-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:5;
}

.carousel-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
  cursor:pointer;
  padding:0;
}

.carousel-dot.is-active{
  background: rgba(255,255,255,0.85);
}

/* Hide arrows on very small screens (optional) */
@media (max-width: 520px){
  .carousel-btn{ display:none; }
}



/* Bezel shine + inner rim */
.hero-media .video-shell::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background:
    radial-gradient(120% 70% at 30% 0%, rgba(255,255,255,0.10), rgba(255,255,255,0) 55%),
    radial-gradient(90% 60% at 70% 100%, rgba(25,193,193,0.10), rgba(255,255,255,0) 60%);
  box-shadow:
    inset 0 0 0 10px rgba(0,0,0,0.35),  /* bezel thickness */
    inset 0 0 0 1px rgba(255,255,255,0.10);
}

/* Notch */
.hero-media .video-shell::after{
  content:"";
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  width: 36%;
  height: 16px;
  border-radius: 0 0 16px 16px;
  background: rgba(0,0,0,0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  pointer-events:none;
}
.hero-media .video-shell > *{
  position: relative;
  z-index: 1;
}

.hero-media{
  display:flex;
  justify-content:center;
}
.video-placeholder{
  width: 100%;
  height:100%;
  min-height: 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:28px;
  background:
    radial-gradient(600px 340px at 30% 20%, rgba(228,59,59,0.18), rgba(0,0,0,0) 60%),
    radial-gradient(600px 340px at 70% 80%, rgba(25,193,193,0.18), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02));
}
.video-badge{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.14);
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,0.25);
}
.video-title{
  margin-top:14px;
  font-size:18px;
  font-weight:700;
}
.video-subtitle{
  margin-top:8px;
  font-size:13px;
  color: var(--muted2);
  text-align:center;
  max-width: 44ch;
}

.section{
  padding:56px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-head{
  margin-bottom:22px;
}
.section-head h2{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:-0.02em;
}
.section-head p{
  margin:0;
  color: var(--muted);
}

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

.card{
  padding:18px 18px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}
.card h3{
  margin:0 0 8px;
  font-size:16px;
}
.card p{
  margin:0;
  color: var(--muted);
  line-height:1.5;
  font-size:14px;
}

.bullets{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.bullet{
  display:flex;
  gap:12px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.bullet h3{
  margin:0 0 6px;
  font-size:15px;
}
.bullet p{
  margin:0;
  color: var(--muted);
  line-height:1.5;
  font-size:14px;
}
.dot{
  margin-top:4px;
  width:12px;
  height:12px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--teal), var(--red));
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  flex:0 0 auto;
}

.section.cta{
  padding:46px 0;
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(700px 380px at 20% 20%, rgba(25,193,193,0.16), rgba(0,0,0,0) 55%),
    radial-gradient(700px 380px at 80% 70%, rgba(228,59,59,0.16), rgba(0,0,0,0) 55%),
    rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}
.cta-inner h2{
  margin:0 0 8px;
}
.cta-inner p{
  margin:0;
  color: var(--muted);
}

.site-footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding:22px 0;
  background: rgba(0,0,0,0.18);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-mark{
  width:34px;
  height:auto;
  display:block;
  opacity:0.95;
}
.footer-copy{
  color: var(--muted2);
  font-size:13px;
}
.footer-right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-right a{
  color: rgba(255,255,255,0.75);
  font-size:13px;
  padding:8px 8px;
  border-radius:10px;
}
.footer-right a:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr; gap:18px;}
  .hero{padding-top:44px;}
  .hero-copy h1{font-size:40px;}
  .hero-media .video-shell{min-height:320px;}
  .video-placeholder{min-height:320px;}
  .cards.three{grid-template-columns:1fr;}
  .cards.two{grid-template-columns:1fr;}
  .bullets{grid-template-columns:1fr;}
  .cta-inner{flex-direction:column; align-items:flex-start;}
}

@media (max-width: 760px){
  .nav-toggle{display:inline-block;}
  .site-nav{
    position:absolute;
    right:20px;
    top:64px;
    width:min(320px, calc(100% - 40px));
    flex-direction:column;
    align-items:stretch;
    padding:10px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.12);
    background: rgba(7,10,18,0.92);
    box-shadow: var(--shadow);
    display:none;
  }
  .site-nav.is-open{display:flex;}
  .site-nav a{padding:12px 12px;}
  .hero-copy h1{font-size:36px;}
}
/* -------- SliderJam: continuous background gradient fix -------- */
/* Paste at the very bottom of styles.css */

html, body { height: 100%; }

body{
  /* keep your existing body background if you already like it;
     otherwise use this as the single page background */
  background:
    radial-gradient(1100px 700px at 10% -10%, rgba(24,199,193,.20), rgba(24,199,193,0) 60%),
    radial-gradient(900px 650px at 85% 0%, rgba(255,59,48,.16), rgba(255,59,48,0) 62%),
    linear-gradient(180deg, #0B1020 0%, #070A12 55%, #0A1228 100%);
  background-attachment: fixed;
}

/* Critical: prevent sections from painting their own gradients */
.hero,
.section,
.section.alt,
.cta,
.site-footer{
  background: transparent !important;
}

/* If your hero/sections use pseudo-element “glow” backgrounds, disable them */
.hero::before, .hero::after,
.section::before, .section::after,
.section.alt::before, .section.alt::after,
.cta::before, .cta::after{
  content: none !important;
}

/* Keep cards/boxes readable (do NOT make these transparent) */
.card,
.hiw-card,
.usecase-card,
.why-card,
.video-placeholder,
.video-shell,
.cta-inner{
  background-color: rgba(255,255,255,.04) !important;
  background-image: none !important;
}
/* --------------------------------------------------------------- */
