/* =========================================================
       TOKENS
    ========================================================= */
:root {
  --lime: #bcf272;
  --lime-dk: #83cd1d;
  --red: #ff3e1b;
  --dark: #1b1d1a;
  --black: #000000;
  --light: #ececec;
  --muted: rgba(236, 236, 236, 0.55);
  --bdr: rgba(255, 255, 255, 0.08);
  --bdr-lime: rgba(188, 242, 114, 0.18);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 80px;
}
/* =========================================================
       RESET
    ========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  color: var(--light);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (pointer: fine) {
  body,
  a,
  button,
  [role="button"] {
    cursor: none;
  }
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  border: none;
}
p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
/* =========================================================
       CUSTOM FONT
    ========================================================= */
@font-face {
  font-family: "Devotte";
  src:
    local("Devotte"),
    url("../Devotte.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* =========================================================
       UTILITIES
    ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.875rem;
}
.h-hero {
  font-family: "Devotte", "Poppins", sans-serif;
  font-size: clamp(4rem, 9.5vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}
.h-section {
  font-family: "Devotte", "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sec {
  padding: 7rem 4rem;
}

/* =========================================================
    CURSOR
========================================================= */

.c-dot, .c-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  /* will-change: transform; */
}
.c-dot {
  width: 10px;
  height: 10px;
  top: -5px;
  left: -5px;
  background: var(--lime);
  transition: width .2s, height .2s;
}
.c-ring {
  width: 38px;
  height: 38px;
  top: -19px;
  left: -19px;
  border: 1.5px solid var(--lime);
  opacity: .7;
  transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s;
}
body.c-hover .c-dot {
  width: 6px;
  height: 6px;
}
body.c-hover .c-ring {
  width: 52px;
  height: 52px;
  border-color: var(--red);
}
@media (pointer: coarse) {
  .c-dot, .c-ring {
    display: none;
  }
}

/* =========================================================
       BUTTONS
    ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.625rem;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-lime {
  background: var(--lime);
  color: var(--dark);
}
.btn-lime:hover {
  background: var(--lime-dk);
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 28px rgba(188, 242, 114, 0.28);
}
.btn-lime:active {
  /* transform: translateY(0); */
}
.btn-outline {
  background: transparent;
  color: var(--light);
  border: 1px solid var(--bdr);
}
.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.btn-dark {
  background: var(--dark);
  color: var(--lime);
}
.btn-dark:hover {
  background: var(--lime);
  color: var(--dark);
}


/* =========================================================
       SKIP LINK
    ========================================================= */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  background: var(--lime);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 1rem;
}

/* =========================================================
       NAV
    ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(27, 29, 26, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); 
  border-color: var(--bdr);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 72px;
  width: auto;
  /* Handles white-bg PNGs on dark nav */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(236, 236, 236, 0.65);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover {
  color: var(--light);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* =========================================================
       HERO
    ========================================================= */
.hero {
  min-height: 100dvh;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(188, 242, 114, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 242, 114, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.11;
  will-change: transform;
  pointer-events: none;
}
.blob-1 {
  width: 700px;
  height: 700px;
  background: var(--lime);
  top: -220px;
  right: -160px;
  animation: blobDrift 11s ease-in-out infinite;
}
.blob-2 {
  width: 420px;
  height: 420px;
  background: var(--red);
  bottom: -80px;
  left: 28%;
  animation: blobDrift 14s ease-in-out infinite 4s;
}
.blob-3 {
  width: 360px;
  height: 360px;
  background: var(--lime-dk);
  top: 38%;
  left: -90px;
  animation: blobDrift 9s ease-in-out infinite 7s;
}
@keyframes blobDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(28px, -24px) scale(1.06);
  }
  66% {
    transform: translate(-16px, 18px) scale(0.94);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 4rem;
  display: flex;
  align-items: center;
}
.hero-copy {
  flex: 1;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(188, 242, 114, 0.08);
  border: 1px solid rgba(188, 242, 114, 0.28);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 2rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: bdPulse 2s ease-in-out infinite;
}
@keyframes bdPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.6);
  }
}

.h-hero .l1 {
  color: var(--light);
  display: block;
}
.h-hero .l2 {
  color: var(--lime);
  display: block;
}
.h-hero .l3 {
  color: var(--red);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ntu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bdr-lime);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.ntu-badge strong {
  color: var(--lime);
  font-weight: 600;
}
.ntu-badge svg {
  color: var(--lime);
  flex-shrink: 0;
}
.ntu-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ntu-content small {
  color: var(--muted);
  font-size: 0.85em;
  line-height: 1.4;
}

@keyframes mLevitate {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(0.7deg);
  }
}
.hero-bg-machine {
  position: absolute; 
  right: 0;
  top: 12%;
  /* bottom: 0; */
  height: 90dvh;
  width: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  transform: none;
  backface-visibility: visible;
  will-change: auto;

  animation: mLevitate 6s ease-in-out infinite;
}
@keyframes mLevitateHover {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}
/* @media (pointer: fine) and (min-width: 769px) {
  .hero:hover .hero-bg-machine {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    animation: mLevitateHover 6s ease-in-out infinite;
  }
} */
@media (max-width: 768px) {
  .hero-bg-machine {
    display: none;
  }
}
.chip {
  position: absolute;
  z-index: 3;
  background: rgba(27, 29, 26, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bdr-lime);
  border-radius: 14px;
  padding: 0.875rem 1.25rem;
  /* will-change: transform; */
}

.chip-1 {
  top: 22%;
  right: 37%;
  animation: chipFloat 10s ease-in-out infinite;
}
.chip-2 {
  bottom: 22%;
  right: 32%;
  animation: chipFloat 8s ease-in-out infinite 2.5s;
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}
.chip-val {
  font-family: "Devotte", "Poppins", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}
.chip-lbl {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================================
       MARQUEE
    ========================================================= */
.marquee-container {
  background: var(--lime);
  padding: 1.125rem 0;
  overflow: hidden;
  width: 100%;
  align-items: center;
}
.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.25rem;
  white-space: nowrap;
  font-family: "Devotte", "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
}
.mq-dot {
  width: 5px;
  height: 5px;
  background: var(--dark);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================================
       DEMO VIDEO
    ========================================================= */
.demo{
    padding:7rem 0;
}

.demo-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 2.5rem;
}

.demo-video{
    max-width:950px;
    margin:auto;
    border-radius:24px;
    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    background:#111;

    box-shadow:
        0 20px 60px rgba(0,0,0,.45);
}

.demo-player{
    display:block;
    width:100%;
    height:70dvh;
}
/* =========================================================
       PROBLEM brochure style
    ========================================================= */
.s-problem {
  background: var(--black);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.prob-bg-machine {
  position: absolute;
  left: 0%;
  top: 0%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  /* will-change: transform; */
  -webkit-mask-image: linear-gradient(
    to left,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 30%,
    black 55%
  );
  mask-image: linear-gradient(
    to left,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 30%,
    black 55%
  );
}
.s-problem .wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .prob-bg-machine {
    display: none;
  }
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.problem-left .h-section {
  margin-bottom: 1.5rem;
}
.problem-left p {
  margin-bottom: 2rem;
}
.problem-left .h-section em {
  color: var(--red);
  font-style: normal;
}
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prob-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.prob-item:first-child {
  padding-top: 0;
}
.prob-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.prob-num {
  font-family: "Devotte", "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  min-width: 2rem;
  flex-shrink: 0;
  opacity: 0.4;
}
.prob-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.3rem;
}
.prob-text p {
  font-size: 0.875rem;
  margin: 0;
}
.features-hd .h-section {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fcard {
  background: var(--red);
  border-radius: 20px;
  padding: 2rem 1.875rem;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
  /* will-change: transform; */
  position: relative;
  overflow: hidden;
}
.fcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}
.fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(255, 62, 27, 0.18);
}
.fcard-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.fcard-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fcard h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.fcard p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
/* =========================================================
       FEATURES brochure red cards
    ========================================================= */
.s-features {
  background: var(--dark);
  padding: 7rem 4rem;
}
.features-hd {
  margin-bottom: 4rem;
}
.features-hd .h-section {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fcard {
  background: var(--red);
  border-radius: 20px;
  padding: 2rem 1.875rem;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
  /* will-change: transform; */
  position: relative;
  overflow: hidden;
}
.fcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}
.fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(255, 62, 27, 0.25);
}
.fcard-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.fcard-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fcard h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.fcard p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
/* 
=========================================================
       STATS
    ========================================================= */
.s-stats {
  background: var(--lime);
  padding: 5.5rem 4rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-num {
  font-family: "Devotte", "Poppins", sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-lbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(27, 29, 26, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================================
       USE CASES
    ========================================================= */
.s-usecases {
  background: var(--black);
  padding: 7rem 4rem;
}
.usecases-hd {
  max-width: 580px;
  margin-bottom: 4rem;
}
.usecases-hd .h-section {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.uc-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.uc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.uc-card:hover {
  background: rgba(188, 242, 114, 0.04);
  border-color: rgba(188, 242, 114, 0.25);
  transform: translateY(-5px);
}
.uc-card:hover::after {
  transform: scaleX(1);
}
.uc-icon {
  width: 52px;
  height: 52px;
  background: rgba(188, 242, 114, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--lime);
}
.uc-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.uc-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.4rem;
}
.uc-card p {
  font-size: 0.85rem;
  margin: 0;
}
.uc-divider {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 0 1.5rem;
}
.uc-divider::before,
.uc-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(188, 242, 114, 0.2),
    transparent
  );
}
.uc-divider-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.65;
  white-space: nowrap;
}

/* =========================================================
       FOR (TABS)
    ========================================================= */
.s-for {
  background: var(--dark);
  padding: 7rem 4rem;
}
.tab-sw {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 4rem;
}
.tab-btn {
  padding: 0.75rem 2rem;
  min-height: 44px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(236, 236, 236, 0.42);
  background: transparent;
  transition: all 0.3s var(--ease-out);
}
.tab-btn.active {
  background: var(--lime);
  color: var(--dark);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tab-list-wrap{
  width:100%;
}
.dashboard{
  padding: 1rem;
}
.tab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tab-li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.chk {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: rgba(188, 242, 114, 0.08);
  border: 1px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-top: 2px;
}
.chk svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-li span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1.6;
}
.tab-vis img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--bdr-lime);
}

/* =========================================================
       HOW IT WORKS
    ========================================================= */
.s-how {
  background: var(--black);
  padding: 7rem 4rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(188, 242, 114, 0.3),
    rgba(131, 205, 29, 0.3),
    transparent
  );
}
.how-step {
  text-align: center;
}
.how-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(188, 242, 114, 0.06);
  border: 1.5px solid rgba(188, 242, 114, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: "Devotte", "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime);
  transition: all 0.3s var(--ease-out);
}
.how-step:hover .how-num {
  background: var(--lime);
  color: var(--dark);
  transform: scale(1.08);
  border-color: var(--lime);
}
.how-step h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--light);
  margin-bottom: 0.5rem;
}
.how-step p {
  font-size: 0.875rem;
  margin: 0;
}

/* =========================================================
    JOURNEY
========================================================= */
.s-journey {
  background: var(--black);
  padding: 7rem 4rem;
}
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 5rem;
  align-items: start;
}
.journey-tl {
  position: relative;
  padding-left: 2rem;
}
.journey-tl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--lime), transparent);
}
.jitem {
  padding-left: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.jitem::before {
  content: "";
  position: absolute;
  left: -2.25rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--black);
}
.jtag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.375rem;
}
.jitem h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--light);
  margin-bottom: 0.375rem;
}
.jitem p {
  font-size: 0.875rem;
  margin: 0;
}
.journey-visual {
  position: relative;
  padding-bottom: 2.5rem;
}
.journey-visual img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--bdr-lime);
}
.j-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.875rem 1.125rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 140px;
}
.j-badge img {
  height: 36px;
  width: auto;
  display: block;
}
.j-badge small {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(27, 29, 26, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
}

/* =========================================================
       CTA / CONTACT
    ========================================================= */
.s-cta {
  background: var(--red);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.cta-splash-img {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  opacity: 0.07;
  pointer-events: none;
}
.s-cta .h-section {
  color: var(--lime);
  margin-bottom: 1.25rem;
  position: relative;
}
.s-cta .sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 3rem;
  position: relative;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.cta-inp {
  width: 100%;
  height: 52px;
  padding: 0 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  box-sizing: border-box;
}
.cta-inp::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.cta-inp:focus {
  border-color: rgba(255, 255, 255, 0.6);
}
.cta-form .btn {
  width: 100%;
  justify-content: center;
}
.cta-textarea {
  width: 100%;
  min-height: 100px;
  padding: 0.875rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
  box-sizing: border-box;
  line-height: 1.6;
}
.cta-textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.cta-textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 3.5rem auto 0;
  position: relative;
}
.cta-detail-box {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cta-detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.625rem;
}
.cta-detail-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}
.cta-detail-box a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-detail-box a:hover {
  color: var(--lime);
}

/* =========================================================
       FOUNDER
    ========================================================= */
.s-founder {
  background: var(--dark);
  padding: 7rem 4rem;
}
.founder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1000px;
}
.founder-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.founder-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--lime);
  box-shadow:
    0 0 0 8px rgba(188, 242, 114, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.5);
  display: block;
}
.founder-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--red);
  border-radius: 14px;
  padding: 0.75rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(255, 62, 27, 0.35);
}
.founder-accent small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 0.68rem;
}
.founder-name {
  font-family: "Devotte", "Poppins", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--light);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.founder-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.founder-quote {
  font-size: 1.05rem;
  color: rgba(236, 236, 236, 0.78);
  line-height: 1.75;
  margin-bottom: 2rem;
  border-left: 2px solid var(--lime);
  padding-left: 1.25rem;
  font-style: italic;
}
.founder-li-btn {
  margin-top: 1.5rem;
  background: rgba(10, 102, 194, 0.15);
  border: 1px solid rgba(10, 102, 194, 0.4);
  color: #6ab4f5;
  font-size: 0.875rem;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s var(--ease-out);
}
.founder-li-btn:hover {
  background: rgba(10, 102, 194, 0.28);
  border-color: rgba(10, 102, 194, 0.7);
  color: #9fcfff;
  transform: translateY(-2px);
}

/* =========================================================
       MAP SECTION
    ========================================================= */
.s-map {
  background: var(--dark);
  padding: 7rem 4rem;
}
.map-hd {
  margin-bottom: 3.5rem;
}
.map-hd .h-section {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.map-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
#sv-map {
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--bdr-lime);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.map-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.map-sidebar-hd {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.5rem;
}
.location-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition:
    border-color 0.25s,
    background 0.25s;
  cursor: none;
}
.location-card:hover,
.location-card.active {
  background: rgba(188, 242, 114, 0.06);
  border-color: rgba(188, 242, 114, 0.3);
}
.location-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.2rem;
}
.location-card-addr {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.location-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(188, 242, 114, 0.12);
  color: var(--lime);
  border-radius: 100px;
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.4rem;
}
.map-note {
  font-size: 0.78rem;
  color: rgba(236, 236, 236, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}
/* â”€â”€ Coming-soon map overlay â”€â”€ */
.map-cs {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background-color: #0b0e0c;
  background-image:
    linear-gradient(rgba(188, 242, 114, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 242, 114, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  position: relative;
  overflow: hidden;
}
.map-cs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 48%, transparent 25%, #0b0e0c 72%);
  pointer-events: none;
  z-index: 1;
}
.map-cs-pin {
  position: relative;
  z-index: 2;
  margin-bottom: 2.25rem;
}
.map-cs-rings {
  position: absolute;
  width: 56px;
  height: 56px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes mapRing {
  0% {
    transform: scale(0.5);
    opacity: 0.85;
  }
  100% {
    transform: scale(5.5);
    opacity: 0;
  }
}
.map-cs-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--lime);
  animation: mapRing 2.8s ease-out infinite;
}
.map-cs-ring:nth-child(2) {
  animation-delay: 0.93s;
}
.map-cs-ring:nth-child(3) {
  animation-delay: 1.86s;
}
.map-cs-pinicon {
  position: relative;
  z-index: 2;
  color: var(--lime);
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 12px rgba(188, 242, 114, 0.55));
}
@keyframes pinBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
.map-cs-pinicon {
  animation: pinBob 3s ease-in-out infinite;
}
.map-cs-text {
  position: relative;
  z-index: 2;
  text-align: center;
}
.map-cs-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.7;
  margin-bottom: 0.75rem;
  display: block;
}
.map-cs-title {
  font-family: "Devotte", sans-serif;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.map-cs-sub {
  font-size: 0.82rem;
  color: rgba(236, 236, 236, 0.4);
  letter-spacing: 0.06em;
}

/* =========================================================
       FOOTER
    ========================================================= */
footer {
  background: var(--black);
  padding: 5rem 4rem 3rem;
  border-top: 1px solid rgba(188, 242, 114, 0.12);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 1200px;
  margin: 0 auto;
}
.ft-brand img {
  height: 72px;
  margin-bottom: 1.25rem;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.ft-brand p {
  font-size: 0.875rem;
  color: rgba(236, 236, 236, 0.6);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 0 1.5rem;
}
.ft-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(188, 242, 114, 0.08);
  border: 1px solid rgba(188, 242, 114, 0.2);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lime);
  transition:
    background 0.25s,
    border-color 0.25s;
  width: fit-content;
}
.ft-instagram:hover {
  background: rgba(188, 242, 114, 0.15);
  border-color: var(--lime);
}
.ft-instagram svg {
  width: 15px;
  height: 15px;
  fill: var(--lime);
  flex-shrink: 0;
}

.ft-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ft-col a {
  font-size: 0.875rem;
  color: rgba(236, 236, 236, 0.58);
  transition: color 0.25s;
}
.ft-col a:hover {
  color: var(--lime);
}

/* Always-visible contact block */
.ft-contact-block {
  background: rgba(188, 242, 114, 0.05);
  border: 1px solid rgba(188, 242, 114, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.ft-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.ft-contact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 9px;
  background: rgba(188, 242, 114, 0.12);
  border: 1px solid rgba(188, 242, 114, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-top: 2px;
  flex-shrink: 0;
}
.ft-contact-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ft-contact-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.15rem;
  opacity: 0.75;
}
.ft-contact-val {
  font-size: 0.84rem;
  color: rgba(236, 236, 236, 0.75);
  line-height: 1.5;
  margin: 0;
}
.ft-contact-val a {
  color: rgba(236, 236, 236, 0.75);
  transition: color 0.2s;
}
.ft-contact-val a:hover {
  color: var(--lime);
}

.footer-btm {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ft-copy {
  font-size: 0.78rem;
  color: rgba(236, 236, 236, 0.45);
}
.socials {
  display: flex;
  gap: 0.75rem;
}
.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(236, 236, 236, 0.38);
  transition: all 0.25s;
}
.soc-btn:hover {
  background: var(--lime);
  color: var(--dark);
  border-color: var(--lime);
}
.soc-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* =========================================================
       SCROLL REVEAL
    ========================================================= */

/* .reveal.vis {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 5s !important;
    transition-duration: 5s !important;
  }
  .reveal {
    transition: none;
  }
} */
/* =========================================================
       LOW POWER MODE (added via JS for low-end devices)
    ========================================================= */
/* .low-power .blob,
.low-power .map-cs-ring,
.low-power .map-cs-pinicon {
  animation: none !important;
}
.low-power .blob {
  display:none;
}
.low-power .blob {
  opacity: 0.05;
  filter: none;          
  animation: none;       
  will-change: auto;
} */