#contact-text {
  font-size: 16px;
  color: #790000;
  margin-bottom: 15px;
}

/* ---------------------------------------------------
   🌿 Global Reset & Base Styles
--------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  opacity: 1;
  transition: opacity 0.3s ease;
}

body.fade-out {
  opacity: 0;
}

/* Text Utility */
#contact-text {
  font-size: 16px;
  color: #dd24c8e1;
  margin-bottom: 15px;
}

/* ---------------------------------------------------
   🌿 Navbar
--------------------------------------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 10px 20px;
  color: #fff;
  position: relative;
  z-index: 2000;
}

.nav-links {
  list-style: none;
  display: flex; /* visible on PC */
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00c4cc;
}

.menu-toggle {
  display: none; /* visible only on mobile */
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 2001; /* slightly above menu */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  /* ✅ dropdown menu */
  .nav-links {
    display: none; /* hidden by default */
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 12px;
    right: 12px;
    background-color: #222;
    border-radius: 12px;
    padding: 12px;
    gap: 10px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
    z-index: 2100;
  }

  /* ✅ Only use .active */
  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    font-size: 1rem;
    padding: 10px 12px;
    border-radius: 10px;
  }
}

/* ---------------------------------------------------
   🌿 Hero Section (Aesthetic + Responsive)
--------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 72px 16px 56px;
  text-align: center;

  background:
    radial-gradient(
      1200px 500px at 50% 0%,
      rgba(255, 255, 255, 0.35),
      transparent 60%
    ),
    linear-gradient(135deg, #01c3d1, #d9d9d9);
}

/* subtle texture layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(circle at 90% 30%, rgba(0, 0, 0, 0.08), transparent 45%),
    radial-gradient(
      circle at 50% 80%,
      rgba(255, 255, 255, 0.12),
      transparent 55%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
  padding: 26px 18px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

/* ✅ override inline font sizes from HTML safely */
.hero-content h1 {
  margin: 0 0 12px 0;
  color: #0b1220 !important;
  letter-spacing: -0.8px;
  font-size: clamp(36px, 9vw, 84px) !important;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-content h1 + h1 {
  margin: 0 0 14px 0;
  font-size: clamp(18px, 3.8vw, 34px) !important;
  line-height: 1.2;
  color: rgba(11, 18, 32, 0.95) !important;
  font-weight: 700;
  text-wrap: balance;
}

/* -- Transferred styling from Inline CSS -- */
/* Nav Button */
#nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #052569, #12338ba2);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

#nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
  opacity: 0.96;
}

#nav-btn:active {
  transform: translateY(0);
}

/* Hero Content h1 style*/
#first-h1-styling {
  text-align: center;
  color: black;
  font-size: 100px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

/* Hero Content h1 & p font-style */
#h1-font-style {
  font-size: 50px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#p-font-style {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
}
/* ------------------------------------------ */

.hero-content p {
  margin: 0 auto 18px auto;
  max-width: 62ch;
  font-size: clamp(14px, 3.6vw, 18px) !important;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.92) !important;
}

/* Hero button aesthetic */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;

  background: #0f172a;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.33);
  background: #111c35;
}

/* Mobile hero tuning */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 84px 14px 54px;
  }

  .hero-content {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .hero-content p {
    max-width: 40ch;
  }
}

@media (max-width: 380px) {
  .hero-content {
    padding: 18px 12px;
  }
  .hero-btn {
    width: 100%;
  }
}

/* ---------------------------------------------------
   🌿 Features Section
--------------------------------------------------- */
.features {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  cursor: default;
}

.features-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}

.feature-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  width: 300px;
  transition: all 0.3s ease;
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #082e56;
}

.feature-card p {
  color: #100371;
  transition:
    text-shadow 0.3s ease,
    background-color 0.3s ease;
  padding: 2px 4px;
}

.feature-card p:hover {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background-color: #f0f8ff;
}

/* Features responsiveness */
@media (max-width: 1024px) {
  .feature-container {
    gap: 25px;
  }
  .feature-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .features-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .feature-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .feature-card {
    width: 92%;
    max-width: 420px;
  }
}


/* =========================================================
   CONTACT EMAIL BOX
========================================================= */

.contact-email-box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  margin-top: 24px;
  padding: 16px 18px;

  background: #f5f6f3;

  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 16px;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-email-box:hover {
  background: #f0f2ed;

  border-color: rgba(16, 17, 15, 0.14);

  transform: translateY(-2px);
}


/* Email information */

.contact-email-info {
  display: flex;
  flex-direction: column;

  gap: 5px;

  min-width: 0;
}

.contact-email-label {
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #92958e;
}

.contact-email {
  color: #10110f;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  overflow-wrap: anywhere;

  transition: opacity 0.2s ease;
}

.contact-email:hover {
  opacity: 0.6;
}


/* =========================================================
   COPY BUTTON
========================================================= */

.copy-email-btn {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  min-width: 82px;
  height: 42px;

  padding: 0 14px;

  border: 0;
  border-radius: 12px;

  background: #10110f;
  color: #ffffff;

  font-family: inherit;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.copy-email-btn:hover {
  background: #242522;

  transform: translateY(-2px);
}

.copy-email-btn:active {
  transform: scale(0.96);
}


/* Copy icon */

.copy-icon {
  font-size: 15px;
  line-height: 1;
}


/* Copied state */

.copy-email-btn.copied {
  background: #b4ff5a;
  color: #10110f;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

  .contact-email-box {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-email-btn {
    width: 100%;
  }

}

/* ---------------------------------------------------
   🌿 Tab Popups (✅ FIXED: Always Centered)
--------------------------------------------------- */
.tab-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center; /* ✅ always center */
  justify-content: center; /* ✅ always center */
  padding: 16px;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);

  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.tab-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.tab-popup .tab-content {
  width: min(520px, 92vw);
  max-height: 82vh;
  overflow: auto;

  border-radius: 18px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  position: relative;

  transform: translateY(10px) scale(0.98);
  transition: transform 0.25s ease;
}

.tab-popup.show .tab-content {
  transform: translateY(0) scale(1);
}

.tab-popup .tab-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: 0.2px;
}

.tab-popup .tab-content p,
.tab-popup .tab-content ul,
.tab-popup .tab-content li {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

.tab-popup ul {
  padding-left: 18px;
  margin-top: 8px;
}

.close-tab {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 22px;
  cursor: pointer;
  color: #0f172a;
  background: rgba(15, 23, 42, 0.08);
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.close-tab:hover {
  transform: scale(1.06);
  background: rgba(15, 23, 42, 0.14);
}

/* small phones */
@media (max-width: 480px) {
  .tab-popup .tab-content {
    width: 92vw;
    border-radius: 16px;
    padding: 18px 16px;
  }
}

/* ---------------------------------------------------
   🌿 Footer
--------------------------------------------------- */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #333;
  color: #fff;
}

/* ---------------------------------------------------
   🌿 Image Slider
--------------------------------------------------- */
.image-slider {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background-color: #04d4e3;
}

.slides {
  display: flex;
  width: 950%; /* you have many images; ok */
  animation: slideShow 35s infinite;
}

.slides img {
  width: 5%;
  height: 500px;
  object-fit: cover;
  animation: zoomInOut 40s infinite;
}

@keyframes slideShow {
  0%,
  10% {
    transform: translateX(0%);
  }
  15%,
  25% {
    transform: translateX(-10%);
  }
  30%,
  40% {
    transform: translateX(-20%);
  }
  45%,
  55% {
    transform: translateX(-30%);
  }
  60%,
  70% {
    transform: translateX(-40%);
  }
  75%,
  85% {
    transform: translateX(-50%);
  }
  90%,
  100% {
    transform: translateX(-60%);
  }
}

@keyframes zoomInOut {
  0%,
  15%,
  30%,
  45%,
  60%,
  75%,
  90%,
  100% {
    transform: scale(1);
  }
  10%,
  25%,
  40%,
  55%,
  70%,
  85% {
    transform: scale(1.02);
  }
}

.slider-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Slider responsiveness */
@media (max-width: 1024px) {
  .image-slider {
    height: 400px;
  }
  .slides img {
    height: 400px;
  }
  .slider-caption {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .image-slider {
    height: 300px;
  }
  .slides img {
    height: 300px;
  }
  .slider-caption {
    font-size: 16px;
    bottom: 12px;
    left: 12px;
  }
}

@media (max-width: 480px) {
  .image-slider {
    height: 200px;
  }
  .slides img {
    height: 200px;
  }
  .slider-caption {
    font-size: 14px;
  }
}

/* ---------------------------------------------------
   🌿 Auth Pages (Login / Signup)
--------------------------------------------------- */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #4a90e2, #50e3c2);
}

.auth-box {
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  width: 400px;
  text-align: center;
}

.auth-header h2 {
  margin-bottom: 10px;
  color: #333;
}

.auth-header p {
  font-size: 14px;
  color: #666;
}

.auth-header span#toggle-form {
  color: #4a90e2;
  cursor: pointer;
  font-weight: 600;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.auth-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.auth-form button {
  padding: 12px;
  background-color: #4a90e2;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-form button:hover {
  background-color: #357abd;
}

.hidden {
  display: none;
}

/*Sign up now*/
.text-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;

  background: #07297a;
  color: #fff;
  text-decoration: none;
}

.text-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  background: #05267f;
}

/* ===== APP SHOWCASE SECTION ===== */
.app-showcase {
  padding: 110px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: white;
  text-align: center;
  overflow: hidden;
}

/* HEADER */
.showcase-header span {
  color: #22d3ee;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.showcase-header h2 {
  font-size: 42px;
  margin: 12px 0;
}

.showcase-header p {
  color: #94a3b8;
  margin-bottom: 70px;
}

/* ===== CAROUSEL ===== */
.app-carousel {
  width: min(1100px, 100%);
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.app-track {
  display: flex;
  align-items: center;
  gap: 55px;
  width: max-content;
  transform-style: preserve-3d;
  animation: slidePhones 18s infinite ease-in-out;
}

/* ===== GLASS PHONE ===== */
.app-phone {
  width: 250px;
  height: 530px;
  flex: 0 0 250px;
  padding: 1px;
  border-radius: 38px;
  position: relative;
  overflow: hidden;

  /* subtle glass */
  background: linear-gradient(145deg, #ffffff, #cbd5e1);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);

  transition: 0.45s ease;
}

/* GLASS SHINE */
.app-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.35),
    transparent 40%,
    transparent 70%,
    rgba(8, 4, 4, 0.611)
  );
  pointer-events: none;
}

/* SIDE EDGE (thickness) */
.app-phone::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -4px;
  width: 8px; /* mas manipis */
  height: 65%;
  border-radius: 0 14px 14px 0;
  background: linear-gradient(to bottom, #e2e8f0, #475569);
  opacity: 0.6;
}

/* SCREEN */
.app-phone img {
  width: 100%;
  height: 100%;
  border-radius: 30px; /* mas sleek */
  object-fit: cover;
  object-position: top;
  background: #020617;
}

/* ===== 3D POSITIONS ===== */

/* LEFT */
.app-phone:nth-child(3n + 1) {
  transform: rotateY(25deg) rotateZ(-3deg) scale(0.92);
}

/* CENTER */
.app-phone:nth-child(3n + 2) {
  transform: translateY(-35px) translateZ(70px) scale(1.05);
  z-index: 5;

  box-shadow:
    0 40px 100px rgba(0, 188, 212, 0.45),
    inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

/* RIGHT */
.app-phone:nth-child(3n) {
  transform: rotateY(-25deg) rotateZ(3deg) scale(0.92);
}

/* ===== HOVER ===== */
.app-phone:hover {
  transform: translateY(-45px) rotateY(0deg) rotateZ(0deg) scale(1.1) !important;
  z-index: 10;
}

/* ===== AUTO SLIDE ===== */
@keyframes slidePhones {
  0%,
  25% {
    transform: translateX(0);
  }

  33%,
  58% {
    transform: translateX(-900px);
  }

  66%,
  91% {
    transform: translateX(-1800px);
  }

  100% {
    transform: translateX(0);
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .app-phone {
    width: 200px;
    height: 420px;
    flex-basis: 200px;
  }

  .app-track {
    gap: 30px;
  }

  @keyframes slidePhones {
    0%,
    25% {
      transform: translateX(0);
    }

    33%,
    58% {
      transform: translateX(-660px);
    }

    66%,
    91% {
      transform: translateX(-1320px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

/*Download Btn*/

.app-download {
  margin-top: 70px;
  text-align: center;
}

.download-btn {
  display: inline-block;
  background: linear-gradient(90deg, #22d3ee, #06b6d4);
  color: #001018;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  position: relative;

  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.35);
  transition: 0.3s;
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(34, 211, 238, 0.5);
}

.download-btn .version {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.6);
}

/*by*/
.subtitle {
  color: #94a3b8;
  margin-bottom: 15px;
}

/* 🔥 credit style */
.credit {
  font-size: 13px;
  color: #64748b;
  letter-spacing: 0.5px;
}

.credit a {
  color: #22d3ee;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

/* underline animation */
.credit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #22d3ee;
  transition: 0.3s ease;
}

.credit a:hover::after {
  width: 100%;
}

/* =========================================================
   SKILLVINE PREMIUM LANDING PAGE
========================================================= */

:root {
  --sv-bg: #f6f7f4;
  --sv-dark: #10110f;
  --sv-muted: #696c66;
  --sv-border: rgba(16, 17, 15, 0.11);

  --sv-green: #b9ff66;
  --sv-green-soft: #dcffb6;
  --sv-purple: #7559ff;
  --sv-purple-soft: #ddd5ff;

  --sv-white: #ffffff;

  --sv-radius-sm: 18px;
  --sv-radius-md: 28px;
  --sv-radius-lg: 44px;

  --sv-max-width: 1320px;
}

/* =========================
   GLOBAL LANDING
========================= */

.landing-page {
  margin: 0;
  background: var(--sv-bg);
  color: var(--sv-dark);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.landing-page * {
  box-sizing: border-box;
}

.landing-page a {
  color: inherit;
}

/* =========================
   NAVBAR
========================= */

.landing-page .site-header {
  position: fixed;
  z-index: 1000;

  width: 100%;
  top: 0;
  left: 0;

  padding: 18px 24px;

  pointer-events: none;
}

.landing-page .navbar {
  max-width: var(--sv-max-width);
  min-height: 72px;

  margin: auto;
  padding: 10px 12px 10px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);

  border-radius: 100px;

  pointer-events: auto;
}

.landing-page .brand {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 800;
  font-size: 20px;

  text-decoration: none;

  letter-spacing: -0.04em;
}

.brand-name {
  color: #132021;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #10110f;
  color: #fffefe;

  font-size: 20px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: -0.03em;

  text-shadow: 0 0 10px rgba(199, 255, 103, 0.3);

  flex-shrink: 0;
}

.landing-page .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;

  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-page .nav-links a {
  position: relative;

  padding: 12px 15px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  color: #454741;

  border-radius: 100px;

  transition: 0.25s ease;
}

.landing-page .nav-links a:hover {
  color: var(--sv-dark);
  background: rgba(0, 0, 0, 0.045);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-login,
.nav-signup {
  padding: 13px 20px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  border-radius: 100px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.nav-login:hover {
  background: #eee;
}

.nav-signup {
  background: var(--sv-dark);
  color: white !important;
}

.nav-signup:hover {
  transform: translateY(-2px);
}

.landing-page .menu-toggle {
  display: none;
}

/* =========================
   HERO
========================= */

.landing-page .hero {
  position: relative;

  min-height: 100vh;

  padding: 180px max(24px, calc((100vw - var(--sv-max-width)) / 2)) 100px;

  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 3;

  min-height: 660px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  width: fit-content;

  margin-bottom: 30px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 9px 14px;

  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--sv-border);

  border-radius: 100px;

  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
   HERO BADGE LIVE SIGNAL
========================================================= */

.badge-dot {
  position: relative;

  display: inline-block;
  flex-shrink: 0;

  width: 10px;
  height: 10px;

  background: #8eea58;
  border-radius: 50%;

  box-shadow:
    0 0 0 4px rgba(142, 234, 88, 0.14),
    0 0 10px rgba(142, 234, 88, 0.65);

  animation:
    badgeDotGlow 2s ease-in-out infinite;

  z-index: 1;
}


/* First expanding signal */
.badge-dot::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  border-radius: 50%;

  background: rgba(142, 234, 88, 0.45);

  transform:
    translate(-50%, -50%)
    scale(1);

  animation:
    badgeSignal 2s ease-out infinite;

  z-index: -1;

  pointer-events: none;
}


/* Second signal wave */
.badge-dot::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  border: 1px solid rgba(142, 234, 88, 0.55);
  border-radius: 50%;

  transform:
    translate(-50%, -50%)
    scale(1);

  animation:
    badgeSignal 2s ease-out 0.65s infinite;

  z-index: -1;

  pointer-events: none;
}


/* =========================================================
   CENTER DOT GLOW
========================================================= */

@keyframes badgeDotGlow {

  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(142, 234, 88, 0.12),
      0 0 6px rgba(142, 234, 88, 0.45);
  }

  50% {
    box-shadow:
      0 0 0 5px rgba(142, 234, 88, 0.18),
      0 0 10px rgba(142, 234, 88, 0.9),
      0 0 20px rgba(142, 234, 88, 0.4);
  }

}


/* =========================================================
   EXPANDING SIGNAL
========================================================= */

@keyframes badgeSignal {

  0% {
    opacity: 0.8;

    transform:
      translate(-50%, -50%)
      scale(1);
  }

  70% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(2.8);
  }

  100% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(2.8);
  }

}

.hero-content h1 {
  margin: 0;

  max-width: 750px;

  font-size: clamp(58px, 7vw, 106px);
  line-height: 0.92;

  font-weight: 700;

  letter-spacing: -0.075em;
}

.hero-highlight {
  display: block;

  color: var(--sv-purple);

  font-style: italic;
  font-weight: 500;
}

.hero-description {
  max-width: 610px;

  margin: 36px 0 0;

  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.65;

  color: var(--sv-muted);

  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-top: 38px;
}

.primary-button,
.secondary-button {
  min-height: 58px;

  padding: 0 25px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;

  border-radius: 100px;

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  transition: 0.3s ease;
}

.primary-button {
  background: var(--sv-dark);
  color: white !important;
}

.primary-button span {
  display: grid;
  place-items: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;

  background: var(--sv-green);
  color: var(--sv-dark);
}

.primary-button:hover {
  transform: translateY(-4px);

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.secondary-button {
  border: 1px solid var(--sv-border);
}

.secondary-button:hover {
  background: white;
}

.hero-trust {
  margin-top: 54px;

  display: flex;
  align-items: center;
  gap: 25px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  color: var(--sv-muted);

  font-size: 12px;
}

.trust-divider {
  width: 1px;
  height: 32px;

  background: var(--sv-border);
}

/* =========================
   HERO VISUAL
========================= */

.hero-visual {
  position: relative;

  min-height: 620px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-main {
  position: relative;
  z-index: 2;

  width: min(100%, 500px);
  height: 590px;

  overflow: hidden;

  border-radius: 220px 220px 50px 50px;

  box-shadow: 0 40px 100px rgba(30, 22, 78, 0.18);
}

.hero-image-main > img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image-main:hover > img {
  transform: scale(1.04);
}

.image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.32), transparent 45%);
}

.teacher-pill {
  position: absolute;

  left: 28px;
  bottom: 28px;

  display: flex;
  gap: 12px;
  align-items: center;

  padding: 14px 18px;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(20px);

  border-radius: 18px;
}

.teacher-pill div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.teacher-pill strong {
  font-size: 13px;
}

.teacher-pill span {
  font-size: 11px;
  color: var(--sv-muted);
}

.online-dot {
  position: relative;

  width: 11px;
  height: 11px;

  flex-shrink: 0;

  border-radius: 50%;
  background: #51d341;

  box-shadow:
    0 0 0 6px rgba(81, 211, 65, 0.18),
    0 0 10px rgba(81, 211, 65, 0.55);

  animation: onlineDotGlow 2s ease-in-out infinite;

  z-index: 1;
}


/* First signal wave */
.online-dot::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  border-radius: 50%;

  background: rgba(81, 211, 65, 0.45);

  transform:
    translate(-50%, -50%)
    scale(1);

  animation:
    onlineSignal 2s ease-out infinite;

  z-index: -1;

  pointer-events: none;
}


/* Second signal wave */
.online-dot::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  border: 1px solid rgba(81, 211, 65, 0.55);
  border-radius: 50%;

  transform:
    translate(-50%, -50%)
    scale(1);

  animation:
    onlineSignal 2s ease-out 0.65s infinite;

  z-index: -1;

  pointer-events: none;
}


/* Main green dot glow */
@keyframes onlineDotGlow {

  0%,
  100% {
    box-shadow:
      0 0 0 5px rgba(81, 211, 65, 0.12),
      0 0 6px rgba(81, 211, 65, 0.45);
  }

  50% {
    box-shadow:
      0 0 0 6px rgba(81, 211, 65, 0.18),
      0 0 12px rgba(81, 211, 65, 0.9),
      0 0 22px rgba(81, 211, 65, 0.4);
  }

}


/* Expanding radar signal */
@keyframes onlineSignal {

  0% {
    opacity: 0.8;

    transform:
      translate(-50%, -50%)
      scale(1);
  }

  70% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(2.8);
  }

  100% {
    opacity: 0;

    transform:
      translate(-50%, -50%)
      scale(2.8);
  }

}

.visual-orbit {
  position: absolute;

  width: 570px;
  height: 570px;

  border: 1px solid rgba(117, 89, 255, 0.16);

  border-radius: 50%;

  animation: rotateOrbit 20s linear infinite;
}

.visual-orbit::before {
  content: "";

  position: absolute;

  width: 24px;
  height: 24px;

  top: 80px;
  right: 30px;

  background: var(--sv-green);

  border-radius: 50%;

  box-shadow: 0 0 45px rgba(185, 255, 102, 0.8);
}

@keyframes rotateOrbit {
  to {
    transform: rotate(360deg);
  }
}

.floating-card {
  position: absolute;
  z-index: 4;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 17px 20px;

  border: 1px solid rgba(255, 255, 255, 0.7);

  background: rgba(255, 255, 255, 0.83);

  backdrop-filter: blur(20px);

  border-radius: 20px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.11);

  animation: floatCard 5s ease-in-out infinite;
}

.floating-card div:not(.mini-avatars) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card span {
  color: var(--sv-muted);

  font-size: 11px;
}

.floating-card-top {
  top: 80px;
  right: -20px;
}

.floating-card-bottom {
  bottom: 80px;
  left: -60px;

  animation-delay: -2s;
}

.floating-icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  background: var(--sv-purple-soft);
  color: var(--sv-purple) !important;

  border-radius: 12px;
}

.mini-avatars {
  display: flex;
}

.mini-avatars img {
  width: 34px;
  height: 34px;

  object-fit: cover;

  border: 3px solid white;

  border-radius: 50%;
}

.mini-avatars img:not(:first-child) {
  margin-left: -11px;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* =========================
   HERO GLOWS
========================= */

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(0);
  opacity: 0.65;

  pointer-events: none;
}

.hero-glow-one {
  width: 500px;
  height: 500px;

  right: -80px;
  top: 100px;

  background: radial-gradient(
    circle,
    rgba(188, 172, 255, 0.65),
    transparent 70%
  );
}

.hero-glow-two {
  width: 500px;
  height: 500px;

  left: -250px;
  bottom: -180px;

  background: radial-gradient(
    circle,
    rgba(185, 255, 102, 0.5),
    transparent 70%
  );
}

/* =========================================================
   SKILLVINE SKILL MARQUEE
========================================================= */

.skill-marquee {
  position: relative;

  width: 100%;
  height: 72px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #10110f;
}


/* =========================================================
   MOVING TRACK
========================================================= */

.marquee-track {
  display: flex;
  align-items: center;

  width: max-content;

  /*
    Constant movement.
  */
  animation:
    skillMarquee 32s linear infinite;

  will-change: transform;
}


/* =========================================================
   EACH MARQUEE COPY
========================================================= */

.marquee-group {
  display: flex;
  align-items: center;

  flex-shrink: 0;

  /*
    Ito yung malaking spacing
    na gusto natin.
  */
  gap: clamp(48px, 4.5vw, 100px);

  /*
    Same spacing between end
    and beginning of next copy.
  */
  padding-right:
    clamp(48px, 4.5vw, 100px);

  white-space: nowrap;
}


/* =========================================================
   TEXT
========================================================= */

.marquee-group span {
  flex-shrink: 0;

  color: #f4f4f0;

  font-family: "Inter", sans-serif;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: -0.01em;

  white-space: nowrap;
}


/* =========================================================
   GREEN STAR / SEPARATOR
========================================================= */

.marquee-group i {
  flex-shrink: 0;

  color: #b4ff5a;

  font-size: 14px;
  font-style: normal;

  line-height: 1;
}


/* =========================================================
   LOOP
========================================================= */

@keyframes skillMarquee {

  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }

}


/* =========================================================
   HOVER
========================================================= */

.skill-marquee:hover .marquee-track {
  animation-play-state: paused;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .skill-marquee {
    height: 62px;
  }

  .marquee-group {
    gap: 44px;
    padding-right: 44px;
  }

  .marquee-group span {
    font-size: 13px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .marquee-track {
    animation-play-state: paused;
  }

}

/* =========================
   INTRO SECTION
========================= */

.intro-section {
  max-width: var(--sv-max-width);

  margin: auto;

  padding: 150px 24px;
}

.section-eyebrow {
  margin-bottom: 55px;

  display: flex;
  align-items: center;
  gap: 13px;

  color: var(--sv-muted);

  text-transform: uppercase;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.section-eyebrow span {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border: 1px solid var(--sv-border);

  border-radius: 50%;

  font-size: 10px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;

  gap: 100px;
}

.intro-grid h2 {
  margin: 0;

  max-width: 820px;

  font-size: clamp(48px, 5vw, 78px);
  line-height: 1;

  letter-spacing: -0.06em;

  font-weight: 600;
}

.intro-grid h2 span {
  color: #aaa;
}

.intro-copy {
  align-self: end;
}

.intro-copy p {
  margin: 0 0 20px;

  color: var(--sv-muted);

  line-height: 1.75;

  font-size: 16px;
}

/* =========================
   SKILL GALLERY
========================= */

.skill-gallery {
  max-width: var(--sv-max-width);

  margin: auto;

  padding: 0 24px 150px;

  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-rows: repeat(2, 300px);

  gap: 18px;
}

.skill-card {
  position: relative;

  overflow: hidden;

  min-height: 300px;

  border-radius: var(--sv-radius-md);
}

.skill-card-large {
  grid-row: span 2;
}

.skill-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.skill-card:hover img {
  transform: scale(1.06);
}

.skill-card-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0) 65%
  );
}

.skill-card-content {
  position: absolute;

  left: 34px;
  bottom: 30px;

  color: white;
}

.skill-card-content span {
  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.skill-card-content h3 {
  margin: 8px 0 3px;

  font-size: 30px;

  letter-spacing: -0.04em;
}

.skill-card-large h3 {
  font-size: clamp(40px, 4vw, 58px);
}

.skill-card-content p {
  margin: 10px 0 0;

  color: rgba(255, 255, 255, 0.78);
}

/* =========================
   FEATURES
========================= */

.landing-page .features {
  max-width: var(--sv-max-width);

  margin: auto;

  padding: 20px 24px 160px;

  background: transparent;
}

.features-heading {
  margin-bottom: 60px;

  display: flex;
  justify-content: space-between;
  align-items: end;
}

.features-heading .section-eyebrow {
  margin: 0;
}

.features-heading h2 {
  max-width: 710px;

  margin: 0;

  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;

  letter-spacing: -0.06em;
}

.features-heading h2 span {
  color: #a0a19d;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.feature-card-new {
  position: relative;

  min-height: 410px;

  padding: 32px;

  display: flex;
  flex-direction: column;

  background: white;

  border: 1px solid var(--sv-border);

  border-radius: var(--sv-radius-md);

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
}

.feature-card-new:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.featured-card {
  background: var(--sv-green);
}

.feature-number {
  color: #92948e;

  font-size: 11px;

  margin-bottom: 55px;
}

.feature-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  background: var(--sv-dark);
  color: white;

  border-radius: 16px;

  margin-bottom: 30px;

  font-size: 21px;
}

.feature-card-new h3 {
  margin: 0;

  font-size: 26px;

  letter-spacing: -0.04em;
}

.feature-card-new p {
  max-width: 320px;

  margin: 17px 0 0;

  color: #62645e;

  line-height: 1.65;

  font-size: 14px;
}

.feature-arrow {
  position: absolute;

  right: 28px;
  bottom: 28px;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(0, 0, 0, 0.12);

  border-radius: 50%;

  transition: 0.3s ease;
}

.feature-card-new:hover .feature-arrow {
  transform: rotate(45deg);

  background: var(--sv-dark);
  color: white;
}

/* =========================
   APP SHOWCASE
========================= */

.landing-page .app-showcase {
  position: relative;

  margin: 0 18px 18px;

  padding: 110px max(24px, calc((100vw - var(--sv-max-width)) / 2)) 50px;

  overflow: hidden;

  background: #111210;
  color: white;

  border-radius: 44px;
}

.app-showcase-heading {
  margin-bottom: 80px;

  display: grid;
  grid-template-columns: 1fr 0.6fr;

  gap: 100px;
  align-items: end;
}

.light-eyebrow {
  color: #8e928a;
}

.light-eyebrow span {
  border-color: rgba(255, 255, 255, 0.15);
}

.app-showcase-heading h2 {
  margin: 0;

  max-width: 700px;

  font-size: clamp(54px, 6vw, 85px);

  line-height: 0.96;

  letter-spacing: -0.07em;
}

.app-showcase-heading h2 span {
  display: block;

  color: var(--sv-green);
}

.app-showcase-copy p {
  color: #a9aca5;

  line-height: 1.7;

  margin-bottom: 28px;
}

.app-download-button {
  display: inline-flex;
  align-items: center;
  gap: 30px;

  padding: 17px 21px;

  background: white;
  color: var(--sv-dark) !important;

  text-decoration: none;

  border-radius: 100px;

  font-size: 13px;
  font-weight: 700;

  transition: 0.3s ease;
}

.app-download-button span {
  color: #73766f;
}

.app-download-button:hover {
  transform: translateY(-4px);
}

.landing-page .app-carousel {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding: 40px 0;
}

.landing-page .app-carousel::before,
.landing-page .app-carousel::after {
  content: "";

  position: absolute;
  z-index: 10;

  top: 0;

  width: 100px;
  height: 100%;

  pointer-events: none;
}

.landing-page .app-carousel::before {
  left: 0;

  background: linear-gradient(to right, #111210, transparent);
}

.landing-page .app-carousel::after {
  right: 0;

  background: linear-gradient(to left, #111210, transparent);
}

.landing-page .app-track {
  width: max-content;

  display: flex;
  gap: 22px;

  animation: appScroll 28s linear infinite;
}

.landing-page .app-track:hover {
  animation-play-state: paused;
}

.landing-page .app-phone {
  width: 260px;
  flex-shrink: 0;

  overflow: hidden;

  border: 8px solid #0e0f0d;

  border-radius: 35px;

  background: #222;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);

  transition: 0.35s ease;
}

.landing-page .app-phone:hover {
  transform: translateY(-12px);
}

.landing-page .app-phone img {
  display: block;

  width: 100%;
  height: auto;
}

@keyframes appScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-45%);
  }
}

.app-credit {
  margin-top: 35px;

  text-align: center;

  color: #696d65;

  font-size: 12px;
}

.app-credit a {
  color: #aaa;

  text-decoration: none;
}

/* =========================
   FINAL CTA
========================= */

.final-cta {
  position: relative;

  min-height: 720px;

  margin: 18px;

  padding: 100px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  overflow: hidden;

  background: var(--sv-purple);

  border-radius: 44px;
}

.final-cta::before {
  content: "";

  position: absolute;

  width: 900px;
  height: 900px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50%;
}

.final-cta::after {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  border-radius: 50%;
}

.final-cta-glow {
  position: absolute;

  width: 650px;
  height: 650px;

  background: radial-gradient(
    circle,
    rgba(185, 255, 102, 0.26),
    transparent 65%
  );
}

.final-cta-content {
  position: relative;
  z-index: 4;

  max-width: 900px;

  color: white;
}

.cta-label {
  display: inline-block;

  margin-bottom: 30px;

  font-size: 12px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}

.final-cta h2 {
  margin: 0;

  font-size: clamp(58px, 8vw, 110px);

  line-height: 0.9;

  font-weight: 600;

  letter-spacing: -0.075em;
}

.final-cta h2 span {
  display: block;

  color: var(--sv-green);

  font-style: italic;
}

.final-cta p {
  max-width: 560px;

  margin: 32px auto;

  color: rgba(255, 255, 255, 0.7);

  font-size: 17px;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 25px;

  padding: 18px 25px;

  background: white;
  color: var(--sv-dark) !important;

  border-radius: 100px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition: 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* =========================
   POPUPS
========================= */

.landing-page .tab-popup {
  position: fixed;
  z-index: 3000;

  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(9, 10, 8, 0.54);

  backdrop-filter: blur(14px);
}

.landing-page .tab-popup.active {
  display: flex;
}

.landing-page .tab-content {
  position: relative;

  width: min(100%, 540px);

  padding: 46px;

  background: white;

  border-radius: 30px;

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
}

.landing-page .close-tab {
  position: absolute;

  right: 20px;
  top: 18px;

  width: 38px;
  height: 38px;

  border: 0;

  border-radius: 50%;

  background: #eee;

  font-size: 25px;

  cursor: pointer;
}

.modal-label {
  color: var(--sv-purple);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.tab-content h2 {
  margin: 15px 0;

  font-size: 37px;

  line-height: 1.05;

  letter-spacing: -0.05em;
}

.tab-content > p {
  color: var(--sv-muted);

  line-height: 1.7;
}

.modal-list {
  margin-top: 30px;
}

.modal-list > div {
  padding: 20px 0;

  border-bottom: 1px solid var(--sv-border);
}

.modal-list strong {
  font-size: 14px;
}

.modal-list p {
  margin: 7px 0 0;

  color: var(--sv-muted);

  font-size: 13px;
}

.contact-details {
  margin-top: 25px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  font-weight: 600;
}

.contact-details a {
  color: var(--sv-purple);
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

/* =========================
   FOOTER
========================= */

.landing-page .site-footer {
  padding: 70px 24px 45px;

  background: var(--sv-bg);
}

.footer-inner {
  max-width: var(--sv-max-width);

  margin: auto;

  padding-top: 30px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  align-items: center;

  border-top: 1px solid var(--sv-border);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;

  font-weight: 800;
}

.footer-inner > p {
  color: var(--sv-muted);

  font-size: 12px;

  text-align: center;
}

.footer-copy {
  text-align: right !important;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1000px) {
  .landing-page .site-header {
    padding: 12px;
  }

  .landing-page .navbar {
    border-radius: 24px;
  }

  .landing-page .menu-toggle {
    width: 42px;
    height: 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    border: 0;

    background: #eee;

    border-radius: 50%;

    cursor: pointer;
  }

  .landing-page .menu-toggle span {
    width: 17px;
    height: 2px;

    margin: 0 auto;

    background: var(--sv-dark);

    border-radius: 10px;
  }

  .landing-page .nav-links {
    position: absolute;

    left: 12px;
    right: 12px;
    top: 88px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    padding: 15px;

    background: rgba(255, 255, 255, 0.98);

    border-radius: 22px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  }

  .landing-page .nav-links.active {
    display: flex;
  }

  .landing-page .nav-links a {
    display: block;

    padding: 15px;
  }

  .nav-actions {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 70px;
  }

  .hero-content {
    text-align: center;

    margin: auto;
  }

  .hero-badge,
  .hero-actions,
  .hero-trust {
    justify-content: center;

    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    min-height: 550px;
  }

  .hero-image-main {
    height: 520px;

    width: min(90%, 450px);
  }

  .floating-card-top {
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .skill-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 300px;
  }

  .skill-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .features-heading {
    display: block;
  }

  .features-heading .section-eyebrow {
    margin-bottom: 40px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-new {
    min-height: 330px;
  }

  .app-showcase-heading {
    grid-template-columns: 1fr;

    gap: 45px;
  }
}

@media (max-width: 650px) {
  .landing-page .hero {
    padding-top: 140px;
  }

  .hero-content h1 {
    font-size: clamp(52px, 16vw, 74px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-trust {
    gap: 14px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-image-main {
    height: 440px;

    border-radius: 160px 160px 35px 35px;
  }

  .floating-card {
    padding: 12px;

    transform: scale(0.85);
  }

  .floating-card-top {
    right: -35px;
  }

  .floating-card-bottom {
    left: -35px;
  }

  .intro-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .intro-grid h2 {
    font-size: 45px;
  }

  .skill-gallery {
    display: flex;
    flex-direction: column;
  }

  .skill-card,
  .skill-card-large {
    min-height: 430px;
  }

  .features-heading h2 {
    font-size: 46px;
  }

  .landing-page .app-showcase {
    margin: 8px;

    padding-top: 80px;

    border-radius: 30px;
  }

  .app-showcase-heading h2 {
    font-size: 52px;
  }

  .landing-page .app-phone {
    width: 210px;
  }

  .final-cta {
    min-height: 600px;

    margin: 8px;

    border-radius: 30px;
  }

  .final-cta h2 {
    font-size: 58px;
  }

  .footer-inner {
    grid-template-columns: 1fr;

    gap: 25px;

    justify-items: center;
  }

  .footer-copy {
    text-align: center !important;
  }

  .landing-page .site-header {
    transition:
      padding 0.3s ease,
      transform 0.3s ease;
  }

  .landing-page .site-header.scrolled {
    padding-top: 10px;
  }

  .landing-page .site-header.scrolled .navbar {
    box-shadow:
      0 15px 50px rgba(0, 0, 0, 0.09),
      inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  }
}


/* =========================================================
   GLOBAL SMOOTH SCROLL / ACCESSIBILITY
========================================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* =========================================================
   NAVBAR SCROLL EFFECT — DESKTOP + MOBILE
========================================================= */

.landing-page .site-header {
  transition:
    padding 0.3s ease,
    transform 0.3s ease;
}

.landing-page .site-header.scrolled {
  padding-top: 10px;
}

.landing-page .site-header.scrolled .navbar {
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.09),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}


/* =========================================================
   SCROLL-DRIVEN SKILL SHOWCASE
   Five stages. The section stays pinned while images change.
========================================================= */

.skill-showcase {
  position: relative;
  height: 360vh;

  background: var(--sv-bg);
}

.skill-showcase-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 96px 24px 34px;
  overflow: hidden;
}

.skill-showcase .skill-gallery {
  width: 100%;
  max-width: var(--sv-max-width);
  height: min(72vh, 690px);

  margin: 0 auto;
  padding: 0;

  display: grid;
  grid-template-columns:
    minmax(0, 1.5fr)
    minmax(320px, 0.85fr);
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 18px;
}

.skill-showcase .skill-card {
  position: relative;
  min-height: 0;
  overflow: hidden;

  border-radius: 30px;
  background: #181818;

  isolation: isolate;
}

.skill-showcase .skill-card-large {
  grid-row: 1 / 3;
}

.skill-showcase .skill-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.01);

  transition:
    opacity 0.28s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);

  will-change: opacity, transform;
}

.skill-showcase .skill-card img.image-changing {
  opacity: 0;

  transform: scale(1.025);
}


.skill-showcase .skill-card:hover img {
  transform: scale(1.045);
}

.skill-showcase .skill-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.28) 45%,
      rgba(0, 0, 0, 0.04) 76%
    );
}

.skill-showcase .skill-card-content {
  position: absolute;
  z-index: 3;

  left: 36px;
  right: 36px;
  bottom: 32px;

  color: #fff;

  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.skill-showcase.is-changing .skill-card-content {
  opacity: 0.35;
  transform: translateY(8px);
}

.skill-showcase .skill-card-content span {
  display: block;
  margin-bottom: 13px;

  color: rgba(255, 255, 255, 0.74);

  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;

  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.skill-showcase .skill-card-content h3 {
  margin: 0;

  color: #fff;

  font-size: clamp(30px, 3.3vw, 54px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.skill-showcase .skill-card:not(.skill-card-large) .skill-card-content h3 {
  font-size: clamp(25px, 2.1vw, 34px);
}

.skill-showcase .skill-card-content p {
  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.84);

  font-size: 16px;
  line-height: 1.55;
}


/* =========================================================
   SHOWCASE PROGRESS
========================================================= */

.skill-showcase-progress {
  width: 100%;
  max-width: var(--sv-max-width);

  margin: 22px auto 0;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.skill-progress-label,
.skill-progress-number {
  color: #787b75;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;

  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.skill-progress-number {
  min-width: 56px;
  text-align: right;
}

.skill-progress-track {
  position: relative;

  width: 100%;
  height: 3px;

  overflow: hidden;

  background: rgba(16, 17, 15, 0.12);
  border-radius: 999px;
}

.skill-progress-bar {
  width: 0%;
  height: 100%;

  background: var(--sv-dark);
  border-radius: inherit;

  transform-origin: left center;

  transition: width 0.16s ease-out;
}

.skill-scroll-hint {
  width: 100%;
  max-width: var(--sv-max-width);

  margin: 12px auto 0;

  color: #9a9c96;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}


/* =========================================================
   SHOWCASE RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
  .skill-showcase {
    height: 450vh;
  }

  .skill-showcase-sticky {
    padding: 96px 18px 26px;
  }

  .skill-showcase .skill-gallery {
    height: 72vh;

    grid-template-columns: 1fr 1fr;
    grid-template-rows:
      minmax(300px, 1.5fr)
      minmax(190px, 0.8fr);
  }

  .skill-showcase .skill-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 650px) {
  .skill-showcase {
    height: 420vh;
  }

  .skill-showcase-sticky {
    padding: 88px 12px 22px;
  }

  .skill-showcase .skill-gallery {
    height: 74vh;
    gap: 10px;

    grid-template-columns: 1fr 1fr;
    grid-template-rows:
      minmax(320px, 1.6fr)
      minmax(165px, 0.75fr);
  }

  .skill-showcase .skill-card {
    min-height: 0;
    border-radius: 20px;
  }

  .skill-showcase .skill-card-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .skill-showcase .skill-card-content h3 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .skill-showcase .skill-card:not(.skill-card-large) .skill-card-content h3 {
    font-size: clamp(18px, 5.8vw, 26px);
  }

  .skill-showcase .skill-card-content p {
    display: none;
  }

  .skill-showcase-progress {
    margin-top: 16px;
    gap: 10px;
  }

  .skill-progress-label {
    display: none;
  }

  .skill-scroll-hint {
    margin-top: 9px;
    text-align: center;
  }


  .skill-showcase .skill-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.01);

  transition:
    opacity 0.28s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);

  will-change: opacity, transform;
}

.skill-showcase .skill-card img.image-changing {
  opacity: 0;

  transform: scale(1.025);
}

/* =========================================================
   FEATURE CARD SPOTLIGHT — DARK + SOFT BLUR
========================================================= */

#feature-focus-overlay {
  position: fixed;
  inset: 0;

  z-index: 99990;

  background: rgba(8, 8, 8, 0.58);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

#feature-focus-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* Original card stays hoverable */
.feature-card-new.feature-source-hidden {
  opacity: 0 !important;
}


/* Focused card clone */
.feature-focus-clone {
  position: fixed !important;

  z-index: 100000 !important;

  margin: 0 !important;

  opacity: 1 !important;
  visibility: visible !important;

  pointer-events: none !important;

  filter: none !important;

  animation: none !important;

  transform:
    translateY(-6px)
    scale(1.025) !important;

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42) !important;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}


/* White cards */
.feature-focus-clone:not(.featured-card) {
  background: #ffffff !important;
}


/* Green Skillvine Coins */
.feature-focus-clone.featured-card {
  background:
    linear-gradient(
      145deg,
      #c4ff72,
      #adff52
    ) !important;

  box-shadow:
    0 35px 100px rgba(163, 255, 72, 0.3) !important;
}


/* Ensure text stays sharp */
.feature-focus-clone *,
.feature-focus-clone h3,
.feature-focus-clone p,
.feature-focus-clone span,
.feature-focus-clone div {
  filter: none !important;
  opacity: 1 !important;
}


/* Slightly emphasize focused text */
.feature-focus-clone h3 {
  color: #10110f !important;
}

.feature-focus-clone p {
  color: #555a53 !important;
}


/* Focused icon */
.feature-focus-clone .feature-icon {
  background: #10110f !important;
  color: white !important;

  transform:
    translateY(-3px)
    scale(1.06);
}


/* Focused arrow */
.feature-focus-clone .feature-arrow {
  background: #10110f !important;
  color: white !important;

  transform:
    rotate(45deg)
    scale(1.06);
}


/* Make transitions clean */
.feature-card-new {
  transition:
    opacity 0.15s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* Mobile / touch devices */
@media (hover: none),
       (pointer: coarse) {

  #feature-focus-overlay {
    display: none;
  }

  .feature-focus-clone {
    display: none !important;
  }

  .feature-card-new.feature-source-hidden {
    opacity: 1 !important;
  }
}
}