:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.88);
  --muted: rgba(255,255,255,.62);
  --blue: #2A6BFF;
  --blue-2:#00C2FF;
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html,body { height: 100%; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(42,107,255,.22), transparent 55%),
    radial-gradient(900px 500px at 85% 10%, rgba(0,194,255,.12), transparent 60%),
    radial-gradient(700px 450px at 60% 110%, rgba(42,107,255,.14), transparent 60%),
    linear-gradient(180deg, #060915 0%, #05070F 65%, #04060B 100%);
  overflow-x: hidden;
}
html[lang="he"] body{
  font-family: "Heebo", "Assistant", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  letter-spacing: .01em;
}

a{ color: inherit; text-decoration: none; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 22px 18px 60px; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

/* Header */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7,10,18,.85), rgba(7,10,18,.35));
  border-bottom: 1px solid rgba(255,255,255,.06);
}

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

.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  padding-inline: 8px;
}
.header-actions > *{ flex-shrink: 0; }

@media (min-width: 561px){
  .header-actions{
    justify-content:flex-end;
    align-items: center;
    gap: 12px;
  }
  .whatsapp-link{ order: 1; }
  .lang-switch{ order: 2; }
}
.whatsapp-link{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 6px 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  letter-spacing: .02em;
  transition: transform .16s ease, opacity .16s ease;
}
.whatsapp-link:focus-visible{
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.whatsapp-link:hover{ opacity: .9; transform: translateY(-1px); }
.whatsapp-icon{
  width: 22px; height: 22px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #25D366;
  filter: drop-shadow(0 4px 10px rgba(37,211,102,.25));
}
.whatsapp-icon::before{
  content:"";
  position:absolute;
  inset:0;
  background: center/60% 60% no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-rule='evenodd'%3E%3Cpath d='M16 0C7.178 0 0 7.178 0 16c0 2.815.747 5.564 2.164 7.985L.056 32l8.289-2.174A15.94 15.94 0 0 0 16 32c8.822 0 16-7.178 16-16S24.822 0 16 0Zm0 29.09c-2.532 0-4.991-.753-7.093-2.18l-.506-.334-4.915 1.288 1.316-4.795-.33-.51C3.893 20.43 3.27 18.243 3.27 16 3.27 9.062 9.062 3.27 16 3.27c6.938 0 12.73 5.792 12.73 12.73 0 6.937-5.792 12.73-12.73 12.73Z'/%3E%3Cpath d='M23.073 18.74c-.35-.176-2.066-1.02-2.39-1.137-.323-.119-.557-.176-.792.175-.233.351-.909 1.137-1.114 1.37-.205.233-.41.264-.76.088-.35-.175-1.479-.543-2.817-1.732-1.041-.93-1.743-2.076-1.948-2.427-.205-.351-.022-.54.154-.715.158-.157.351-.41.526-.614.175-.205.233-.352.35-.586.116-.233.058-.439-.03-.614-.088-.175-.792-1.907-1.084-2.613-.283-.68-.57-.587-.792-.598-.205-.01-.439-.01-.674-.01-.234 0-.615.088-.938.439-.323.351-1.23 1.2-1.23 2.926s1.26 3.396 1.437 3.632c.175.234 2.486 3.78 6.025 5.167.842.35 1.498.559 2.009.716.844.268 1.613.23 2.222.14.678-.101 2.066-.846 2.358-1.663.292-.819.292-1.52.205-1.664-.088-.146-.321-.233-.672-.41Z'/%3E%3C/g%3E%3C/svg%3E");
}
.whatsapp-text,
.whatsapp-number{ display:none; }

.lang-switch{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}
.lang-switch a{
  padding: 6px 10px;
  border-radius: 10px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
  border: 1px solid transparent;
}
.lang-switch a:hover{ color: #fff; background: rgba(255,255,255,.08); }
.lang-switch a.is-active{
  background: linear-gradient(135deg, rgba(42,107,255,.75), rgba(0,194,255,.55));
  color: #fff;
  border-color: rgba(255,255,255,.22);
}

@media (min-width: 561px){
  .whatsapp-link{ padding: 8px 12px; }
  .whatsapp-text{
    display:inline;
    font-weight: 600;
  }
  .whatsapp-number{
    display:inline;
    color: rgba(255,255,255,.78);
    font-variant-numeric: tabular-nums;
  }
}

.logo-slot{
  width: clamp(120px, 45vw, 160px);
}
#groove-logo{
  width: 100%;
  height: auto;
  display: block;
}


.brand-title{
  display:flex; flex-direction:column; line-height: 1.05;
}
.brand-title strong{
  font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.brand-title span{
  font-size: 12px; color: var(--muted);
  margin-top: 6px;
}

/* Force nav alignment to the left */
.nav{
  display: flex;
  gap: 10px;
  justify-content: flex-start;  /* LEFT */
  align-items: center;
  margin-top: 16px;

  width: 100%;
}

.pill{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.74);
  font-size: 12px;
  letter-spacing: .06em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(42,107,255,.45);
  color: rgba(255,255,255,.88);
}

/* Hero */
.hero{
  margin-top: 26px;
  border-radius: 26px;
  padding: 34px 22px;
  background:
    radial-gradient(900px 260px at 15% 10%, rgba(42,107,255,.18), transparent 60%),
    radial-gradient(700px 260px at 85% 0%, rgba(0,194,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(90deg, transparent 0%, rgba(42,107,255,.18) 50%, transparent 100%);
  transform: translateX(-60%);
  opacity: .35;
  filter: blur(18px);
  pointer-events:none;
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen{
  0%{ transform: translateX(-60%); }
  50%{ transform: translateX(60%); }
  100%{ transform: translateX(-60%); }
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.kicker{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(42,107,255,.35);
  background: rgba(42,107,255,.10);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  width: fit-content;
}
.dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 0 4px rgba(42,107,255,.14);
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -.02em;
}
.sub{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 54ch;
}

.cta-row{
  display:flex; gap: 10px; flex-wrap: wrap;
  margin-top: 18px;
}
.btn{
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  letter-spacing: .06em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  display:inline-flex; align-items:center; gap: 10px;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(42,107,255,.55); background: rgba(255,255,255,.09); }
.btn.primary{
  background: linear-gradient(135deg, rgba(42,107,255,.85), rgba(0,194,255,.55));
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
}
.btn.primary:hover{ border-color: rgba(255,255,255,.22); }

.hero-card{
  border-radius: 22px;
  padding: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
  gap: 12px;
  justify-content: center;
}
.hero-card .label{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
}
.hero-card ul{
  margin: 0; padding-left: 18px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.7;
}

/* Sections */
section{
  margin-top: 26px;
  padding-top: 6px;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin: 22px 0 12px;
}
.section-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.84);
}
.section-note{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

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

.video-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.video-card:hover{
  transform: translateY(-2px);
  border-color: rgba(42,107,255,.45);
}
.video-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(600px 220px at 30% 10%, rgba(42,107,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.55));
  border: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  overflow: hidden;
  color: inherit;
}
.video-frame img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  filter: brightness(.9);
  transition: transform .25s ease, filter .25s ease;
}
.play-badge{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.40));
  color: #fff;
  font-size: 22px;
  letter-spacing: .08em;
  text-shadow: 0 6px 20px rgba(0,0,0,.45);
}
.video-frame:hover img{ transform: scale(1.02); filter: brightness(1); }
.video-frame:focus-visible{ outline: 2px solid var(--blue); outline-offset: 3px; }
.video-meta{
  padding: 12px 12px 14px;
  display:flex; justify-content:space-between; align-items:center; gap: 10px;
}
.video-meta .name{
  font-size: 13px;
  color: rgba(255,255,255,.82);
  letter-spacing: .04em;
}
.tag{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.66);
  white-space: nowrap;
}
.tag.blue{
  border-color: rgba(42,107,255,.40);
  background: rgba(42,107,255,.10);
  color: rgba(255,255,255,.78);
}

/* Footer */
footer{
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.58);
  font-size: 12px;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-right{ opacity: .9; }

.video-overlay{
  position: fixed;
  inset: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 120;
}
.video-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}
.video-overlay__backdrop{
  position:absolute;
  inset:0;
}
.video-overlay__dialog{
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 70px);
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
}
.video-overlay__frame{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.video-overlay__frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.video-overlay__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
  display:grid;
  place-items:center;
  transition: background .18s ease, transform .18s ease;
}
.video-overlay__close:hover{ background: rgba(0,0,0,.55); transform: translateY(-1px); }
.video-overlay__close:focus-visible{ outline: 2px solid var(--blue); outline-offset: 2px; }
body.overlay-open{ overflow: hidden; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  header{
    position: static;
    padding: 12px 12px 10px;
    background: linear-gradient(180deg, rgba(7,10,18,.92), rgba(7,10,18,.55));
  }
  .brand{
    gap: 8px;
    visibility: visible;
    height: auto;
    overflow: visible;
    padding-inline: 8px;
  }
  .brand-title{ display: none; }
  .header-actions{
    margin-left: auto;
    gap: 10px;
    width: auto;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    direction: ltr;
    padding-inline: 0;
    margin-inline: 0;
    flex-wrap: nowrap;
  }
  .grid{ grid-template-columns: 1fr; }
  .hero{ padding: 28px 16px; }
  .lang-switch{
    padding: 3px;
    gap: 4px;
  }
  .lang-switch a{
    padding: 5px 8px;
    font-size: 11px;
    letter-spacing: .06em;
  }
}
@media (max-width: 640px){
  .video-overlay{ padding: 10px; align-items: flex-start; }
  .video-overlay__dialog{
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 14px;
    padding: 12px;
  }
  .video-overlay__frame{ padding-top: 56.25%; }
  .video-overlay__close{ top: 8px; right: 8px; }
}
