*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Calibri', sans-serif;
  background: #fff;
  color: #1a1a2e;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

button {
  font-family: 'Calibri', sans-serif;
  cursor: pointer;
  border: none
}

:root {
  --teal: #04ddbd;
  --teal2: #00E5CC;
  --teal3: #00F5DC;
  --purple: #310075;
  --purple2: #3D2889;
  --purple3: #1a1040;
  --orange: #E8440A;
  --orange2: #FF5722;
  --white: #FFFFFF;
  --light: #F7F8FC;
  --light2: #ECEEF6;
  --dark: #120D3A;
  --slate: #5C6080;
  --slate2: #8890B0;
  --grad: linear-gradient(135deg, var(--purple) 0%, var(--purple2) 100%);
  --grad-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
  --shadow: 0 8px 40px rgba(49, 0, 117, .15);
  --shadow-lg: 0 24px 80px rgba(49, 0, 117, .22);
  --t: .35s;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --rad: 16px;
  --accent-orange: rgb(244 85 12);
  --accent-orange-hover: rgb(255 100 20);
}

.product-tm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 2.4em;
  /* border: 1px solid var(--purple); */
  border-radius: 50%;
  font-size: 0.45em;
  font-weight: 800;
  vertical-align: top;
  margin-left: 4px;
  position: relative;
  top: -1.1em;
  line-height: 1;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.08)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes countUp {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(4, 221, 189, .3)
  }

  50% {
    box-shadow: 0 0 50px rgba(4, 221, 189, .6)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal.from-left {
  transform: translateX(-60px);
}

.reveal.from-right {
  transform: translateX(60px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0)
}

/* ── UTILS ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: all var(--t) var(--ease);
  cursor: pointer
}

.btn-teal {
  background: var(--accent-orange);
  color: var(--white);
}

.btn-teal:hover {
  transform: translateY(-3px);
  background: var(--accent-orange-hover);
  box-shadow: 0 12px 36px rgba(244, 85, 12, 0.45)
}

.btn-white {
  background: var(--white);
  color: var(--purple)
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 255, 255, .3)
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal)
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--purple3)
}

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
  display: block
}

.teal {
  color: var(--teal)
}

.text-center {
  text-align: center
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  height: 65px;
  z-index: 900;
  background: var(--purple);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#nav.scrolled {
  top: 12px;
  width: 98%;
  background: rgba(49, 0, 117, 0.98);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}



.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}


.nav-logo {
  cursor: pointer;
  display: flex;
  align-items: center
}

.nav-logo img {
  height: 36px;
  width: auto
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none
}

.nav-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--teal);
  opacity: 0.85;
  border-radius: 8px;
  transition: all var(--t);
  cursor: pointer;
  position: relative;
  letter-spacing: .01em
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #fff;
  opacity: 1;
  background: rgba(4, 221, 189, .15);
}

/* ── MEGA MENU ── */
.has-submenu {
  position: static;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 35px; /* Large bridge area to prevent gap closure */
  top: 70%; /* Pulling it up higher toward the nav text */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(10px);
  z-index: 1000;
  pointer-events: none;
}

/* Hover Bridge ensuring a solid hit area */
.mega-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px; /* Bridge thickness matching the nav-inner distance */
  background: transparent;
}

.has-submenu:hover .mega-box {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.mega-box .content {
  background: var(--purple, #22035C);
  padding: 40px;
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: normal;
}

.mega-box .content .row.img-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .row img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 12px;
}

.content .row header {
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.content .row .mega-links {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.row .mega-links li {
  padding: 0 !important;
  margin-bottom: 5px !important;
  list-style: none !important;
}

.row .mega-links li a {
  padding: 10px 15px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all 0.2s ease !important;
  border-radius: 8px !important;
  background: transparent !important;
  opacity: 1 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.row .mega-links li a iconify-icon {
  font-size: 1.4rem;
  color: var(--teal);
}

.row .mega-links li a:hover {
  background: rgba(4, 221, 189, 0.1) !important;
  color: #fff !important;
  transform: translateX(5px);
}

/* Trademarks in mega menu */
.row .mega-links li a .product-tm {
  border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile adjustments for mega box - ALWAYS EXPANDED */
@media screen and (max-width: 970px) {
  .mega-box {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0;
    max-height: none !important; /* Force fully expanded */
    overflow: visible;
    transition: none;
    transform: none;
    pointer-events: auto;
    display: block !important;
  }

  .mob-has-submenu .mega-box {
     margin-bottom: 20px;
  }

  .mega-box .content {
    background: transparent;
    flex-direction: column;
    padding: 15px 15px 15px 25px;
    box-shadow: none;
    border: none;
    width: 100%;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 20px;
  }

  .mega-box .content .row.img-row {
    display: none;
  }

  .content .row header {
    font-size: 0.95rem;
    margin-bottom: 12px;
    opacity: 0.6;
  }

  .content .row .mega-links {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .row .mega-links li a {
    font-size: 0.9rem !important;
    padding: 8px 12px !important;
  }
}


.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-btn-login {
  font-size: .85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--teal);
  opacity: 0.8;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--t);
  cursor: pointer
}

.nav-btn-login:hover {
  opacity: 1;
  color: #fff;
}


.nav-btn-signup {
  background: var(--accent-orange);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 9px 22px;
  border-radius: 50px;
  transition: all var(--t);
  display: inline-block
}

.nav-btn-signup:hover {
  transform: translateY(-1px);
  background: var(--accent-orange-hover);
  box-shadow: 0 6px 20px rgba(244, 85, 12, 0.4)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--t)
}


.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.burger.open span:nth-child(2) {
  opacity: 0
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mob-menu {
  display: none;
  position: fixed;
  top: 105px;
  left: 2.5%;
  right: 2.5%;
  background: rgba(49, 0, 117, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 899;
  padding: 32px;
  flex-direction: column;
  gap: 4px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  max-height: calc(100vh - 120px);
}



.mob-menu.open {
  display: flex;
  animation: fadeIn .2s ease
}

.mob-menu a {
  display: block;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--teal);
  opacity: 0.8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all var(--t)
}

.mob-menu a:hover {
  opacity: 1;
  color: #fff;
}


.mob-btns {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

/* ── PAGE SYSTEM ── */
.page {
  display: none;
  animation: pageIn .45s var(--ease) both
}

.page.active {
  display: block
}

/* ── CIRCLES DECORATOR ── */
.circle-dec {
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.circle-solid {
  background: var(--purple)
}

.circle-teal {
  background: var(--teal)
}

.circle-ring {
  background: transparent;
  border: 3px solid var(--purple);
  opacity: .3
}

.circle-ring-teal {
  background: transparent;
  border: 3px solid var(--teal);
  opacity: .3
}

/* ═══════════════════════════════════
       PAGE: HOME — HERO (original split layout)
    ═══════════════════════════════════ */
#page-home .hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: #000b0b;
}

/* Purple gradient covers right half on desktop */
#page-home .hero::before {
  content: '';
  position: absolute;
  inset: 0 0 0 50%;
  background: var(--grad);
  z-index: 0;
}

/* Particle canvas covers entire hero */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* LEFT: city image with teal overlay */
.hero-left {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .85;
}

.hero-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 221, 189, .7) 0%, rgba(0, 100, 90, .5) 100%);
}

/* RIGHT: purple grad side with text */
.hero-right {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 60px;
  position: relative;
  z-index: 2;
}

.hero-right-content {
  position: relative;
  z-index: 10;
}

.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  animation: fadeUp .7s ease .1s both;
}

.hero-right h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  color: var(--teal);
  line-height: .95;
  letter-spacing: -.02em;
  animation: fadeUp .8s ease .2s both;
}

.hero-tagline-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .15em;
  animation: fadeUp .8s ease .35s both;
}

.hero-headline {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 28px;
  margin-bottom: 36px;
  animation: fadeUp .8s ease .5s both;
  max-width: 380px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .65s both;
}

.hero-circ1 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  animation: float 7s ease-in-out infinite;
  background: rgba(4, 221, 189, .08);
  border: 2px solid rgba(4, 221, 189, .2);
}

.hero-circ2 {
  width: 150px;
  height: 150px;
  top: 80px;
  right: 60px;
  animation: float 5s ease-in-out 1s infinite;
  background: rgba(255, 255, 255, .04);
}

/* ── HERO TABLET (≤1024px): keep split, just adjust padding ── */
@media (max-width: 1024px) {
  #page-home .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
  }

  #page-home .hero::before {
    inset: 0 0 0 50%;
  }

  .hero-left {
    display: flex;
  }

  .hero-right {
    padding: 100px 36px 60px;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-right h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
  }

  .hero-headline {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-tagline-sub {
    font-size: .8rem;
    letter-spacing: .1em;
  }
}

/* ── HERO MOBILE (≤768px): stack — image on top, text below ── */
@media (max-width: 768px) {
  #page-home .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 45vw 1fr;
    min-height: 100svh;
  }

  /* Purple background covers full hero on mobile */
  #page-home .hero::before {
    inset: 0;
  }

  /* Left image panel shown on top as a banner */
  .hero-left {
    display: flex;
    min-height: 45vw;
    max-height: 280px;
  }

  .hero-right {
    padding: 36px 24px 60px;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
  }

  .hero-right h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .hero-headline {
    font-size: .96rem;
    margin-top: 18px;
    margin-bottom: 26px;
    max-width: 100%;
  }

  .hero-tagline {
    font-size: .64rem;
    letter-spacing: .2em;
    margin-bottom: 14px;
  }

  .hero-tagline-sub {
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-circ1 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -40px;
  }

  .hero-circ2 {
    width: 90px;
    height: 90px;
    top: 20px;
    right: 20px;
  }
}

/* ── HERO SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  #page-home .hero {
    grid-template-rows: 38vw 1fr;
  }

  .hero-left {
    min-height: 38vw;
    max-height: 220px;
  }

  .hero-right {
    padding: 28px 18px 50px;
  }

  .hero-right h1 {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
  }

  .hero-headline {
    font-size: .9rem;
  }

  .hero-btns .btn {
    max-width: 100%;
  }
}

/* MARQUEE */
.marquee-bar {
  background: var(--purple);
  overflow: hidden;
  border-top: 1px solid rgba(4, 221, 189, .2);
  border-bottom: 1px solid rgba(4, 221, 189, .2);
  padding: 18px 0
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 24s linear infinite
}

.mq-item {
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px
}

.mq-item::before {
  content: '◆';
  color: var(--teal);
  font-size: .45rem
}

/* HOME ABOUT */
.home-about {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden
}

.ha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.ha-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px
}

.ha-left p {
  font-size: .97rem;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 14px
}

.ha-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px
}

.ha-pill {
  background: rgba(49, 0, 117, .07);
  border: 1px solid rgba(49, 0, 117, .15);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: .82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--purple)
}

.ha-right {
  position: relative
}

.arc-wrap {
  width: 400px;
  height: 400px;
  position: relative;
  margin: 0 auto
}

.arc-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--purple);
  position: relative;
  overflow: hidden
}

.arc-inner {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: var(--teal);
  top: 0;
  right: 0;
  transform: translate(20%, -20%)
}

/* MARKET */
.market-section {
  background: var(--light);
  padding: 110px 0;
  position: relative;
  overflow: hidden
}

.market-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 10px
}

.market-title .word-teal {
  color: var(--teal)
}

.market-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 28px
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 44px
}

.market-card {
  background: var(--white);
  border-radius: var(--rad);
  padding: 26px;
  border: 1px solid rgba(49, 0, 117, .08);
  transition: all var(--t)
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.mc-icon {
  font-size: 1.8rem;
  margin-bottom: 14px
}

.mc-title {
  font-size: .88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
  color: var(--purple)
}

.mc-desc {
  font-size: .83rem;
  color: var(--slate);
  line-height: 1.65
}

.market-bottom {
  margin-top: 50px;
  background: var(--purple);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center
}

.mb-result h4,
.mb-opp h4 {
  font-size: .75rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px
}

.mb-result p,
.mb-opp p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7
}

/* PAIN POINTS */
.pain-section {
  padding: 110px 0;
  background: var(--white);
  overflow: hidden
}

.pain-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px
}

.pain-subtitle {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 48px
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start
}

.pain-stakeholder {
  text-align: center;
  padding: 36px 24px;
  background: var(--light);
  border-radius: 20px;
  border: 2px solid rgba(49, 0, 117, .1)
}

.ps-icon {
  font-size: 3rem;
  margin-bottom: 12px
}

.ps-label {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--teal)
}

.ps-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 6px
}

.pain-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.pain-col-head {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  text-align: center;
  display: flex;
  align-items: center;
}

.pc-head-problem {
  background: var(--purple);
  color: var(--teal)
}

.pc-head-text {
  color: #04ddbd;
  font-weight: bold;
  letter-spacing: 3px;
  margin-left: 10px;
}

.circle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5ff3dd, #04ddbd);

}

.pc-head-solution {
  background: var(--teal);
  color: var(--purple);
}

.purple-check {
  color: var(--purple);
  font-weight: bold;
  margin-right: 10px;
}

.pain-item-p {
  background: var(--white);
  border: 1px solid var(--purple);
  border-radius: 10px;
  padding: 13px 13px;
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 9px;
  line-height: 1.5
}

.pain-item-s {
  background: var(--white);
  border: 1px solid var(--purple);
  border-radius: 10px;
  padding: 13px 13px;
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 9px;
  line-height: 1.5;
  font-weight: 500
}

/* COMPETITIVE EDGE */
.edge-section {
  background: var(--light);
  padding: 110px 0;
  overflow: hidden
}

.edge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px
}

.edge-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(49, 0, 117, .08);
  transition: all var(--t)
}

.edge-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px)
}

.ec-top {
  height: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.ec-top-1 {
  background: var(--purple);
}

.ec-top-2 {
  background: var(--teal);
}

.ec-top-icon {
  position: absolute;
  bottom: 13px;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2
}

.ec-icon-1 {
  background: var(--teal);
}

.ec-icon-2 {
  background: var(--purple)
}

.ec-body {
  padding: 44px 32px 32px
}

.ec-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  text-align: center
}

.ec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ec-list li {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.5
}

.ec-list li::before {
  content: '▸';
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px
}

/* STATS */
.stats-section {
  background: var(--grad);
  padding: 90px 0;
  position: relative;
  overflow: hidden
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(4, 221, 189, .06) 1px, transparent 1px);
  background-size: 32px 32px
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
  z-index: 1
}

.stat-item {
  padding: 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, .1)
}

.stat-item:last-child {
  border: none
}

.stat-n {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1
}

.stat-l {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 10px;
  font-weight: 500
}

/* HOME CTA */
.home-cta {
  padding: 110px 0;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden
}

.home-cta::before {
  content: 'AUTHENTZ';
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(49, 0, 117, .03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.05em
}

.home-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px
}

.home-cta p {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ═══════════════════════════════════
       PAGE: PRODUCTS
    ═══════════════════════════════════ */
.page-hero-prod {
  min-height: 50vh;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.php-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.php-bread {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.php-side-corner {
  position: absolute;
  bottom: 0px;
  right: 0px;
  height: 100%;
  z-index: 0;
  object-fit: contain;
}

.php-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 221, 189, .15) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%)
}

.php-content {
  position: relative;
  z-index: 2
}

.php-bread {
  font-size: .78rem;
  color: #310075;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: none;
}

.php-bread span {
  color: #310075
}

.php-bread a {
  cursor: pointer;
  transition: color var(--t)
}

.php-bread a:hover {
  color: var(--teal)
}

.php-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 12px
}

.php-content p {
  font-size: 1rem;
  color: var(--slate);
  max-width: 520px;
  line-height: 1.75
}

/* PRODUCT INTRO */
.prod-intro {
  padding: 40px 0;
  background: var(--white)
}

.pi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.pi-img-wrap {
  position: relative
}

.pi-img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.pi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pi-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px
}

.pi-feat {
  background: var(--light);
  border-radius: 10px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--purple)
}

.pi-feat::before {
  content: '✓';
  color: var(--teal);
  font-weight: 900
}

.pi-right h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px
}

.pi-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.pi-prod {
  border: 1px solid rgba(49, 0, 117, .1);
  border-radius: var(--rad);
  padding: 20px;
  transition: all var(--t)
}

.pi-prod:hover {
  border-color: var(--teal);
  background: rgba(4, 221, 189, .04)
}

.pi-prod-code {
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--teal);
  margin-bottom: 4px
}

.pi-prod h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--purple)
}

.pi-prod p {
  font-size: .84rem;
  color: var(--slate);
  line-height: 1.6
}

/* DEV SECTION */
.dev-section {
  background: var(--light);
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.dev-items {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.dev-item {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid rgba(49, 0, 117, .1);
  transition: all var(--t)
}

.dev-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px)
}

.dev-date {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  text-align: center;
  line-height: 1.2;
  animation: glowPulse 3s ease-in-out infinite
}

.dev-date.teal {
  background: var(--teal);
  color: var(--purple3);
  animation: none
}

.dev-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif
}

.dev-body p {
  font-size: .87rem;
  color: var(--slate);
  line-height: 1.65
}

/* DEEP DIVES */
.deep-section {
  padding: 100px 0
}

.deep-header {
  margin-bottom: 60px
}

.deep-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(49, 0, 117, .08);
  margin-bottom: 32px;
  transition: all var(--t)
}

.deep-card:hover {
  box-shadow: var(--shadow-lg)
}

.dc-header {
  padding: 15px 36px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.dc-h-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%)
}

.dc-h-purple {
  background: var(--grad)
}

.dc-title {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif
}

.dc-title.dark {
  color: var(--purple3)
}

.dc-title.light {
  color: var(--white)
}

.dc-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: transform var(--t);
  flex-shrink: 0
}

.dc-toggle.dark-t {
  color: var(--purple3);
  background: rgba(49, 0, 117, .15)
}

.deep-card.open .dc-toggle {
  transform: rotate(45deg)
}

.dc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease
}

.deep-card.open .dc-body {
  max-height: 1200px
}

.dc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white)
}

.dc-col {
  padding: 32px 36px
}

.dc-col:first-child {
  border-right: 1px solid rgba(49, 0, 117, .08)
}

.dc-col h4 {
  font-size: 1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--purple);
  margin-bottom: 18px
}

.dc-items {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.dc-items li {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
  list-style: none
}

.dc-items li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 700
}

.dc-items.adv li::before {
  content: '✓';
  color: var(--purple)
}

/* ═══════════════════════════════════
       PAGE: ABOUT
    ═══════════════════════════════════ */
.mission-sec {
  padding: 40px 0;
  background: var(--white);
  overflow: hidden
}

.ms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.ms-visual {
  position: relative
}

.ms-arc-wrap {
  width: 380px;
  height: 380px;
  position: relative;
  margin: 0 auto
}

.ms-arc-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--purple);
  overflow: hidden
}

.ms-arc-teal {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(15%, -15%)
}

.ms-arc-dot {
  position: absolute;
  bottom: 5%;
  right: 25%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .5
}

.ms-arc-dot2 {
  position: absolute;
  top: 5%;
  left: 8%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  opacity: .4
}

.ms-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 22px
}

.ms-text p {
  font-size: .97rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 14px
}

.founder-quote {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple2) 100%);
  border-radius: 16px;
  padding: 28px;
  margin-top: 32px
}

.fq-label {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif
}

.fq-text {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
  font-style: italic
}

.vmv-section {
  background: var(--light);
  padding: 100px 0
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px
}

.vmv-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(49, 0, 117, .08);
  transition: all var(--t);
  position: relative;
  overflow: hidden
}

.vmv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px)
}

.vmv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px
}

.vmv-card-v::before {
  background: var(--grad-teal)
}

.vmv-card-m::before {
  background: var(--grad)
}

.vmv-card-e::before {
  background: linear-gradient(90deg, var(--orange), var(--orange2))
}

.vmv-icon {
  font-size: 2.5rem;
  margin-bottom: 20px
}

.vmv-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 12px;
  color: var(--purple)
}

.vmv-card p {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.7
}

.about-stats {
  background: var(--grad);
  padding: 80px 0
}

.about-locs {
  padding: 100px 0;
  background: var(--white)
}

.locs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px
}

.loc-card {
  background: var(--light);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(49, 0, 117, .08);
  transition: all var(--t);
  text-align: center
}

.loc-card:hover {
  background: var(--purple);
  box-shadow: var(--shadow)
}

.loc-card:hover * {
  color: var(--white) !important
}

.loc-flag {
  font-size: 2.5rem;
  margin-bottom: 14px
}

.loc-name {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--purple);
  margin-bottom: 6px;
  transition: color var(--t)
}

.loc-role {
  font-size: .84rem;
  color: var(--slate);
  transition: color var(--t)
}

/* ═══════════════════════════════════
       PAGE: CONTACT
    ═══════════════════════════════════ */
.contact-sec {
  padding: 100px 0
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start
}

.ct-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px
}

.ct-info p {
  font-size: .97rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 32px
}

.ct-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px
}

.ct-item {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.ct-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(49, 0, 117, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem
}

.ct-item h5 {
  font-size: .88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 3px;
  color: var(--purple)
}

.ct-item p {
  font-size: .84rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.5
}

.loc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px
}

.loc-chip {
  background: var(--light);
  border: 1px solid rgba(49, 0, 117, .1);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: 6px
}

.loc-chip:hover {
  background: var(--purple);
  color: var(--white)
}

.ct-form-box {
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(49, 0, 117, .08)
}

.ctf-title {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 6px
}

.ctf-sub {
  font-size: .88rem;
  color: var(--slate);
  margin-bottom: 28px
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fg label {
  font-size: .8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--purple)
}

.fg input,
.fg select,
.fg textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(49, 0, 117, .12);
  border-radius: 10px;
  font-family: 'Calibri', sans-serif;
  font-size: .9rem;
  color: var(--purple);
  background: var(--white);
  transition: border-color var(--t);
  outline: none;
  width: 100%
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(4, 221, 189, .12)
}

.fg textarea {
  resize: vertical;
  min-height: 120px
}

.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  background: var(--accent-orange);
  color: var(--white);
  font-size: .95rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all var(--t)
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-orange-hover);
  box-shadow: 0 10px 32px rgba(244, 85, 12, 0.4)
}

.success-msg {
  display: none;
  background: rgba(4, 221, 189, .1);
  border: 1px solid rgba(4, 221, 189, .3);
  border-radius: 12px;
  padding: 20px;
  font-size: .9rem;
  color: #07635a;
  font-weight: 600;
  text-align: center;
  margin-top: 12px
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .5);
  padding: 72px 0 28px
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.ft-brand p {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .4);
  margin-top: 18px;
  max-width: 260px
}

.ft-col h5 {
  font-size: .7rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.ft-col ul a {
  font-size: .87rem;
  color: rgba(255, 255, 255, .45);
  transition: color var(--t);
  cursor: pointer
}

.ft-col ul a:hover {
  color: var(--teal)
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px
}

.gdpr-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(4, 221, 189, .08);
  border: 1px solid rgba(4, 221, 189, .2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .55)
}

.gdpr-badge::before {
  content: '🛡️'
}

.ft-links {
  display: flex;
  gap: 18px
}

.ft-links a {
  color: rgba(255, 255, 255, .3);
  transition: color var(--t);
  cursor: pointer
}

.ft-links a:hover {
  color: var(--teal)
}

/* ══════════════════════════════════════════
       MOBILE & TABLET RESPONSIVE OVERRIDES
    ══════════════════════════════════════════ */

/* ── Tablet Large (≤1024px) ── */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  /* Reveal animation — no horizontal transforms on smaller screens */
  .reveal.from-left {
    transform: translateY(32px);
  }

  .reveal.from-right {
    transform: translateY(32px);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Nav */
  .nav-menu,
  .nav-btn-login,
  .nav-btn-signup {
    display: none;
  }

  .burger {
    display: flex;
  }

  /* Hero — handled in dedicated hero block above */

  /* About */
  .home-about {
    padding: 72px 0;
  }

  .ha-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .arc-wrap {
    display: none;
  }

  /* Market */
  .market-section {
    padding: 72px 0;
  }

  .market-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .market-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }

  /* Pain */
  .pain-section {
    padding: 72px 0;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pain-stakeholder {
    display: none;
  }

  .pain-cols {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Edge */
  .edge-section {
    padding: 72px 0;
  }

  .edge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Stats */
  .stats-section {
    padding: 70px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  /* Home CTA */
  .home-cta {
    padding: 72px 0;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Page heroes */
  .page-hero-prod {
    min-height: 38vh;
    padding: 90px 0 44px;
    align-items: center;
  }

  .php-side-corner {
    height: 75%;
    opacity: .35;
  }

  .php-content h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  /* Products */
  .prod-intro {
    padding: 64px 0;
  }

  .pi-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pi-grid>.reveal.from-left {
    position: static !important;
    top: auto !important;
  }

  .pi-img {
    height: 280px;
  }

  .pi-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pi-feat {
    font-size: .8rem;
    padding: 8px 12px;
  }

  /* Dev section */
  .dev-section {
    padding: 72px 0 !important;
  }

  .dev-timeline-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .dev-timeline-grid>.reveal>div {
    width: 280px !important;
    height: 280px !important;
    left: 0 !important;
  }

  .dev-items {
    gap: 48px !important;
  }

  /* Deep dives */
  .deep-section {
    padding: 64px 0;
  }

  .dc-inner {
    grid-template-columns: 1fr;
  }

  .dc-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(49, 0, 117, .08);
  }

  /* About */
  .mission-sec {
    padding: 72px 0;
  }

  .ms-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ms-visual {
    display: none;
  }

  .vmv-section {
    padding: 72px 0;
  }

  .vmv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .about-stats {
    padding: 60px 0;
  }

  .about-locs {
    padding: 72px 0;
  }

  .locs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Contact */
  .contact-sec {
    padding: 72px 0;
  }

  .ct-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  footer {
    padding: 56px 0 24px;
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }
}

/* ── Tablet / Mobile (≤768px) ── */
@media (max-width: 768px) {

  .nav-menu,
  .nav-btn-login,
  .nav-btn-signup {
    display: none;
  }

  .burger {
    display: flex;
  }

  .pain-cols {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-cta h2 {
    font-size: clamp(1.7rem, 6vw, 2.5rem);
  }

  .home-cta p {
    font-size: .93rem;
  }

  .pain-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .pain-subtitle {
    font-size: .92rem;
    margin-bottom: 28px;
  }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }

  /* Nav */
  #nav {
    height: 60px;
  }

  .nav-inner {
    height: 60px;
  }

  .nav-logo img {
    height: 28px;
  }

  .mob-menu {
    top: 60px;
    padding: 24px 20px;
  }

  .mob-menu a {
    padding: 14px 0;
    font-size: .95rem;
  }

  .mob-btns .btn {
    text-align: center;
    justify-content: center;
    font-size: .85rem;
    padding: 12px 20px;
  }

  /* Hero — handled in dedicated hero block above */

  /* Marquee */
  .marquee-bar {
    padding: 12px 0;
  }

  .mq-item {
    font-size: .63rem;
    gap: 8px;
    letter-spacing: .1em;
  }

  .marquee-track {
    gap: 32px;
  }

  /* About */
  .home-about {
    padding: 56px 0;
  }

  .ha-left h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .ha-left p {
    font-size: .9rem;
  }

  .ha-pills {
    gap: 8px;
    margin-top: 22px;
  }

  .ha-pill {
    font-size: .75rem;
    padding: 7px 13px;
  }

  /* Market */
  .market-section {
    padding: 56px 0;
  }

  .market-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .market-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .market-card {
    padding: 20px;
  }

  .mc-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .mc-title {
    font-size: .85rem;
  }

  .mc-desc {
    font-size: .8rem;
  }

  .market-bottom {
    padding: 22px;
    border-radius: 14px;
    margin-top: 28px;
  }

  .mb-result h4,
  .mb-opp h4 {
    font-size: .65rem;
  }

  .mb-result p,
  .mb-opp p {
    font-size: .9rem;
  }

  /* Pain */
  .pain-section {
    padding: 56px 0;
  }

  .pain-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .pain-subtitle {
    font-size: .88rem;
    margin-bottom: 24px;
  }

  .pain-item-p,
  .pain-item-s {
    font-size: .8rem;
    padding: 11px 13px;
  }

  .pain-col-head {
    font-size: .68rem;
    padding: 9px 13px;
  }

  /* Edge */
  .edge-section {
    padding: 56px 0;
  }

  .ec-body {
    padding: 40px 20px 22px;
  }

  .ec-body h3 {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .ec-list li {
    font-size: .83rem;
  }

  /* Stats */
  .stats-section {
    padding: 56px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-n {
    font-size: 2.6rem;
  }

  .stat-l {
    font-size: .78rem;
  }

  .stat-item {
    padding: 22px 12px;
  }

  /* CTA */
  .home-cta {
    padding: 60px 0;
  }

  .home-cta h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .home-cta p {
    font-size: .9rem;
    margin-bottom: 28px;
  }

  /* Page heroes */
  .page-hero-prod {
    padding: 80px 0 28px;
    min-height: 28vh;
  }

  .php-side-corner {
    display: none;
  }

  .php-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .php-content p {
    font-size: .88rem;
  }

  .php-bread {
    font-size: .72rem;
    gap: 6px;
  }

  /* Products intro */
  .prod-intro {
    padding: 48px 0;
  }

  .pi-img {
    height: 220px;
  }

  .dev-item {
    padding: 20px 16px;
    gap: 14px;
    flex-direction: row;
  }

  .dev-date {
    width: 60px;
    height: 60px;
    font-size: .72rem;
    min-width: 60px;
  }

  .dev-body h3 {
    font-size: .95rem;
    margin-bottom: 6px;
  }

  .dev-body p {
    font-size: .83rem;
  }

  /* Dev timeline */
  .dev-section {
    padding: 56px 0 !important;
  }

  .dev-timeline-grid>.reveal {
    display: flex;
    justify-content: center;
  }

  .dev-timeline-grid>.reveal>div {
    width: 240px !important;
    height: 240px !important;
    padding: 24px !important;
  }

  .dev-items>.reveal {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .dev-items>.reveal>div:first-child {
    flex-direction: row !important;
    align-items: center;
  }

  .dev-items>.reveal>div:first-child>div:first-child {
    width: 80px !important;
    height: 80px !important;
    font-size: .8rem !important;
  }

  .dev-items>.reveal>div:last-child {
    margin-left: 0 !important;
  }

  /* Deep dives */
  .deep-section {
    padding: 48px 0;
  }

  .deep-header {
    margin-bottom: 36px;
  }

  .dc-header {
    padding: 18px 16px;
    gap: 12px;
  }

  .dc-title {
    font-size: .92rem;
    line-height: 1.4;
  }

  .dc-toggle {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .dc-col {
    padding: 22px 18px;
  }

  .dc-col h4 {
    font-size: .68rem;
  }

  .dc-items li {
    font-size: .82rem;
  }

  .deep-card {
    margin-bottom: 16px;
  }

  /* About */
  .mission-sec {
    padding: 56px 0;
  }

  .ms-text h2 {
    font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
  }

  .ms-text p {
    font-size: .9rem;
  }

  .founder-quote {
    padding: 20px;
    margin-top: 24px;
  }

  .fq-text {
    font-size: .87rem;
  }

  .vmv-section {
    padding: 56px 0;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .vmv-card {
    padding: 24px;
  }

  .vmv-icon {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .about-stats {
    padding: 48px 0;
  }

  .about-locs {
    padding: 56px 0;
  }

  .locs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .loc-card {
    padding: 20px 14px;
  }

  .loc-flag {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .loc-name {
    font-size: .95rem;
  }

  .loc-role {
    font-size: .76rem;
  }

  /* Contact */
  .contact-sec {
    padding: 48px 0;
  }

  .ct-info h2 {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
  }

  .ct-info p {
    font-size: .9rem;
    margin-bottom: 24px;
  }

  .ct-items {
    gap: 14px;
    margin-bottom: 24px;
  }

  .ct-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .ct-item {
    gap: 12px;
  }

  .ct-item h5 {
    font-size: .85rem;
  }

  .ct-item p {
    font-size: .81rem;
  }

  .loc-chips {
    gap: 6px;
    margin-top: 18px;
  }

  .loc-chip {
    font-size: .78rem;
    padding: 6px 11px;
  }

  .ct-form-box {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .ctf-title {
    font-size: 1.2rem;
  }

  .ctf-sub {
    font-size: .83rem;
    margin-bottom: 18px;
  }

  .fg input,
  .fg select,
  .fg textarea {
    font-size: .88rem;
    padding: 11px 13px;
  }

  .fg label {
    font-size: .78rem;
  }

  /* Footer */
  footer {
    padding: 44px 0 20px;
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 28px;
  }

  .ft-brand p {
    font-size: .83rem;
    max-width: 100%;
    margin-top: 12px;
  }

  .ft-col h5 {
    font-size: .65rem;
    margin-bottom: 14px;
  }

  .ft-col ul a {
    font-size: .83rem;
  }

  .ft-col ul {
    gap: 9px;
  }

  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 18px;
  }

  .ft-bottom span {
    font-size: .75rem;
  }

  .gdpr-badge {
    font-size: .7rem;
    padding: 6px 12px;
  }
}

/* ── Small Mobile (≤400px) ── */
@media (max-width: 400px) {
  .container {
    padding: 0 14px;
  }

  .hero-right h1 {
    font-size: clamp(2.2rem, 13vw, 3rem);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-n {
    font-size: 2.2rem;
  }

  .locs-grid {
    grid-template-columns: 1fr;
  }

  .market-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Safe area / notch support ── */
@supports (padding: env(safe-area-inset-top)) {
  #nav {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .mob-menu {
    padding-left: calc(24px + env(safe-area-inset-left));
    padding-right: calc(24px + env(safe-area-inset-right));
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ── Touch: disable hover transforms ── */
@media (hover: none) and (pointer: coarse) {

  .market-card:hover,
  .edge-card:hover,
  .dev-item:hover,
  .vmv-card:hover,
  .loc-card:hover {
    transform: none;
    box-shadow: none;
  }

  .btn-teal:hover,
  .btn-white:hover,
  .btn-outline:hover,
  .nav-btn-signup:hover,
  .submit-btn:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ── Prevent scroll bleed ── */
body,
.page {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Dev timeline grid ── */
.dev-timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 768px) {
  .dev-timeline-grid {
    grid-template-columns: 1.2fr 1.5fr;
    gap: 100px;
  }
}

/* ── PRIVACY PAGE ── */
.priv-h {
  color: var(--purple);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
}

.priv-p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.priv-ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.priv-ul li {
  margin-bottom: 8px;
}

.priv-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.95rem;
}

.priv-table th,
.priv-table td {
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  text-align: left;
}

.priv-table th {
  background: rgba(49, 0, 117, 1);
  color: var(--white);
  font-weight: 600;
}

.priv-table tr:nth-child(even) {
  background-color: #f8fafc;
}

/* GDPR MODAL */
.gdpr-badge {
  cursor: pointer;
  transition: opacity 0.3s;
}

.gdpr-badge:hover {
  opacity: 0.8;
}

.gdpr-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.gdpr-modal.active {
  opacity: 1;
  visibility: visible;
}

.gdpr-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gdpr-modal.active .gdpr-modal-content {
  transform: scale(1);
}

.gdpr-modal-content img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 85vh;
}

.gdpr-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #333;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.2s;
}

.gdpr-close:hover {
  color: #f4550c;
}

@media (max-width: 768px) {
  .gdpr-modal-content {
    max-width: 95%;
  }
}