:root{
  --bg: #08090e;
  --orange: #f07e54;
  --blue: #4dabf5;
  --text: #ffffff;
  --text-soft: #e2e8f0;
  --muted: #a0a6ac;

  --glass: rgba(255,255,255,0.03);
  --glass-hover: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.06);

  --max: 1200px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(240, 126, 84, 0.09) 0%, transparent 24%),
    radial-gradient(circle at 36% 60%, rgba(77, 171, 245, 0.08) 0%, transparent 22%),
    radial-gradient(circle at 60% 24%, rgba(240, 126, 84, 0.08) 0%, transparent 22%),
    radial-gradient(circle at 84% 70%, rgba(77, 171, 245, 0.08) 0%, transparent 24%),
    linear-gradient(180deg, #07080c 0%, #08090e 48%, #0a0d14 100%);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

img{
  display: block;
  max-width: 100%;
}

a{
  color: inherit;
}

.container{
  max-width: var(--max);
  width: 90%;
  margin: 0 auto;
}

/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 5%;
  background: transparent;
  border-bottom: none;
  isolation: isolate;
}

.site-header::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -24px;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.35) 78%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.35) 78%, rgba(0,0,0,0) 100%);
}

.nav-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
}

.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}

.brand-logo{
  height: 120px;
  width: auto;
}

.pill-nav{
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.pill{
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pill:hover,
.pill.active{
  color: var(--orange);
}

.menu-toggle{
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span{
  width: 18px;
  height: 2px;
  background: var(--text-soft);
  border-radius: 999px;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* HERO */
.hero{
  padding: 0px 0 50px;
}

.hero-grid{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 80px;
}

.hero-content{
  flex: 1;
  text-align: left;
}

.hero-media{
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-machine-img{
  max-width: 100%;
  height: auto;
}

.hero-title{
  font-family: 'Russo One', sans-serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 0 0 25px;
  letter-spacing: 1px;
}

.gradient-text{
  background-image: linear-gradient(to right, var(--orange), var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-text{
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 0 22px;
  line-height: 1.65;
}

.hero-actions{
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.center-actions{
  justify-content: center;
}

.top-gap{
  margin-top: 20px;
}

/* BUTTONS */
.btn{
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost{
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-ghost:hover{
  background-color: rgba(240, 126, 84, 0.08);
  box-shadow: 0 4px 15px rgba(240, 126, 84, 0.3);
  transform: translateY(-2px);
}

/* TITLES */
.section-heading{
  margin-bottom: 28px;
}

.section-heading.centered{
  text-align: center;
}

.section-eyebrow{
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title{
  font-family: 'Russo One', sans-serif;
  font-size: 2rem;
  margin: 0;
  color: var(--text);
}

.section-title.centered{
  text-align: center;
}

.section-intro{
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 1rem;
}

.section-block{
  padding: 36px 0 70px;
}

/* GLASS CARD */
.glass-card{
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover{
  background: var(--glass-hover);
}

.glass-card p{
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0 0 16px;
}

.glass-card p:last-child{
  margin-bottom: 0;
}

.card-title{
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #ffffff;
}

.divider{
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

/*VIDEO*/
.video-glass-card {
  margin: 28px auto 0;
  padding: 0;
  overflow: hidden;
  max-width: 760px;
  width: 100%;
}

.video-glass-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.video-glass-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: unset;
  overflow: hidden;
}

.video-glass-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-glass-link:hover .video-glass-image {
  transform: scale(1.04);
}

.video-glass-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.22), rgba(0,0,0,0.08));
}

.video-glass-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 121, 33, 0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(245, 121, 33, 0.28);
  transition: transform 0.3s ease;
}

.video-glass-link:hover .video-glass-play {
  transform: scale(1.08);
}

.video-glass-text {
  padding: 20px 22px 24px;
}

.video-glass-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.video-glass-text .card-title {
  margin-bottom: 10px;
  font-size: 24px;
}

.video-glass-text p:last-child {
  margin-bottom: 0;
  font-size: 15px;
}

@media (max-width: 768px) {
  .video-glass-card {
    max-width: 100%;
  }

  .video-glass-text {
    padding: 18px;
  }

  .video-glass-text .card-title {
    font-size: 20px;
  }
}

/* WHY SHOP */
.why-shop-section{
  padding: 0 0 40px;
}

.why-shop-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: left;
  margin-top: 30px;
}

.feature-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover{
  background: rgba(255,255,255,0.06);
  transform: translateY(-5px);
}

.feature-icon{
  width: 35px;
  height: 35px;
  background: rgba(240,126,84,0.10);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.feature-icon-blue{
  color: var(--blue);
  background: rgba(77,171,245,0.10);
}

.feature-card h3{
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #ffffff;
}

.feature-card p{
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* GRIDS */
.content-grid.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-grid,
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.locations-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

/*LOCATIONS POPUP*/
.image-trigger {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.image-trigger:hover {
  transform: translateY(-4px);
}

.image-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.image-popup.active {
  display: flex;
}

.image-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.image-popup-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 900px);
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.image-popup-content img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.image-popup-content p {
  margin: 12px 0 0;
  font-size: 14px;
  color: #444;
}

.image-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* STEP CARDS */
.step-number{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(240,126,84,0.10);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-card h3,
.service-card h3,
.benefit-card h3{
  font-size: 1.08rem;
  margin: 0 0 10px;
  color: #ffffff;
}

.step-card p,
.service-card p,
.benefit-card p{
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

/* LOCATION */
.location-group{
  margin-top: 28px;
}

.group-title{
  font-size: 1.05rem;
  color: var(--orange);
  margin: 0 0 14px;
  font-weight: 600;
}

.loc-card h4{
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
}

.loc-card p{
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.loc-card {
  position: relative;
  overflow: hidden;
}

.loc-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--blue));
}

.host-note{
  margin-top: 22px;
}

/* PARTNERSHIP */
.partner-subintro{
  color: var(--text-soft);
  font-size: 1.1rem;
}

.partner-intro-card{
  margin-bottom: 24px;
}

/* POWERED BY */
.powered-section{
  margin-top: 40px;
}

/* CONTACT */
.contact-section{
  padding-bottom: 90px;
}

.contact-list{
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.contact-list li{
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-panel a{
  color: var(--text);
  text-decoration: underline;
}

.mini-step span{
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.mini-step h4{
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
}

.mini-step p{
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* SCROLL OFFSET */
#hero,
#about,
#how-it-works,
#services,
#locations,
#partnership,
#contact{
  scroll-margin-top: 150px;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .hero-grid{
    flex-direction: column;
    text-align: center;
  }

  .hero-content{
    text-align: center;
  }

  .hero-text{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions{
    justify-content: center;
  }

  .content-grid.two-col,
  .services-grid,
  .benefits-grid,
  .locations-grid,
  .contact-steps{
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
   .site-header{
    padding: 12px 5%;
  }

  .brand-logo{
    height: 42px;
  }

  .menu-toggle{
    display: inline-flex;
    z-index: 2;
  }

  .pill-nav{
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(10, 13, 20, 0.88);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .pill-nav.open{
    display: flex;
  }

  .pill{
    display: block;
    padding: 12px 14px;
    font-size: 0.88rem;
    border-radius: 10px;
  }

  .pill:hover,
  .pill.active{
    background: rgba(255,255,255,0.04);
  }

  .hero{
    padding-top: 180px;
  }

  .hero-title{
    font-size: 2.2rem;
  }

  .hero-actions{
    flex-direction: column;
    gap: 15px;
  }

  .btn{
    width: 100%;
    box-sizing: border-box;
  }

  .content-grid.two-col,
  .steps-grid,
  .services-grid,
  .benefits-grid,
  .locations-grid,
  .contact-steps{
    grid-template-columns: 1fr;
  }

  .section-title{
    font-size: 1.8rem;
  }

  .section-block{
    padding: 28px 0 56px;
  }

  .container{
    width: calc(100% - 32px);
  }

  #hero,
  #about,
  #how-it-works,
  #services,
  #locations,
  #partnership,
  #contact{
    padding-top: 0;
  }
}