/* style.css */

/* =========================
   GLOBAL RESET + VARIABLES
========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --accent: #ff2d2d;
  --text: #fff;
  --border: rgba(255,255,255,0.10);

  --marqueeSpeed: 66s;
  --contactPadY: 90px;
  --marqueeGap: 56px;
  --igTopbarH: 64px;

  --edgeOrbDuration: 6.4s;

  /* ✅ fixed/sticky header height */
  --navH: 96px;
}

/* ✅ account for fixed header when jumping to anchors */
html{ scroll-padding-top: var(--navH); }

html, body{ background:#000; }

html, body{
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar{ display:none; }

body{
  font-family: 'Inter', sans-serif;
  background: #000;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  touch-action: pan-y;

  /* ✅ prevents content hiding under fixed header */
  padding-top: var(--navH);
}

.section, .container, #bgCanvas{ max-width: 100vw; }

#bgCanvas{
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  background: #000;
}

.nav, .section, .footer, .modal{ position: relative; z-index: 2; }

.container{ width: 90%; max-width: 1200px; margin: 0 auto; }
.section{ padding: 120px 0; }
.center{ text-align: center; }
.accent{ color: var(--accent); }

/* =========================
   TEXT-ONLY BLUR
========================= */
.blurtext{
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0.10em 0.26em;
}
.blurtext::before{
  content: "";
  position: absolute;
  inset: -0.22em -0.32em;
  background: rgba(0,0,0,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  z-index: -1;
  pointer-events: none;
}

/* =========================
   PANEL BLUR
========================= */
.blurpanel{
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 70px rgba(0,0,0,0.35);
  border-radius: 18px;
}
.blurpanel.tight{ padding: 8px 10px; border-radius: 16px; }

.copyblock{ text-align: left; }
.copyblock h2{ font-size: 34px; font-weight: 900; letter-spacing: -0.7px; }
.copyblock p{ margin-top: 12px; opacity: 0.82; }

/* =========================
   NAV
========================= */
/* ✅ truly sticky: fixed header always on top */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navH);
  z-index: 9998;

  display: flex;
  align-items: center;

  padding: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ← stop pushing apart */
  gap: 170px; /* space between logo + button */
}

.nav-logo-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-logo{ height: 74px; width: auto; display:block; }

.nav-cta{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 12px;

  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.2px;

  background: rgba(255,45,45,0.08);
  border: 1px solid rgba(255,45,45,0.35);

  box-shadow:
    0 0 0 1px rgba(255,45,45,0.20) inset,
    0 18px 60px rgba(0,0,0,0.35);

  transition: 0.2s ease;
  overflow: hidden;
  isolation: isolate;
}

.nav-cta:hover,
.nav-cta:visited,
.nav-cta:active{
  color: #ffffff !important;
  text-decoration: none !important;
}

.nav-cta:hover{
  border-color: rgba(255,45,45,0.6);
  box-shadow:
    0 0 0 1px rgba(255,45,45,0.35) inset,
    0 0 18px rgba(255,45,45,0.25),
    0 18px 60px rgba(0,0,0,0.4);
}

.nav-cta .cta-orb{
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;

  offset-path: inset(0px round 12px);
  offset-rotate: 0deg;

  pointer-events: none;
  z-index: 2;

  background: rgba(255,45,45,1);
  box-shadow:
    0 0 6px rgba(255,45,45,0.75),
    0 0 14px rgba(255,45,45,0.25);

  animation: orbRun var(--edgeOrbDuration) linear infinite;
}

.nav-cta .cta-orb::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;

  background: radial-gradient(circle,
    rgba(255,45,45,0.55) 0%,
    rgba(255,45,45,0.22) 35%,
    rgba(255,45,45,0.00) 70%
  );

  filter: blur(0.6px);
  opacity: 0.9;
}

.nav-cta .cta-orb.orb-a{ animation-duration: var(--edgeOrbDuration); offset-distance: 0%; }
.nav-cta .cta-orb.orb-b{ animation-duration: var(--edgeOrbDuration); animation-delay: calc(var(--edgeOrbDuration) * -0.5); }

.section-title{ font-size: 44px; font-weight: 900; letter-spacing: -0.8px; }
.section-title-xl{ font-size: 56px; }

/* HERO */
.hero{
  min-height: calc(100vh - var(--navH));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}
.hero .container{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--navH));
}
.hero-title{
  font-size: 64px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}

/* SPLIT */
.split{ display: flex; gap: 60px; align-items: center; }
.split-left, .split-right{ flex: 1; }
.phone-mock{ display: flex; justify-content: center; }

/* ✅ Desktop sticky pin for the phone */
@media (min-width: 981px){
  .split{
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 60px;
  }
  .phone-mock{
    position: sticky;
    top: calc(50vh - 320px);
    align-self: start;
  }
  #phoneSection{
    min-height: 180vh;
    height: auto;
    align-items: flex-start;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* GRID */
.companies-grid{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}

.company-card{
  width: 100%;
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  color: var(--text);
  background: rgba(0,0,0,0.12) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: 0.25s ease;
  overflow: hidden;
  cursor: pointer;
}

.company-card:hover{
  border-color: rgba(255,45,45,0.55);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
  transform: translateY(-2px);
}

.company-visual{
  width: 110px;
  height: 110px;
  margin: 0 auto 0 auto;
  position: relative;
  flex: 0 0 auto;
}

.company-avatar{
  width: 110px;
  height: 110px;
  border-radius: 999px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
}

.fluid-bg{
  position: absolute;
  inset: -18px;
  border-radius: 999px;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,45,45,0.80), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.95), transparent 55%),
    radial-gradient(circle at 40% 80%, rgba(255,45,45,0.35), transparent 60%),
    radial-gradient(circle at 80% 25%, rgba(0,0,0,0.85), transparent 58%);
  opacity: 0.95;
  filter: blur(12px);
  transform-origin: center;
  animation: fluidMove 6s ease-in-out infinite, slowSpin 26s linear infinite;
}
@keyframes fluidMove{
  0%   { transform: translate(0px, 0px) scale(1); }
  25%  { transform: translate(7px, -5px) scale(1.10); }
  50%  { transform: translate(-6px, 7px) scale(1.05); }
  75%  { transform: translate(8px, 6px) scale(1.12); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes slowSpin{
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}

.company-name{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.1;
  margin-top: 14px;
}

.one-line{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.company-desc{
  margin-top: 12px;
  opacity: 0.75;
  font-size: 13px;
  width: 100%;
}

.clamp-3{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.click-glow{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,45,45,0.10);
  animation: clickPulse 1.25s ease-in-out infinite;
}
@keyframes clickPulse{
  0%, 100%{ color: rgba(255,45,45,0.18); opacity: 0.55; filter: brightness(0.9); }
  50%{
    color: rgba(255,45,45,1);
    text-shadow: 0 0 12px rgba(255,45,45,0.60), 0 0 26px rgba(255,45,45,0.40);
    opacity: 1;
    filter: brightness(1.15);
  }
}

/* TRACK */
.track-section{ padding-top: 110px; padding-bottom: 120px; }
.track-card{
  margin: 42px auto 0;
  width: min(980px, 92vw);
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 18px;
  padding: 0;
  text-align: center;
}
.track-desc{
  margin-top: 10px;
  padding-top: 0;
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.82;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* VIEWS */
.views-section{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.views-number{
  margin-top: 14px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  display: block;
  font-size: clamp(34px, 7vw, 60px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.views-since{
  margin-top: 12px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.4px;
  display: inline-block;
  opacity: 0.92;
}

/* CONTACT */
.contact-section{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--contactPadY) 0;
}
.contact-block{ max-width: 980px; margin: 0 auto; }
.orbit-zone{
  position: relative;
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 42px 0 38px;
}
.contact-title{
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
  z-index: 4;
}
.contact-text{
  margin-top: 16px;
  opacity: 0.78;
  font-size: 16px;
  position: relative;
  z-index: 4;
}
.contact-email-line{
  margin-top: 22px;
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
  position: relative;
  z-index: 4;
}
.contact-label{ opacity: 0.75; font-weight: 900; }
.contact-link{
  color: var(--accent);
  text-decoration: none;
  font-weight: 900;
}
.contact-link:hover{ text-shadow: 0 0 18px rgba(255,45,45,0.55); }
.contact-icons{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 4;
}

/* MARQUEE */
.marquee-row{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.marquee-top{ top: -160px; }
.marquee-bottom{ bottom: -160px; }
.marquee-track{
  display: flex;
  gap: var(--marqueeGap);
  align-items: center;
  padding: 10px 0;
  width: max-content;
  animation: marqueeMove var(--marqueeSpeed) linear infinite;
  will-change: transform;
}
.marquee-track.reverse{ animation-direction: reverse; }
@keyframes marqueeMove{
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
.marquee-item{
  width: 150px;
  height: 150px;
  position: relative;
  flex: 0 0 auto;
  isolation: isolate;
}
.marquee-inner{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.55);
  box-shadow: 0 22px 70px rgba(0,0,0,0.60);
}
.marquee-inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.marquee-item::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,45,45,0.80), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.95), transparent 55%),
    radial-gradient(circle at 40% 80%, rgba(255,45,45,0.35), transparent 60%),
    radial-gradient(circle at 80% 25%, rgba(0,0,0,0.85), transparent 58%);
  opacity: 0.92;
  filter: blur(2px);
  transform-origin: center;
  animation: fluidMove 6s ease-in-out infinite, slowSpin 26s linear infinite;
}
.marquee-item::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 999px;
  z-index: 1;
  border: 1px solid rgba(255,45,45,0.25);
  box-shadow: 0 0 6px rgba(255,45,45,0.14);
  pointer-events:none;
}
.contact-title.blurtext::before{ background: rgba(0,0,0,0.18); }

/* FOOTER */
.footer{
  text-align: center;
  padding: 44px 0 46px;
  opacity: 0.95;
}
.footer-copy{
  opacity: 0.65;
  font-weight: 700;
}

.social-icon{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  transition: 0.2s ease;
}
.social-icon:hover{
  border-color: rgba(255,255,255,0.32);
  box-shadow: 0 0 22px rgba(255,255,255,0.10);
}
.icon{
  width: 20px;
  height: 20px;
  color: #ffffff;
  fill: currentColor;
}
.social-icon svg{ color:#ffffff; fill: currentColor; }

/* MODAL */
.modal{ position: fixed; inset: 0; display: none; z-index: 9999; }
.modal.open{ display: block; }
.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-card{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.88);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.85);
  overflow: hidden;
  animation: modalPop 260ms ease-out both;
  text-align: left;
}
@keyframes modalPop{
  from { transform: translate(-50%,-50%) scale(0.96); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.modal-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  pointer-events:none;
  z-index:5;
  box-shadow:
    0 0 0 1px rgba(255,45,45,0.22) inset,
    0 0 22px rgba(255,45,45,0.18),
    0 0 48px rgba(255,45,45,0.10);
  opacity: 0.95;
}
.modal-red-under{
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -40%;
  height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(255,45,45,0.55), transparent 65%);
  filter: blur(18px);
  opacity: 0.45;
  pointer-events: none;
  transform: translateY(4px);
}
.edge-orb{
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,45,45,1);
  pointer-events: none;
  z-index: 8;
  box-shadow:
    0 0 12px rgba(255,45,45,1),
    0 0 30px rgba(255,45,45,0.85),
    0 0 64px rgba(255,45,45,0.45);
  offset-path: inset(-8px round 16px);
  offset-rotate: 0deg;
  animation: orbRun var(--edgeOrbDuration) linear infinite;
}
.edge-orb::before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius: 999px;
  border: 1px solid rgba(255,45,45,0.55);
  box-shadow:
    0 0 18px rgba(255,45,45,0.55),
    0 0 40px rgba(255,45,45,0.25);
  opacity: 0.9;
}
.edge-orb::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), rgba(255,45,45,0.12), transparent 70%);
  filter: blur(6px);
  opacity: 0.95;
}
.orb-a{ offset-distance: 0%; }
.orb-b{ animation-delay: calc(var(--edgeOrbDuration) * -0.5); }
@keyframes orbRun{
  from{ offset-distance: 0%; }
  to  { offset-distance: 100%; }
}
.modal-close{
  position: absolute;
  right: 14px;
  top: 14px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 20px;
  cursor: pointer;
  z-index: 9;
}
.modal-head{
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding-right: 42px;
  position: relative;
  z-index: 6;
  margin-bottom: 10px;
  flex: 0 0 auto;
}
.modal-img{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 0 22px rgba(255,45,45,.18);
}
.modal-title{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.1;
}
.modal-sub{
  margin-top: 4px;
  font-size: 14px;
  opacity: 0.7;
  font-weight: 800;
}
.modal-text{
  margin-top: 10px;
  opacity: 0.86;
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  position: relative;
  z-index: 6;
  text-align: left;
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 6px;
  -webkit-overflow-scrolling: touch;
}
.modal-text::-webkit-scrollbar{ width: 6px; }
.modal-text::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
}
.modal-text{ scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent; }
.modal-text .modal-h{
  display:block;
  font-weight:900;
  font-size:17px;
  margin-top:12px;
  margin-bottom:0px;
  letter-spacing:-0.3px;
  color:#fff;
}
.modal-text .modal-h:first-child{ margin-top: 0; }
.modal-actions{
  position: relative;
  z-index: 7;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  flex: 0 0 auto;
}
.modal-cta{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.2px;
  background: rgba(255,45,45,0.08);
  border: 1px solid rgba(255,45,45,0.35);
  box-shadow:
    0 0 0 1px rgba(255,45,45,0.20) inset,
    0 18px 60px rgba(0,0,0,0.35);
  transition: 0.2s ease;
  overflow: hidden;
  isolation: isolate;
}
.modal-cta:hover{
  border-color: rgba(255,45,45,0.6);
  box-shadow:
    0 0 0 1px rgba(255,45,45,0.35) inset,
    0 0 18px rgba(255,45,45,0.25),
    0 18px 60px rgba(0,0,0,0.4);
}
.modal-cta .cta-orb{
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  offset-path: inset(0px round 12px);
  offset-rotate: 0deg;
  pointer-events: none;
  z-index: 2;
  background: rgba(255,45,45,1);
  box-shadow:
    0 0 6px rgba(255,45,45,0.9),
    0 0 14px rgba(255,45,45,0.4);
  animation: orbRun var(--edgeOrbDuration) linear infinite;
}
.modal-cta .cta-orb::after{
  content:"";
  position:absolute;
  inset:-7px;
  border-radius: 999px;
  background: radial-gradient(circle,
    rgba(255,45,45,0.55) 0%,
    rgba(255,45,45,0.25) 35%,
    rgba(255,45,45,0.05) 60%,
    transparent 75%
  );
  filter: blur(1px);
  opacity: 0.95;
}
.modal-cta .cta-orb.orb-a{ animation-duration: var(--edgeOrbDuration); offset-distance: 0%; }
.modal-cta .cta-orb.orb-b{ animation-duration: var(--edgeOrbDuration); animation-delay: calc(var(--edgeOrbDuration) * -0.5); }

/* =========================
   PHONE
========================= */
.phone-wrap{
  width: min(420px, 90vw);
  display: grid;
  place-items: center;
}

.iphone{
  width: 360px;
  height: 640px;
  border-radius: 46px;
  position: relative;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.65);
  padding: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: scaleY(1.04);
  transform-origin: top center;
  touch-action: pan-y;
}

.iphone-screen{
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: #000;
  touch-action: pan-y;
}

.iphone-notch{
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 26px;
  border-radius: 20px;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 50;
}

/* Home indicator */
.home-indicator{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 128px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  z-index: 60;
  opacity: 0.95;
  pointer-events: auto;
}
.home-indicator:active{
  transform: translateX(-50%) scale(0.98);
  opacity: 1;
}

.home-indicator{
  pointer-events: none;
}
.iphone.unlocked .home-indicator{
  pointer-events: auto;
}

@keyframes phoneWallFlow{
  0%   { transform: translate(-10%, -10%) rotate(0deg) scale(1.05); filter: blur(16px); }
  50%  { transform: translate(6%, 10%) rotate(180deg) scale(1.15); filter: blur(18px); }
  100% { transform: translate(-10%, -10%) rotate(360deg) scale(1.05); filter: blur(16px); }
}

/* LOCK */
.lockscreen{
  position: absolute;
  inset: 0;
  padding: 56px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #000;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
}
.lockscreen::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    conic-gradient(from 20deg,
      rgba(255,45,45,0.00) 0%,
      rgba(255,45,45,0.20) 14%,
      rgba(0,0,0,0.00) 28%,
      rgba(255,45,45,0.14) 42%,
      rgba(0,0,0,0.00) 62%,
      rgba(255,45,45,0.22) 78%,
      rgba(0,0,0,0.00) 100%);
  animation: phoneWallFlow 9s ease-in-out infinite;
  opacity: 0.9;
  pointer-events:none;
}
.lockscreen::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,45,45,0.10), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(255,45,45,0.08), transparent 46%),
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.85));
  pointer-events:none;
}
.lock-top, .lock-center, .lock-bottom{ position: relative; z-index: 2; }
.lock-top{ text-align: center; }
.lock-time{ font-size: 56px; font-weight: 900; letter-spacing: -1px; }
.lock-date{ opacity: 0.75; margin-top: 8px; font-size: 14px; }
.lock-center{ display: grid; place-items: center; flex: 1; }
.lock-logo-img{ width: 140px; height: auto; opacity: 0.95; }
.lock-bottom{ text-align: center; }
.swipe-hint{ font-size: 12px; opacity: 0.7; margin-bottom: 10px; }
.swipe-area{
  width: 100%;
  height: 44px;
  border-radius: 16px;
  background: transparent;
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease;
}
.swipe-handle{
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  cursor: grab;
  transition: transform 0.15s ease;
}
.swipe-handle.dragging{ cursor: grabbing; }
.lockscreen.unlocked{ transform: translateY(-20px); opacity: 0; pointer-events: none; }

/* HOME */
.home{
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 8;
  overflow: hidden;
}
.home::before{
  content:"";
  position:absolute;
  inset:-35%;
  background:
    conic-gradient(from 120deg,
      rgba(255,45,45,0.00) 0%,
      rgba(255,45,45,0.26) 18%,
      rgba(0,0,0,0.00) 34%,
      rgba(255,45,45,0.16) 50%,
      rgba(0,0,0,0.00) 70%,
      rgba(255,45,45,0.22) 86%,
      rgba(0,0,0,0.00) 100%);
  animation: phoneWallFlow 7.8s ease-in-out infinite;
  opacity: 0.95;
  pointer-events:none;
}
.home::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,45,45,0.10), transparent 44%),
    radial-gradient(circle at 80% 75%, rgba(255,45,45,0.08), transparent 52%),
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.85));
  pointer-events:none;
}
.home.active{ opacity: 1; pointer-events: auto; transform: translateY(0); }

.home-wallpaper-text{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-size: 34px;
  color: rgba(255,255,255,0.10);
  text-shadow: 0 0 26px rgba(255,45,45,0.18);
  z-index: 1;
  transform: translateY(-10px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.home-grid{
  position: relative;
  z-index: 2;
  padding: 64px 18px 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.app-icon{
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.app-icon-img{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  display: grid;
  place-items: center;
}
.app-icon-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  padding: 10%;
  display: block;
}
.app-icon-label{
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.85;
  font-weight: 900;
}

/* OASIS APP */
.oasis-app{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 9;
  background: #000;
}
.oasis-app.active{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ig-top-mask{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--igTopbarH);
  background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.25), transparent);
  z-index: 2;
  pointer-events: none;
}
.ig-float-back{
  position: absolute;
  top: 22px;
  left: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff !important;
  font-size: 30px;
  line-height: 1;
  opacity: 0.95;
  z-index: 99999;
  pointer-events: auto;
  padding: 0;
  text-shadow: 0 10px 28px rgba(0,0,0,0.65);
}
.ig-feed{
  position: absolute;
  top: var(--igTopbarH);
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.ig-feed::-webkit-scrollbar{ width: 0; height: 0; }
.ig-feed{ scrollbar-width: none; }

.ig-reel{
  position: relative;
  height: calc(100% - 0px);
  min-height: 520px;
  scroll-snap-align: start;
  background: #000;
  width: 100%;
  overflow: hidden;
}
.ig-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-ui{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 50;
}
.ig-actions{
  position:absolute;
  right: 10px;
  bottom: 140px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  pointer-events:none;
  z-index: 4;
}
.ig-action{
  display: grid;
  gap: 4px;
  justify-items: center;
  color: #fff;
}
.ig-ico{
  font-size: 18px;
  line-height: 1;
  opacity: 0.95;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
}
.ig-count{
  font-size: 11px;
  font-weight: 900;
  opacity: 0.92;
  text-shadow: 0 10px 22px rgba(0,0,0,0.55);
}
.ig-send-svg{
  width: 20px;
  height: 20px;
  color: #ffffff;
  fill: currentColor;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
}
.ig-audio{
  position:absolute;
  right: 12px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
  display:grid;
  place-items:center;
}
.ig-audio-inner{
  width: 24px;
  height: 24px;
  border-radius: 8px;
  overflow:hidden;
  background:#000;
  border: 1px solid rgba(255,255,255,0.10);
}
.ig-audio-inner img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.ig-user-bottom{
  position:absolute;
  left: 12px;
  bottom: 62px;
  display:flex;
  align-items:center;
  gap: 10px;
  pointer-events:none;
  z-index: 4;
}
.ig-profile-pic{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.ig-profile-pic img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  background:#000;
}
.ig-user-row{
  display:flex;
  align-items:center;
  gap: 6px;
}
.ig-username{
  font-weight: 900;
  font-size: 14px;
  color:#fff;
  letter-spacing: -0.2px;
  text-shadow: 0 10px 24px rgba(0,0,0,0.65);
}
.ig-badge{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-size: 11px;
  font-weight: 900;
  color:#fff;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.55);
}
.ig-followbtn{
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.40);
  background: rgba(0,0,0,0.35);
  color:#fff;
  font-weight: 900;
  font-size: 13px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events:auto;
  box-shadow: 0 10px 24px rgba(0,0,0,0.55);
}

.ig-empty-reel{
  height: 100%;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}
.ig-empty-logo{ width: 120px; height: auto; opacity: 0.9; }
.ig-empty-note{
  margin-top: 16px;
  opacity: 0.7;
  font-weight: 800;
  font-size: 12px;
  max-width: 320px;
}

/* keep interactions inside the phone feeling clean */
.ig-feed, .iphone, .iphone-screen{ -webkit-user-select: none; user-select: none; }

/* =========================
   PHONE SECTION
========================= */
#phoneSection{
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
}

/* ✅ "And many more companies" higher */
.more-companies-section{
  padding-top: 0px;
  padding-bottom: 80px;
  margin-top: -240px;
}
.more-companies-title{
  transform: translateY(-140px) !important;
  margin-top: 0px;
}

/* What is Oasis title alignment fix */
#phoneSection .copyblock{ padding-left: 0 !important; margin-left: 0 !important; }
#phoneSection .copyblock h2,
#phoneSection .copyblock .blurtext{
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-indent: 0 !important;
  transform: none !important;
  translate: none !important;
  left: auto !important;
  right: auto !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
#phoneSection .copyblock p{ margin-left: 0 !important; padding-left: 0 !important; text-indent: 0 !important; }
#phoneSection .copyblock .blurtext::before,
#phoneSection .copyblock .blurtext::after{ left: 0 !important; margin-left: 0 !important; transform: none !important; }

/* DESKTOP ONLY */
@media (min-width: 981px){
  .container{ max-width: 1500px; }
  .companies-grid{ gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .company-card{ height: 410px; padding: 28px; justify-content: center; }
  .company-visual{ width: 92px; height: 92px; }
  .company-avatar{ width: 92px; height: 92px; }
  .company-name{ font-size: 26px; white-space: nowrap; overflow: visible; text-overflow: clip; }
  .one-line{ overflow: visible; text-overflow: clip; }
  .footer-copy{ position: relative; top: 150px; }
}

/* MOBILE */
@media (max-width: 980px){
  :root{
    --marqueeGap: 46px;
    --navH: 86px;
  }

  body{ padding-top: var(--navH); }

  .section{ padding: 140px 0; }
  .split{ flex-direction: column; }
  .companies-grid{ grid-template-columns: 1fr; }

  .hero-title{ font-size: 40px; }
  .section-title{ font-size: 34px; }
  .section-title-xl{ font-size: 40px; }
  .views-since{ font-size: 18px; }
  .views-number{ font-size: clamp(30px, 8vw, 44px); }

  .nav-logo{ height: 62px; }
  .nav-cta{ font-size: 13px; padding: 7px 10px; }

  .iphone{ width: 300px; height: 560px; transform: scaleY(1.03); }
  .phone-wrap{ width: min(360px, 92vw); }

  .track-desc{ font-size: 14px; line-height: 1.8; }

  .contact-section{
    min-height: 100svh !important;
    height: auto !important;
    display: block !important;
    padding: 80px 0 calc(60px + env(safe-area-inset-bottom)) !important;
  }

  .contact-title{ font-size: 34px; line-height: 1.08; }
  .contact-text{ margin-top: 10px; font-size: 14px; }
  .contact-email-line{ margin-top: 16px; }
  .contact-icons{ margin-top: 12px; }

  .orbit-zone{
    position: relative !important;
    padding: 120px 0 120px !important;
    overflow: visible !important;
  }

  .marquee-item{ width: 112px; height: 112px; }
  .marquee-item::before{ inset: -2px; filter: blur(2px); }

  .marquee-top{ top: 14px !important; bottom: auto !important; }
  .marquee-bottom{
    bottom: calc(70px + env(safe-area-inset-bottom)) !important;
    top: auto !important;
  }

  .footer{
    margin-top: 0 !important;
    padding: 14px 0 calc(14px + env(safe-area-inset-bottom)) !important;
  }
  .footer-copy{
    position: relative !important;
    top: 0 !important;
    margin-top: 10px !important;
  }

  .hero{ min-height: calc(100svh - var(--navH)) !important; }
  .hero .container{ min-height: calc(100svh - var(--navH)) !important; }

  .iphone,
  .iphone-screen,
  .ig-feed,
  .ig-reel{
    touch-action: pan-y !important;
    overscroll-behavior-x: none !important;
  }

  .ig-actions{ bottom: calc(160px + env(safe-area-inset-bottom)) !important; }
  .ig-audio{ bottom: calc(18px + env(safe-area-inset-bottom)) !important; }
  .ig-user-bottom{
    bottom: calc(88px + env(safe-area-inset-bottom)) !important;
    left: 12px !important;
    gap: 9px !important;
  }
  .ig-profile-pic{ width: 34px !important; height: 34px !important; }
  .ig-username{ font-size: 13px !important; }

  .ig-badge{
    background: rgba(0, 149, 246, 0.95) !important;
    border-color: rgba(0, 149, 246, 0.85) !important;
    color: #fff !important;
  }

  .ig-followbtn{
    height: 30px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
  }

  /* ✅ keep "many more" higher on mobile too */
  .more-companies-section{
    margin-top: -220px;
    padding-bottom: 70px;
  }
  .more-companies-title{
    transform: translateY(-110px) !important;
  }
}

/* FINAL spacing fix block */
@media (max-width: 980px){
  .contact-title,
  .contact-text,
  .contact-email-line,
  .contact-icons{
    transform: translateY(30px) !important;
  }
  .contact-icons{ margin-bottom: 10px !important; }
  .marquee-bottom{ bottom: calc(-40px + env(safe-area-inset-bottom)) !important; }
  .footer{
    position: relative !important;
    margin-top: 30px !important;
    padding-bottom: calc(20px + env(safe-area-inset-bottom)) !important;
  }
}

/* Raise hero */
.hero{ padding-top: 0 !important; padding-bottom: 0 !important; }
.hero .container{ transform: translateY(-200px) !important; }
@media (max-width: 980px){
  .hero .container{ transform: translateY(-120px) !important; }
}
/* =========================
   NAV FINAL POSITION LOCK
========================= */

/* Desktop */
@media (min-width: 981px){
  .nav-inner{
    justify-content: flex-start !important;
    gap: 1250px !important; /* your working desktop spacing */
  }
}

/* Mobile */
@media (max-width: 980px){
  .nav-inner{
    justify-content: space-between !important; /* cleaner on small screens */
    gap: 0 !important;
  }
}
/* FIX: And Many More Companies Desktop Position */
@media (min-width: 981px){
  .more-companies-title{
    transform: translateY(0px) !important;
    margin-top: 150px !important; /* adjust 80–160 if needed */
  }
}
@media (max-width: 980px){
  .more-companies-title{
    transform: translateY(-50px) !important; /* moves it DOWN */
    margin-top: 0 !important;
  }
}
/* style.css */

/* =========================
   GLOBAL RESET + VARIABLES
========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --accent: #ff2d2d;
  --text: #fff;
  --border: rgba(255,255,255,0.10);

  --marqueeSpeed: 66s;
  --contactPadY: 90px;
  --marqueeGap: 56px;
  --igTopbarH: 64px;

  --edgeOrbDuration: 6.4s;

  /* ✅ fixed/sticky header height */
  --navH: 96px;
}

/* ✅ account for fixed header when jumping to anchors */
html{ scroll-padding-top: var(--navH); }

html, body{ background:#000; }

html, body{
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar{ display:none; }

body{
  font-family: 'Inter', sans-serif;
  background: #000;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  touch-action: pan-y;

  /* ✅ prevents content hiding under fixed header */
  padding-top: var(--navH);
}

.section, .container, #bgCanvas{ max-width: 100vw; }

#bgCanvas{
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  background: #000;
}

.nav, .section, .footer, .modal{ position: relative; z-index: 2; }

.container{ width: 90%; max-width: 1200px; margin: 0 auto; }
.section{ padding: 120px 0; }
.center{ text-align: center; }
.accent{ color: var(--accent); }

/* =========================
   TEXT-ONLY BLUR
========================= */
.blurtext{
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0.10em 0.26em;
}
.blurtext::before{
  content: "";
  position: absolute;
  inset: -0.22em -0.32em;
  background: rgba(0,0,0,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  z-index: -1;
  pointer-events: none;
}

/* =========================
   PANEL BLUR
========================= */
.blurpanel{
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 70px rgba(0,0,0,0.35);
  border-radius: 18px;
}
.blurpanel.tight{ padding: 8px 10px; border-radius: 16px; }

.copyblock{ text-align: left; }
.copyblock h2{ font-size: 34px; font-weight: 900; letter-spacing: -0.7px; }
.copyblock p{ margin-top: 12px; opacity: 0.82; }

/* =========================
   NAV
========================= */
/* ✅ truly sticky: fixed header always on top */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navH);
  z-index: 9998;

  display: flex;
  align-items: center;

  padding: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ← stop pushing apart */
  gap: 170px; /* space between logo + button */
}

.nav-logo-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-logo{ height: 74px; width: auto; display:block; }

.nav-cta{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 12px;

  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.2px;

  background: rgba(255,45,45,0.08);
  border: 1px solid rgba(255,45,45,0.35);

  box-shadow:
    0 0 0 1px rgba(255,45,45,0.20) inset,
    0 18px 60px rgba(0,0,0,0.35);

  transition: 0.2s ease;
  overflow: hidden;
  isolation: isolate;
}

.nav-cta:hover,
.nav-cta:visited,
.nav-cta:active{
  color: #ffffff !important;
  text-decoration: none !important;
}

.nav-cta:hover{
  border-color: rgba(255,45,45,0.6);
  box-shadow:
    0 0 0 1px rgba(255,45,45,0.35) inset,
    0 0 18px rgba(255,45,45,0.25),
    0 18px 60px rgba(0,0,0,0.4);
}

.nav-cta .cta-orb{
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;

  offset-path: inset(0px round 12px);
  offset-rotate: 0deg;

  pointer-events: none;
  z-index: 2;

  background: rgba(255,45,45,1);
  box-shadow:
    0 0 6px rgba(255,45,45,0.75),
    0 0 14px rgba(255,45,45,0.25);

  animation: orbRun var(--edgeOrbDuration) linear infinite;
}

.nav-cta .cta-orb::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;

  background: radial-gradient(circle,
    rgba(255,45,45,0.55) 0%,
    rgba(255,45,45,0.22) 35%,
    rgba(255,45,45,0.00) 70%
  );

  filter: blur(0.6px);
  opacity: 0.9;
}

.nav-cta .cta-orb.orb-a{ animation-duration: var(--edgeOrbDuration); offset-distance: 0%; }
.nav-cta .cta-orb.orb-b{ animation-duration: var(--edgeOrbDuration); animation-delay: calc(var(--edgeOrbDuration) * -0.5); }

.section-title{ font-size: 44px; font-weight: 900; letter-spacing: -0.8px; }
.section-title-xl{ font-size: 56px; }

/* HERO */
.hero{
  min-height: calc(100vh - var(--navH));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}
.hero .container{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--navH));
}
.hero-title{
  font-size: 64px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}

/* SPLIT */
.split{ display: flex; gap: 60px; align-items: center; }
.split-left, .split-right{ flex: 1; }
.phone-mock{ display: flex; justify-content: center; }

/* ✅ Desktop sticky pin for the phone */
@media (min-width: 981px){
  .split{
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 60px;
  }
  .phone-mock{
    position: sticky;
    top: calc(50vh - 320px);
    align-self: start;
  }
  #phoneSection{
    min-height: 180vh;
    height: auto;
    align-items: flex-start;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* GRID */
.companies-grid{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}

.company-card{
  width: 100%;
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  color: var(--text);
  background: rgba(0,0,0,0.12) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: 0.25s ease;
  overflow: hidden;
  cursor: pointer;
}

.company-card:hover{
  border-color: rgba(255,45,45,0.55);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
  transform: translateY(-2px);
}

.company-visual{
  width: 110px;
  height: 110px;
  margin: 0 auto 0 auto;
  position: relative;
  flex: 0 0 auto;
}

.company-avatar{
  width: 110px;
  height: 110px;
  border-radius: 999px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
}

.fluid-bg{
  position: absolute;
  inset: -18px;
  border-radius: 999px;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,45,45,0.80), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.95), transparent 55%),
    radial-gradient(circle at 40% 80%, rgba(255,45,45,0.35), transparent 60%),
    radial-gradient(circle at 80% 25%, rgba(0,0,0,0.85), transparent 58%);
  opacity: 0.95;
  filter: blur(12px);
  transform-origin: center;
  animation: fluidMove 6s ease-in-out infinite, slowSpin 26s linear infinite;
}
@keyframes fluidMove{
  0%   { transform: translate(0px, 0px) scale(1); }
  25%  { transform: translate(7px, -5px) scale(1.10); }
  50%  { transform: translate(-6px, 7px) scale(1.05); }
  75%  { transform: translate(8px, 6px) scale(1.12); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes slowSpin{
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}

.company-name{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.1;
  margin-top: 14px;
}

.one-line{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.company-desc{
  margin-top: 12px;
  opacity: 0.75;
  font-size: 13px;
  width: 100%;
}

.clamp-3{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.click-glow{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,45,45,0.10);
  animation: clickPulse 1.25s ease-in-out infinite;
}
@keyframes clickPulse{
  0%, 100%{ color: rgba(255,45,45,0.18); opacity: 0.55; filter: brightness(0.9); }
  50%{
    color: rgba(255,45,45,1);
    text-shadow: 0 0 12px rgba(255,45,45,0.60), 0 0 26px rgba(255,45,45,0.40);
    opacity: 1;
    filter: brightness(1.15);
  }
}

/* TRACK */
.track-section{ padding-top: 110px; padding-bottom: 120px; }
.track-card{
  margin: 42px auto 0;
  width: min(980px, 92vw);
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 18px;
  padding: 0;
  text-align: center;
}
.track-desc{
  margin-top: 10px;
  padding-top: 0;
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.82;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* VIEWS */
.views-section{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.views-number{
  margin-top: 14px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  display: block;
  font-size: clamp(34px, 7vw, 60px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.views-since{
  margin-top: 12px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.4px;
  display: inline-block;
  opacity: 0.92;
}

/* CONTACT */
.contact-section{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--contactPadY) 0;
}
.contact-block{ max-width: 980px; margin: 0 auto; }
.orbit-zone{
  position: relative;
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 42px 0 38px;
}
.contact-title{
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
  z-index: 4;
}
.contact-text{
  margin-top: 16px;
  opacity: 0.78;
  font-size: 16px;
  position: relative;
  z-index: 4;
}
.contact-email-line{
  margin-top: 22px;
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
  position: relative;
  z-index: 4;
}
.contact-label{ opacity: 0.75; font-weight: 900; }
.contact-link{
  color: var(--accent);
  text-decoration: none;
  font-weight: 900;
}
.contact-link:hover{ text-shadow: 0 0 18px rgba(255,45,45,0.55); }
.contact-icons{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 4;
}

/* MARQUEE */
.marquee-row{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.marquee-top{ top: -160px; }
.marquee-bottom{ bottom: -160px; }
.marquee-track{
  display: flex;
  gap: var(--marqueeGap);
  align-items: center;
  padding: 10px 0;
  width: max-content;
  animation: marqueeMove var(--marqueeSpeed) linear infinite;
  will-change: transform;
}
.marquee-track.reverse{ animation-direction: reverse; }
@keyframes marqueeMove{
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
.marquee-item{
  width: 150px;
  height: 150px;
  position: relative;
  flex: 0 0 auto;
  isolation: isolate;
}
.marquee-inner{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.55);
  box-shadow: 0 22px 70px rgba(0,0,0,0.60);
}
.marquee-inner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.marquee-item::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,45,45,0.80), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.95), transparent 55%),
    radial-gradient(circle at 40% 80%, rgba(255,45,45,0.35), transparent 60%),
    radial-gradient(circle at 80% 25%, rgba(0,0,0,0.85), transparent 58%);
  opacity: 0.92;
  filter: blur(2px);
  transform-origin: center;
  animation: fluidMove 6s ease-in-out infinite, slowSpin 26s linear infinite;
}
.marquee-item::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 999px;
  z-index: 1;
  border: 1px solid rgba(255,45,45,0.25);
  box-shadow: 0 0 6px rgba(255,45,45,0.14);
  pointer-events:none;
}
.contact-title.blurtext::before{ background: rgba(0,0,0,0.18); }

/* FOOTER */
.footer{
  text-align: center;
  padding: 44px 0 46px;
  opacity: 0.95;
}
.footer-copy{
  opacity: 0.65;
  font-weight: 700;
}

.social-icon{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  transition: 0.2s ease;
}
.social-icon:hover{
  border-color: rgba(255,255,255,0.32);
  box-shadow: 0 0 22px rgba(255,255,255,0.10);
}
.icon{
  width: 20px;
  height: 20px;
  color: #ffffff;
  fill: currentColor;
}
.social-icon svg{ color:#ffffff; fill: currentColor; }

/* MODAL */
.modal{ position: fixed; inset: 0; display: none; z-index: 9999; }
.modal.open{ display: block; }
.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-card{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.88);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.85);
  overflow: hidden;
  animation: modalPop 260ms ease-out both;
  text-align: left;
}
@keyframes modalPop{
  from { transform: translate(-50%,-50%) scale(0.96); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.modal-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  pointer-events:none;
  z-index:5;
  box-shadow:
    0 0 0 1px rgba(255,45,45,0.22) inset,
    0 0 22px rgba(255,45,45,0.18),
    0 0 48px rgba(255,45,45,0.10);
  opacity: 0.95;
}
.modal-red-under{
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -40%;
  height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(255,45,45,0.55), transparent 65%);
  filter: blur(18px);
  opacity: 0.45;
  pointer-events: none;
  transform: translateY(4px);
}
.edge-orb{
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,45,45,1);
  pointer-events: none;
  z-index: 8;
  box-shadow:
    0 0 12px rgba(255,45,45,1),
    0 0 30px rgba(255,45,45,0.85),
    0 0 64px rgba(255,45,45,0.45);
  offset-path: inset(-8px round 16px);
  offset-rotate: 0deg;
  animation: orbRun var(--edgeOrbDuration) linear infinite;
}
.edge-orb::before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius: 999px;
  border: 1px solid rgba(255,45,45,0.55);
  box-shadow:
    0 0 18px rgba(255,45,45,0.55),
    0 0 40px rgba(255,45,45,0.25);
  opacity: 0.9;
}
.edge-orb::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), rgba(255,45,45,0.12), transparent 70%);
  filter: blur(6px);
  opacity: 0.95;
}
.orb-a{ offset-distance: 0%; }
.orb-b{ animation-delay: calc(var(--edgeOrbDuration) * -0.5); }
@keyframes orbRun{
  from{ offset-distance: 0%; }
  to  { offset-distance: 100%; }
}
.modal-close{
  position: absolute;
  right: 14px;
  top: 14px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 20px;
  cursor: pointer;
  z-index: 9;
}
.modal-head{
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding-right: 42px;
  position: relative;
  z-index: 6;
  margin-bottom: 10px;
  flex: 0 0 auto;
}
.modal-img{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 0 22px rgba(255,45,45,.18);
}
.modal-title{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.1;
}
.modal-sub{
  margin-top: 4px;
  font-size: 14px;
  opacity: 0.7;
  font-weight: 800;
}
.modal-text{
  margin-top: 10px;
  opacity: 0.86;
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  position: relative;
  z-index: 6;
  text-align: left;
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 6px;
  -webkit-overflow-scrolling: touch;
}
.modal-text::-webkit-scrollbar{ width: 6px; }
.modal-text::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
}
.modal-text{ scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent; }
.modal-text .modal-h{
  display:block;
  font-weight:900;
  font-size:17px;
  margin-top:12px;
  margin-bottom:0px;
  letter-spacing:-0.3px;
  color:#fff;
}
.modal-text .modal-h:first-child{ margin-top: 0; }
.modal-actions{
  position: relative;
  z-index: 7;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  flex: 0 0 auto;
}
.modal-cta{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.2px;
  background: rgba(255,45,45,0.08);
  border: 1px solid rgba(255,45,45,0.35);
  box-shadow:
    0 0 0 1px rgba(255,45,45,0.20) inset,
    0 18px 60px rgba(0,0,0,0.35);
  transition: 0.2s ease;
  overflow: hidden;
  isolation: isolate;
}
.modal-cta:hover{
  border-color: rgba(255,45,45,0.6);
  box-shadow:
    0 0 0 1px rgba(255,45,45,0.35) inset,
    0 0 18px rgba(255,45,45,0.25),
    0 18px 60px rgba(0,0,0,0.4);
}
.modal-cta .cta-orb{
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  offset-path: inset(0px round 12px);
  offset-rotate: 0deg;
  pointer-events: none;
  z-index: 2;
  background: rgba(255,45,45,1);
  box-shadow:
    0 0 6px rgba(255,45,45,0.9),
    0 0 14px rgba(255,45,45,0.4);
  animation: orbRun var(--edgeOrbDuration) linear infinite;
}
.modal-cta .cta-orb::after{
  content:"";
  position:absolute;
  inset:-7px;
  border-radius: 999px;
  background: radial-gradient(circle,
    rgba(255,45,45,0.55) 0%,
    rgba(255,45,45,0.25) 35%,
    rgba(255,45,45,0.05) 60%,
    transparent 75%
  );
  filter: blur(1px);
  opacity: 0.95;
}
.modal-cta .cta-orb.orb-a{ animation-duration: var(--edgeOrbDuration); offset-distance: 0%; }
.modal-cta .cta-orb.orb-b{ animation-duration: var(--edgeOrbDuration); animation-delay: calc(var(--edgeOrbDuration) * -0.5); }

/* =========================
   PHONE
========================= */
.phone-wrap{
  width: min(420px, 90vw);
  display: grid;
  place-items: center;
}

.iphone{
  width: 360px;
  height: 640px;
  border-radius: 46px;
  position: relative;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.65);
  padding: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: scaleY(1.04);
  transform-origin: top center;
  touch-action: pan-y;
}

.iphone-screen{
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: #000;
  touch-action: pan-y;
}

.iphone-notch{
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 26px;
  border-radius: 20px;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 50;
}

/* Home indicator */
.home-indicator{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 128px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  z-index: 60;
  opacity: 0.95;
  pointer-events: auto;
}
.home-indicator:active{
  transform: translateX(-50%) scale(0.98);
  opacity: 1;
}

/* ✅ Fix "two bars" on lockscreen (swipe bar + home indicator) */
.iphone:not(.unlocked) .home-indicator{
  opacity: 0 !important;
  pointer-events: none !important;
}

@keyframes phoneWallFlow{
  0%   { transform: translate(-10%, -10%) rotate(0deg) scale(1.05); filter: blur(16px); }
  50%  { transform: translate(6%, 10%) rotate(180deg) scale(1.15); filter: blur(18px); }
  100% { transform: translate(-10%, -10%) rotate(360deg) scale(1.05); filter: blur(16px); }
}

/* LOCK */
.lockscreen{
  position: absolute;
  inset: 0;
  padding: 56px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #000;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
}
.lockscreen::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    conic-gradient(from 20deg,
      rgba(255,45,45,0.00) 0%,
      rgba(255,45,45,0.20) 14%,
      rgba(0,0,0,0.00) 28%,
      rgba(255,45,45,0.14) 42%,
      rgba(0,0,0,0.00) 62%,
      rgba(255,45,45,0.22) 78%,
      rgba(0,0,0,0.00) 100%);
  animation: phoneWallFlow 9s ease-in-out infinite;
  opacity: 0.9;
  pointer-events:none;
}
.lockscreen::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,45,45,0.10), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(255,45,45,0.08), transparent 46%),
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.85));
  pointer-events:none;
}
.lock-top, .lock-center, .lock-bottom{ position: relative; z-index: 2; }
.lock-top{ text-align: center; }
.lock-time{ font-size: 56px; font-weight: 900; letter-spacing: -1px; }
.lock-date{ opacity: 0.75; margin-top: 8px; font-size: 14px; }
.lock-center{ display: grid; place-items: center; flex: 1; }
.lock-logo-img{ width: 140px; height: auto; opacity: 0.95; }
.lock-bottom{ text-align: center; }
.swipe-hint{ font-size: 12px; opacity: 0.7; margin-bottom: 10px; }
.swipe-area{
  width: 100%;
  height: 44px;
  border-radius: 16px;
  background: transparent;
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease;
}
.swipe-handle{
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  cursor: grab;
  transition: transform 0.15s ease;
}
.swipe-handle.dragging{ cursor: grabbing; }
.lockscreen.unlocked{ transform: translateY(-20px); opacity: 0; pointer-events: none; }

/* HOME */
.home{
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 8;
  overflow: hidden;
}
.home::before{
  content:"";
  position:absolute;
  inset:-35%;
  background:
    conic-gradient(from 120deg,
      rgba(255,45,45,0.00) 0%,
      rgba(255,45,45,0.26) 18%,
      rgba(0,0,0,0.00) 34%,
      rgba(255,45,45,0.16) 50%,
      rgba(0,0,0,0.00) 70%,
      rgba(255,45,45,0.22) 86%,
      rgba(0,0,0,0.00) 100%);
  animation: phoneWallFlow 7.8s ease-in-out infinite;
  opacity: 0.95;
  pointer-events:none;
}
.home::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,45,45,0.10), transparent 44%),
    radial-gradient(circle at 80% 75%, rgba(255,45,45,0.08), transparent 52%),
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.85));
  pointer-events:none;
}
.home.active{ opacity: 1; pointer-events: auto; transform: translateY(0); }

.home-wallpaper-text{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-size: 34px;
  color: rgba(255,255,255,0.10);
  text-shadow: 0 0 26px rgba(255,45,45,0.18);
  z-index: 1;
  transform: translateY(-10px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.home-grid{
  position: relative;
  z-index: 2;
  padding: 64px 18px 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.app-icon{
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.app-icon-img{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  display: grid;
  place-items: center;
}
.app-icon-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  padding: 10%;
  display: block;
}
.app-icon-label{
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.85;
  font-weight: 900;
}

/* OASIS APP */
.oasis-app{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 9;
  background: #000;
}
.oasis-app.active{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ig-top-mask{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--igTopbarH);
  background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.25), transparent);
  z-index: 2;
  pointer-events: none;
}
.ig-float-back{
  position: absolute;
  top: 22px;
  left: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff !important;
  font-size: 30px;
  line-height: 1;
  opacity: 0.95;
  z-index: 99999;
  pointer-events: auto;
  padding: 0;
  text-shadow: 0 10px 28px rgba(0,0,0,0.65);
}
.ig-feed{
  position: absolute;
  top: var(--igTopbarH);
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.ig-feed::-webkit-scrollbar{ width: 0; height: 0; }
.ig-feed{ scrollbar-width: none; }

.ig-reel{
  position: relative;
  height: calc(100% - 0px);
  min-height: 520px;
  scroll-snap-align: start;
  background: #000;
  width: 100%;
  overflow: hidden;
}
.ig-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-ui{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 50;
}
.ig-actions{
  position:absolute;
  right: 10px;
  bottom: 140px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  pointer-events:none;
  z-index: 4;
}
.ig-action{
  display: grid;
  gap: 4px;
  justify-items: center;
  color: #fff;
}
.ig-ico{
  font-size: 18px;
  line-height: 1;
  opacity: 0.95;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
}
.ig-count{
  font-size: 11px;
  font-weight: 900;
  opacity: 0.92;
  text-shadow: 0 10px 22px rgba(0,0,0,0.55);
}
.ig-send-svg{
  width: 20px;
  height: 20px;
  color: #ffffff;
  fill: currentColor;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
}
.ig-audio{
  position:absolute;
  right: 12px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
  display:grid;
  place-items:center;
}
.ig-audio-inner{
  width: 24px;
  height: 24px;
  border-radius: 8px;
  overflow:hidden;
  background:#000;
  border: 1px solid rgba(255,255,255,0.10);
}
.ig-audio-inner img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.ig-user-bottom{
  position:absolute;
  left: 12px;
  bottom: 62px;
  display:flex;
  align-items:center;
  gap: 10px;
  pointer-events:none;
  z-index: 4;
}
.ig-profile-pic{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.ig-profile-pic img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  background:#000;
}
.ig-user-row{
  display:flex;
  align-items:center;
  gap: 6px;
}
.ig-username{
  font-weight: 900;
  font-size: 14px;
  color:#fff;
  letter-spacing: -0.2px;
  text-shadow: 0 10px 24px rgba(0,0,0,0.65);
}
.ig-badge{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-size: 11px;
  font-weight: 900;
  color:#fff;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.55);
}
.ig-followbtn{
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.40);
  background: rgba(0,0,0,0.35);
  color:#fff;
  font-weight: 900;
  font-size: 13px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events:auto;
  box-shadow: 0 10px 24px rgba(0,0,0,0.55);
}

.ig-empty-reel{
  height: 100%;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}
.ig-empty-logo{ width: 120px; height: auto; opacity: 0.9; }
.ig-empty-note{
  margin-top: 16px;
  opacity: 0.7;
  font-weight: 800;
  font-size: 12px;
  max-width: 320px;
}

/* keep interactions inside the phone feeling clean */
.ig-feed, .iphone, .iphone-screen{ -webkit-user-select: none; user-select: none; }

/* =========================
   PHONE SECTION
========================= */
#phoneSection{
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
}

/* ✅ "And many more companies" higher */
.more-companies-section{
  padding-top: 0px;
  padding-bottom: 80px;
  margin-top: -240px;
}
.more-companies-title{
  transform: translateY(-140px) !important;
  margin-top: 0px;
}

/* What is Oasis title alignment fix */
#phoneSection .copyblock{ padding-left: 0 !important; margin-left: 0 !important; }
#phoneSection .copyblock h2,
#phoneSection .copyblock .blurtext{
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-indent: 0 !important;
  transform: none !important;
  translate: none !important;
  left: auto !important;
  right: auto !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
#phoneSection .copyblock p{ margin-left: 0 !important; padding-left: 0 !important; text-indent: 0 !important; }
#phoneSection .copyblock .blurtext::before,
#phoneSection .copyblock .blurtext::after{ left: 0 !important; margin-left: 0 !important; transform: none !important; }

/* DESKTOP ONLY */
@media (min-width: 981px){
  .container{ max-width: 1500px; }
  .companies-grid{ gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .company-card{ height: 410px; padding: 28px; justify-content: center; }
  .company-visual{ width: 92px; height: 92px; }
  .company-avatar{ width: 92px; height: 92px; }
  .company-name{ font-size: 26px; white-space: nowrap; overflow: visible; text-overflow: clip; }
  .one-line{ overflow: visible; text-overflow: clip; }
  .footer-copy{ position: relative; top: 150px; }
}

/* MOBILE */
@media (max-width: 980px){
  :root{
    --marqueeGap: 46px;
    --navH: 86px;
  }

  body{ padding-top: var(--navH); }

  .section{ padding: 140px 0; }
  .split{ flex-direction: column; }
  .companies-grid{ grid-template-columns: 1fr; }

  .hero-title{ font-size: 40px; }
  .section-title{ font-size: 34px; }
  .section-title-xl{ font-size: 40px; }
  .views-since{ font-size: 18px; }
  .views-number{ font-size: clamp(30px, 8vw, 44px); }

  .nav-logo{ height: 62px; }
  .nav-cta{ font-size: 13px; padding: 7px 10px; }

  .iphone{ width: 300px; height: 560px; transform: scaleY(1.03); }
  .phone-wrap{ width: min(360px, 92vw); }

  .track-desc{ font-size: 14px; line-height: 1.8; }

  .contact-section{
    min-height: 100svh !important;
    height: auto !important;
    display: block !important;
    padding: 80px 0 calc(60px + env(safe-area-inset-bottom)) !important;
  }

  .contact-title{ font-size: 34px; line-height: 1.08; }
  .contact-text{ margin-top: 10px; font-size: 14px; }
  .contact-email-line{ margin-top: 16px; }
  .contact-icons{ margin-top: 12px; }

  .orbit-zone{
    position: relative !important;
    padding: 120px 0 120px !important;
    overflow: visible !important;
  }

  .marquee-item{ width: 112px; height: 112px; }
  .marquee-item::before{ inset: -2px; filter: blur(2px); }

  .marquee-top{ top: 14px !important; bottom: auto !important; }
  .marquee-bottom{
    bottom: calc(70px + env(safe-area-inset-bottom)) !important;
    top: auto !important;
  }

  .footer{
    margin-top: 0 !important;
    padding: 14px 0 calc(14px + env(safe-area-inset-bottom)) !important;
  }
  .footer-copy{
    position: relative !important;
    top: 0 !important;
    margin-top: 10px !important;
  }

  .hero{ min-height: calc(100svh - var(--navH)) !important; }
  .hero .container{ min-height: calc(100svh - var(--navH)) !important; }

  .iphone,
  .iphone-screen,
  .ig-feed,
  .ig-reel{
    touch-action: pan-y !important;
    overscroll-behavior-x: none !important;
  }

  .ig-actions{ bottom: calc(160px + env(safe-area-inset-bottom)) !important; }
  .ig-audio{ bottom: calc(18px + env(safe-area-inset-bottom)) !important; }
  .ig-user-bottom{
    bottom: calc(88px + env(safe-area-inset-bottom)) !important;
    left: 12px !important;
    gap: 9px !important;
  }
  .ig-profile-pic{ width: 34px !important; height: 34px !important; }
  .ig-username{ font-size: 13px !important; }

  .ig-badge{
    background: rgba(0, 149, 246, 0.95) !important;
    border-color: rgba(0, 149, 246, 0.85) !important;
    color: #fff !important;
  }

  .ig-followbtn{
    height: 30px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
  }

  /* ✅ keep "many more" higher on mobile too */
  .more-companies-section{
    margin-top: -220px;
    padding-bottom: 70px;
  }
  .more-companies-title{
    transform: translateY(-110px) !important;
  }
}

/* FINAL spacing fix block */
@media (max-width: 980px){
  .contact-title,
  .contact-text,
  .contact-email-line,
  .contact-icons{
    transform: translateY(30px) !important;
  }
  .contact-icons{ margin-bottom: 10px !important; }
  .marquee-bottom{ bottom: calc(-40px + env(safe-area-inset-bottom)) !important; }
  .footer{
    position: relative !important;
    margin-top: 30px !important;
    padding-bottom: calc(20px + env(safe-area-inset-bottom)) !important;
  }
}

/* Raise hero */
.hero{ padding-top: 0 !important; padding-bottom: 0 !important; }
.hero .container{ transform: translateY(-200px) !important; }
@media (max-width: 980px){
  .hero .container{ transform: translateY(-120px) !important; }
}
/* =========================
   NAV FINAL POSITION LOCK
========================= */

/* Desktop */
@media (min-width: 981px){
  .nav-inner{
    justify-content: flex-start !important;
    gap: 1250px !important; /* your working desktop spacing */
  }
}

/* Mobile */
@media (max-width: 980px){
  .nav-inner{
    justify-content: space-between !important; /* cleaner on small screens */
    gap: 0 !important;
  }
}
/* FIX: And Many More Companies Desktop Position */
@media (min-width: 981px){
  .more-companies-title{
    transform: translateY(0px) !important;
    margin-top: 150px !important; /* adjust 80–160 if needed */
  }
}
@media (max-width: 980px){
  .more-companies-title{
    transform: translateY(-50px) !important; /* moves it DOWN */
    margin-top: 0 !important;
  }
}
/* Fix anchor scroll offset for sticky header */
#contact{
  scroll-margin-top: -80px; /* adjust this number */
}
/* REMOVE IG AUDIO ICON COMPLETELY */
.ig-audio{
  display: none !important;
}
/* FIX: stop the lockscreen swipe bar from flashing during unlock */
.lockscreen.unlocked .swipe-area,
.lockscreen.unlocked .swipe-handle,
.lockscreen.unlocked .swipe-hint{
  opacity: 0 !important;
  visibility: hidden !important;
}

/* FIX: delay home indicator so it doesn't appear until lockscreen is gone */
.home-indicator{
  opacity: 0;                 /* default off */
  transition: opacity 0.2s ease;
}

/* only show home indicator after unlock, with delay to avoid the “two bars” moment */
.iphone.unlocked .home-indicator{
  opacity: 0.95;
  transition-delay: 0.35s;    /* matches lockscreen transition time */
}
/* Perfectly center Follow button text */
.ig-followbtn{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 32px !important;
  padding: 0 16px !important;

  text-decoration: none !important;
  color: #fff !important;
  font-weight: 900;

  border-radius: 8px;
}
