:root{
  --bg: #000;
  --panel: #0b0b0c;
  --panel2: #111214;

  --textDim: rgba(255,255,255,.75);
  --borderDim: rgba(255,255,255,.10);

  --gold: #d6a11f;
  --goldSoft: rgba(214,161,31,.14);
  --goldBorder: rgba(214,161,31,.35);

  /* Safe areas (iOS notch) */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html, body { height: 100%; }
body { background: var(--bg); }

.tracking-wide { letter-spacing: .14em; }
.border-white-10 { border-color: var(--borderDim) !important; }
.text-white-75{ color: rgba(255,255,255,.75) !important; }

.section-pad { padding: 96px 0; }
.bg-zinc { background: #060606; }

.section-sub { max-width: 860px; }
.quote { max-width: 760px; }

.divider{
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,.25);
}

/* NAV (glass) */
.nav-glass{
  background: rgba(0,0,0,.65) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borderDim);
}

.lang-pill{
  border: 1px solid var(--borderDim);
  border-radius: 999px;
  padding: 8px 12px !important;
  background: rgba(255,255,255,.03);
}
.lang-pill:hover{
  border-color: rgba(255,255,255,.20);
}

/* HERO */
.hero-video{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding-top: calc(88px + var(--safe-top));
}

.hero-media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.02) saturate(0.95);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.80), rgba(0,0,0,.55), rgba(0,0,0,.85));
  z-index: 1;
}

.hero-vignette{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 50% 30%, rgba(214,161,31,.10), rgba(0,0,0,0) 55%),
    radial-gradient(700px 420px at 20% 20%, rgba(255,255,255,.08), rgba(0,0,0,0) 60%),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,0), rgba(0,0,0,.55));
}

.hero-content{
  position: relative;
  z-index: 2;
  padding: 72px 12px 48px;
}

.hero-sub{ max-width: 820px; }

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--borderDim);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.8);
  border-radius: 999px;
  font-size: 14px;
}

.hero-badge .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
}

/* Hero thumbnail strip */
.hero-strip{
  display: inline-flex;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--borderDim);
  background: rgba(0,0,0,.35);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-strip-item{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  display: block;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease;
}
.hero-strip-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-strip-item:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.20);
}

/* Scroll mouse */
.hero-scroll-hint-inline{
  margin-top: 28px;
  display: flex;
  justify-content: center;
  opacity: .95;
}

.scroll-mouse{
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-mouse span{
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  animation: mouseMove 1.5s infinite;
}

@keyframes mouseMove{
  0% { transform: translateY(0); opacity: .6; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: .6; }
}

/* Cards */
.card-dark{
  background: rgba(0,0,0,.55);
  border: 1px solid var(--borderDim);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  border-radius: 16px;
}

.icon-circle{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--borderDim);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
}

.input-dark{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid var(--borderDim) !important;
  color: white !important;
}
.input-dark::placeholder{ color: rgba(255,255,255,.4); }

.mini-meta{
  color: rgba(255,255,255,.75);
  border: 1px solid var(--borderDim);
  background: rgba(255,255,255,.03);
  padding: 10px 12px;
  border-radius: 12px;
}

/* Social */
.social-btn{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--borderDim);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  background: rgba(255,255,255,.03);
}
.social-btn:hover{
  color: white;
  border-color: rgba(255,255,255,.22);
}

/* WHO WE ARE — horizontal reveal gallery (premium rail) */
.ec-rail-wrap{ margin-top: 12px; }

.ec-rail{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  /* subtle “reveal more” feel */
  mask-image: linear-gradient(to right,
    transparent 0,
    #000 28px,
    #000 calc(100% - 48px),
    transparent 100%);
}

/* hide scrollbar */
.ec-rail{ scrollbar-width: none; }
.ec-rail::-webkit-scrollbar{ display: none; }

.ec-card{
  flex: 0 0 auto;
  width: min(70vw, 420px);
  height: 66vh;
  min-height: 420px;
  max-height: 620px;

  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--borderDim);
  background: rgba(255,255,255,.03);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);

  position: relative;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;

  transition: transform .18s ease, border-color .18s ease;
}

.ec-cardMedia{
  position: absolute;
  inset: 0;
}
.ec-cardMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  display: block;
}

/* premium overlay for legibility */
.ec-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0) 55%);
  pointer-events:none;
  opacity: .95;
}

.ec-cardCap{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.90);
}

.ec-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.20);
}

/* optional: one taller card for variety */
.ec-cardTall{
  height: 72vh;
  min-height: 460px;
  max-height: 680px;
}

/* mobile tuning */
@media (max-width: 768px){
  .ec-card{
    width: 84vw;
    height: 58vh;
    min-height: 380px;
    max-height: 560px;
  }
  .ec-cardTall{
    height: 62vh;
    min-height: 420px;
    max-height: 600px;
  }
  .ec-rail{
    mask-image: none; /* iOS sometimes renders masks harshly */
  }
}





/* DIFFERENCE proof points */
.diff-points{
  display: grid;
  gap: 10px;
}
.diff-point{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--borderDim);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  color: rgba(255,255,255,.82);
}
.diff-point i{
  color: rgba(214,161,31,.95);
}

/* PWA SECTION */
.pwa-dark{
  position: relative;
  background:
    radial-gradient(800px 500px at 15% 25%, rgba(214,161,31,.12), rgba(0,0,0,0) 55%),
    radial-gradient(800px 500px at 85% 75%, rgba(214,161,31,.08), rgba(0,0,0,0) 55%),
    linear-gradient(to bottom, #050505, #000000);
  border-top: 1px solid var(--borderDim);
  border-bottom: 1px solid var(--borderDim);
}

.pill-tag-dark{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-weight: 600;
}

.accent-gold{ color: var(--gold); }

.btn-gold{
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #0b0b0c;
}
.btn-gold:hover{
  background: #c79214;
  border-color: #c79214;
  color: #0b0b0c;
}

.btn-outline-gold{
  background: transparent;
  border: 1px solid rgba(214,161,31,.45);
  color: rgba(255,255,255,.88);
}
.btn-outline-gold:hover{
  background: rgba(214,161,31,.12);
  border-color: rgba(214,161,31,.70);
  color: #fff;
}

.feature-card-dark{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.feature-ico-dark{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(214,161,31,.10);
  border: 1px solid rgba(214,161,31,.25);
  color: rgba(255,255,255,.92);
}

.feature-title-dark{
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 2px;
}

.feature-text-dark{
  color: rgba(255,255,255,.70);
  font-size: 14px;
}

.pwa-note-dark{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px 16px;
}

.pwa-note-title-dark{
  font-weight: 800;
  color: rgba(255,255,255,.92);
  margin-bottom: 8px;
}

.pwa-steps-dark{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.70);
}

/* PWA real screenshots grid */
.pwa-shots{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: start;
}

.pwa-shot{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}
.pwa-shot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pwa-shot-lg{
  grid-row: span 2;
}

/* Instagram section */
.insta-cta{
  border-radius: 999px;
}

.insta-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.insta-tile{
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--borderDim);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 55px rgba(0,0,0,.40);
  transition: transform .18s ease, border-color .18s ease;
}

.insta-tile img{
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.insta-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.20);
}

/* WhatsApp */
.whatsapp-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  z-index: 999;
  border: 1px solid rgba(255,255,255,.15);
}
.whatsapp-fab:hover{
  color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px){
  .ec-gItem{ grid-column: span 12; }
  .ec-gTall{ min-height: 360px; }
  .pwa-shots{ grid-template-columns: 1fr; }
  .pwa-shot-lg{ grid-row: auto; }
  .insta-tile{ grid-column: span 6; }
}

@media (max-width: 768px){
  .section-pad{ padding: 72px 0; }
}

@media (max-width: 576px){
  .hero-strip-item{ width: 50px; height: 50px; border-radius: 14px; }
  .ec-gWide{ min-height: 280px; }
  .insta-tile{ grid-column: span 12; }
  .insta-tile img{ min-height: 240px; }
}

/* WHO WE ARE — Instagram CTA bar (same section) */
.ec-instaBar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--borderDim);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  margin-bottom: 18px;
}

.ec-instaTitle{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

.ec-instaSub{
  font-size: 14px;
  margin-top: 4px;
}

.ec-instaBtn{
  border-radius: 999px;
  white-space: nowrap;
}

/* mobile */
@media (max-width: 768px){
  .ec-instaBar{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 14px 14px;
  }
  .ec-instaBtn{
    width: 100%;
  }
}
