*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cyan: #29ABE2;
  --cyan-dark: #1a8abf;
  --cyan-light: #e8f7fd;
  --dark: #0f1923;
  --dark-mid: #1a2836;
  --dark-surface: #1e2f3d;
  --text-primary: #0f1923;
  --text-secondary: #5a6a78;
  --text-muted: #8a9aaa;
  --bg: #ffffff;
  --bg-secondary: #f6f8fa;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 0.5px solid transparent;
}

nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-placeholder {
  width: 80px;
  height: 64px;
  flex-shrink: 0;
}

.nav-logo-text {
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-text.visible { opacity: 1; }

.logo-product {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #3a4a5a;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-product .logo-sub {
  color: var(--cyan);
  font-size: 0.65em;
  vertical-align: baseline;
  position: relative;
  top: 0.15em;
}

.logo-byline {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: stretch;
}

.nav-links a {
  font-size: 14px;
  color: white;
  text-decoration: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  background: var(--cyan);
  color: white;
}

nav.scrolled .nav-links a { color: var(--text-secondary); }
nav.scrolled .nav-links a:hover { background: var(--cyan); color: white; }

.btn-nav {
  background: var(--cyan);
  color: white !important;
  padding: 8px 18px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-nav:hover { background: var(--cyan-dark) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg);
  border-radius: 2px;
  transition: background 0.2s;
}

nav.scrolled .nav-burger span { background: var(--text-primary); }

/* ── LOGO ANIMATOR ── */
.logo-animator {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 200;
}

#logoAnim {
  position: absolute;
  will-change: transform, width;
  z-index: 102;
}

/* ── HERO ── */
.hero-fullscreen {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,40,0.65) 0%, rgba(10,25,40,0.5) 60%, rgba(10,25,40,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-spacer { height: 190px; }

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  transition: opacity 0.15s;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  transition: opacity 0.15s;
}

.btn-hero-primary {
  background: var(--cyan);
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-hero-primary:hover { background: var(--cyan-dark); transform: translateY(-1px); }

.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
  display: inline-block;
}

.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
  animation: bounce 1.6s ease-in-out infinite;
  white-space: nowrap;
}

.scroll-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(255,255,255,0.6);
  border-bottom: 1.5px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  margin: 6px auto 0;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section-label.light { color: rgba(41,171,226,0.8); }

h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.75px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

h2.light { color: white; }

.section-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.check {
  width: 16px;
  height: 16px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check::after {
  content: '';
  width: 7px;
  height: 4px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

/* ── INTRO STRIP ── */
.intro-strip {
  padding: 5rem 2rem;
  border-bottom: 0.5px solid var(--border);
}

.intro-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.intro-left h2 { margin-bottom: 0; }

.intro-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
}

.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── SPLIT SECTIONS ── */
.split-section {
  padding: 0;
  overflow: hidden;
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-reverse .split-image {
  order: 2;
}

.split-reverse .split-text {
  order: 1;
}

.split-text {
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 0.5px solid var(--border);
}

.feature-list li:last-child { border-bottom: none; }

.split-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}


.split-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FEATURE DEMO LINK ── */
.feature-demo-link {
  cursor: pointer;
  transition: color 0.2s;
}

.feature-demo-link:hover {
  color: var(--cyan);
}

.feature-demo-cta {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 600;
  margin-left: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.feature-demo-link:hover .feature-demo-cta {
  opacity: 1;
}

/* ── FEATURE SPOTLIGHT (Packing Demo) ─────────────────────── */
.feature-spotlight {
  padding: 48px 24px;
  background: linear-gradient(180deg, #0a1628 0%, #0f1e30 100%);
  position: relative;
  overflow: hidden;
}
.spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.spotlight-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(41,171,226,0.06) 0%, rgba(0,201,167,0.04) 100%);
  border: 1px solid rgba(41,171,226,0.25);
  border-radius: 18px;
  padding: 44px 48px;
  overflow: hidden;
}
.spotlight-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(41,171,226,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.spotlight-content {
  position: relative;
  z-index: 1;
}
.spotlight-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #29ABE2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(41,171,226,0.12);
  border: 1px solid rgba(41,171,226,0.3);
  border-radius: 4px;
  margin-bottom: 14px;
}
.spotlight-heading {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.15;
}
.spotlight-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0 0 24px;
  max-width: 540px;
}
.spotlight-steps {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.spotlight-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.spotlight-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(41,171,226,0.15);
  border: 1.5px solid #29ABE2;
  color: #29ABE2;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spotlight-step-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
}
.spotlight-step-text strong {
  color: #fff;
  font-weight: 700;
}
.spotlight-step-arrow {
  color: rgba(41,171,226,0.5);
  font-size: 18px;
  font-weight: 300;
}
.spotlight-cta {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: linear-gradient(135deg, #29ABE2 0%, #00C9A7 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 24px rgba(41,171,226,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.spotlight-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(41,171,226,0.5);
}
.spotlight-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.spotlight-mock {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 280px;
}
.spotlight-mock-box {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
}
.spotlight-mock-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
}
.spotlight-mock-tag {
  position: absolute;
  top: -12px;
  right: -8px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #fff;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #0a1628;
  font-family: monospace;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.spotlight-mock-cases {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
}
.spotlight-mock-case {
  position: absolute;
  width: 70px;
  height: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
  animation: caseDrop 3.6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  opacity: 0;
}
@keyframes caseDrop {
  0%, 5%   { opacity: 0; transform: translate(-50%, -40px) rotate(-3deg); }
  15%      { opacity: 1; transform: translate(-50%, 30px) rotate(2deg); }
  30%      { opacity: 1; transform: translate(-50%, 130px) rotate(-1deg); }
  40%, 100% { opacity: 0; transform: translate(-50%, 130px) rotate(-1deg); }
}

@media (max-width: 900px) {
  .spotlight-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }
  .spotlight-heading { font-size: 28px; }
  .spotlight-visual { min-height: 220px; }
  .spotlight-mock { max-width: 260px; height: 220px; }
}

/* ── PACKING MODAL ── */
.pack-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.pack-modal-overlay.open {
  display: flex;
}

.pack-modal {
  background: var(--bg);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 800px;
  width: 90%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.pack-modal-replay {
  position: absolute;
  top: 14px;
  right: 52px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}

.pack-modal-replay:hover { color: var(--cyan); }

.pack-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.pack-modal-close:hover { color: var(--text-primary); }

.pack-modal-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pack-modal-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pack-scene {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.pack-centre-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pack-box-wrap {
  position: relative;
  display: inline-block;
}

.pack-box-img {
  width: 220px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.pack-qr-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(15,25,35,0.85);
  padding: 4px 10px 4px 6px;
  border-radius: 6px;
  border: 1px solid rgba(41,171,226,0.3);
  margin-top: 6px;
}

.pack-qr-tag span {
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  font-family: 'Inter', sans-serif;
}

.pack-scan-flash {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: var(--cyan);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}

.pack-seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(41,171,226,0.9);
  border: 1px solid var(--cyan);
  color: white;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

/* Active case slot */
.pack-active-case {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 0.4s, transform 0.5s ease-in-out;
  min-height: 100px;
}

.pack-active-case.visible {
  opacity: 1;
  transform: translateY(0);
}

.pack-active-case.drop {
  opacity: 0;
  transform: translateY(80px) scale(0.4);
  transition: opacity 0.8s ease-in, transform 1s ease-in;
}

.pack-active-case-img {
  width: 100px;
  height: auto;
  border-radius: 6px;
}

.pack-active-case-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  font-family: 'Inter', sans-serif;
}

/* Scan beam */
.pack-beam-col {
  display: flex;
  align-items: center;
  align-self: center;
  width: 60px;
  flex-shrink: 0;
}

.pack-scan-beam {
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transition: width 0.4s;
  margin-left: auto;
}

/* Tablet device */
.pack-tablet {
  flex-shrink: 0;
  align-self: stretch;
}

.pack-tablet-frame {
  background: #0f1923;
  border: 2px solid #2a3a4a;
  border-radius: 16px;
  padding: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 260px;
}

.pack-tablet-notch {
  width: 40px;
  height: 4px;
  background: #2a3a4a;
  border-radius: 2px;
  margin: 2px auto 6px;
}

.pack-tablet-screen {
  background: #1a2836;
  border-radius: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pack-tablet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pack-tablet-app-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}

.pack-tablet-btn {
  font-size: 9px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px 8px;
  letter-spacing: 0.04em;
  cursor: default;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.pack-tablet-btn.flash {
  background: var(--cyan);
  color: white;
  border-color: var(--cyan);
}

.pack-tablet-body {
  padding: 12px 14px;
  flex: 1;
  font-family: 'Inter', sans-serif;
}

.pack-tablet-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  transition: color 0.3s;
}

.pack-tablet-location.active {
  color: var(--cyan);
}

.pack-tablet-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 10px 0;
}

.pack-tablet-home {
  width: 28px;
  height: 4px;
  background: #2a3a4a;
  border-radius: 2px;
  margin: 6px auto 2px;
}

.pack-manifest-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pack-manifest-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
}

.pack-manifest-dot {
  width: 8px;
  height: 8px;
  background: rgba(41,171,226,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.pack-manifest-dot.parent {
  width: 10px;
  height: 10px;
  background: var(--cyan);
}

.pack-manifest-id {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}

.pack-manifest-id.active {
  color: white;
}

.pack-manifest-children {
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.08);
  margin-left: 4px;
}

.pack-manifest-child {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}

.pack-manifest-child.visible {
  opacity: 1;
  transform: translateY(0);
}

.pack-manifest-footer {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-align: center;
  transition: color 0.3s;
}

.pack-manifest-footer.complete {
  color: var(--cyan);
}

/* ── PLATFORM — LIGHT ── */
.platform-section {
  background: var(--bg);
  padding: 5rem 2rem;
}

.platform-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.platform-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 3rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.platform-item {
  background: var(--bg-secondary);
  padding: 2rem;
  transition: background 0.2s;
}

.platform-item:hover { background: #edf0f3; }

.platform-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.platform-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── MODULES — DARK ── */
.modules-section {
  padding: 5rem 2rem;
  background: var(--dark);
}

.modules-section .section-label { color: rgba(41,171,226,0.8); }
.modules-section h2 { color: white; }
.modules-section .section-intro { color: rgba(255,255,255,0.6); }

.modules-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 2.5rem;
}

.pillar-card {
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.75rem;
  background: var(--dark-surface);
}

.pillar-card.featured { border: 1.5px solid var(--cyan); }

.pillar-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.pillar-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  color: white;
}

.pillar-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.pillar-features { list-style: none; }

.pillar-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 7px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-features li:last-child { border-bottom: none; }

/* ── ROADMAP ── */
.roadmap-strip {
  background: var(--dark-surface);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 2rem 2.5rem;
}

.roadmap-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.roadmap-intro {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  max-width: 560px;
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.roadmap-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-mid);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.roadmap-soon {
  font-size: 10px;
  font-weight: 500;
  color: var(--cyan-dark);
  background: var(--cyan-light);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.roadmap-soon--near-term {
  color: #0f6e56;
  background: #e1f5ee;
}

.roadmap-soon--medium-term {
  color: var(--cyan-dark);
  background: var(--cyan-light);
}

.roadmap-soon--future {
  color: #5a6a78;
  background: #f0f2f4;
}

/* ── PLATFORM FEATURED ITEM ── */
.platform-item--featured {
  background: var(--dark-mid) !important;
  border: 0.5px solid rgba(41,171,226,0.3) !important;
  position: relative;
}

.platform-item-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(41,171,226,0.12);
  border: 0.5px solid rgba(41,171,226,0.3);
  border-radius: 100px;
  padding: 2px 10px;
  margin-bottom: 10px;
}

/* ── DIFFERENTIATOR SECTION ── */
.differentiator-section {
  padding: 5rem 2rem;
  background: var(--bg);
  border-top: 0.5px solid var(--border);
}

.differentiator-dark {
  background: var(--dark);
  border-top: none;
}

.differentiator-dark .section-label { color: rgba(41,171,226,0.8); }
.differentiator-dark h2 { color: white; }
.differentiator-dark .diff-body { color: rgba(255,255,255,0.6); font-weight: 400; }
.differentiator-dark .diff-card { background: var(--dark-surface); border-color: rgba(255,255,255,0.08); }
.differentiator-dark .diff-card h4 { color: white; }
.differentiator-dark .diff-card p { color: rgba(255,255,255,0.55); }
.differentiator-dark .diff-icon { background: rgba(41,171,226,0.12); }

/* ── SPLIT DARK ── */
.split-dark { background: var(--dark); }
.split-dark .section-label { color: rgba(41,171,226,0.8); }
.split-dark h2 { color: white; }
.split-dark .split-body { color: rgba(255,255,255,0.6); }
.split-dark .feature-list li { color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.08); }

.differentiator-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.diff-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.diff-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.diff-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.diff-icon {
  width: 36px;
  height: 36px;
  background: var(--cyan-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.diff-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diff-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.diff-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── INDUSTRIES ── */
.industries-section {
  padding: 5rem 2rem;
  border-top: 0.5px solid var(--border);
}

.industries-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.industry-tag {
  background: var(--bg);
  border: 0.5px solid var(--border-strong);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── REGISTER ── */
.register-section {
  background: var(--dark);
  padding: 5rem 2rem;
}

.register-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.register-text h2 { color: white; }

.register-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.optional {
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: white;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(255,255,255,0.1);
}

.btn-submit {
  background: var(--cyan);
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.btn-submit:hover { background: var(--cyan-dark); transform: translateY(-1px); }

/* ── FOOTER ── */
.site-footer {
  background: #0a1520;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

.footer-wave.fw1 {
  animation: footerWave1 12s ease-in-out infinite;
}

.footer-wave.fw2 {
  animation: footerWave2 15s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes footerWave1 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-25%); }
}

@keyframes footerWave2 {
  0%, 100% { transform: translateX(-10%); }
  50% { transform: translateX(-35%); }
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-company {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}

.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.footer-email {
  font-size: 13px;
  color: var(--cyan);
  text-decoration: none;
}

.footer-email:hover { color: white; }

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 0.25rem;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-heading {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-nav-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-col a:hover { color: white; }

.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .register-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .differentiator-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diff-cards { grid-template-columns: 1fr 1fr; }

  .split-inner {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-image,
  .split-reverse .split-text {
    order: unset;
  }

  .split-text { padding: 3rem 1.5rem; }

  .split-image {
    min-height: 280px;
    order: -1;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  nav { padding: 0 1rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 0.5px solid var(--border);
    padding: 0.5rem 1.5rem 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 0.5px solid var(--border);
    color: var(--text-secondary) !important;
    font-size: 15px;
  }

  .nav-links li:last-child a { border-bottom: none; }
  .nav-burger { display: flex; }

  .intro-strip { padding: 3rem 1rem; }
  .modules-section { padding: 3rem 1rem; }
  .platform-section { padding: 3rem 1rem; }
  .industries-section { padding: 3rem 1rem; }
  .register-section { padding: 3rem 1rem; }
  .demo-section { padding: 3rem 1rem; }
  .footer-inner { padding: 3rem 1rem 2rem; }
  .differentiator-section { padding: 3rem 1rem; }
  .diff-cards { grid-template-columns: 1fr; }
}

/* ── Thank You Overlay ────────────────────────────────────────── */
.thankyou-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, #001219 0%, #002a3a 40%, #001a2c 100%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.thankyou-overlay.active {
  display: flex;
  animation: thankyouFadeIn 0.5s ease;
}

@keyframes thankyouFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.thankyou-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  overflow: hidden;
  pointer-events: none;
}

.thankyou-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

.thankyou-wave.wave1 {
  animation: thankyouWave1 8s ease-in-out infinite;
}

.thankyou-wave.wave2 {
  animation: thankyouWave2 10s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes thankyouWave1 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-25%); }
}

@keyframes thankyouWave2 {
  0%, 100% { transform: translateX(-10%); }
  50% { transform: translateX(-35%); }
}

.thankyou-content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
  max-width: 500px;
}

.thankyou-logo {
  width: 80px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 20px rgba(41,171,226,0.3));
  animation: thankyouLogoPulse 3s ease-in-out infinite;
}

@keyframes thankyouLogoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 20px rgba(41,171,226,0.3)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 4px 30px rgba(41,171,226,0.5)); }
}

.thankyou-heading {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.5px;
}

.thankyou-body {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.thankyou-check {
  margin-bottom: 2rem;
  animation: thankyouCheckPop 0.6s ease 0.3s both;
}

@keyframes thankyouCheckPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.btn-thankyou-back {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-thankyou-back:hover {
  color: #fff;
  border-color: rgba(41,171,226,0.5);
  background: rgba(41,171,226,0.1);
}

/* ── Demo Section ────────────────────────────────────────────── */
.demo-section {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #001219 0%, #002a3a 100%);
  border-top: 1px solid rgba(190,233,232,0.08);
  border-bottom: 1px solid rgba(190,233,232,0.08);
}
.demo-inner {
  max-width: 640px;
  margin: 0 auto;
}
.demo-body {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #29ABE2, #00C9A7);
  color: #001219;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(41,171,226,0.3);
}
.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(41,171,226,0.4);
}
