/* ================================================
   PARAM LABS & AI SOLUTIONS — Design System
   paramlabs.net
   ================================================ */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Background */
  --bg-deep: #04040e;
  --bg: #0a0a1a;
  --bg-surface: #0e0e24;
  --bg-elevated: #161638;
  --bg-card: rgba(17, 17, 40, 0.6);

  /* Primary — Violet */
  --primary: #8b5cf6;
  --primary-light: #a78bfa;
  --primary-dark: #7c3aed;
  --primary-glow: rgba(139, 92, 246, 0.25);

  /* Secondary — Cyan */
  --secondary: #06b6d4;
  --secondary-light: #22d3ee;
  --secondary-glow: rgba(6, 182, 212, 0.2);

  /* Accent — Emerald */
  --accent: #10b981;
  --accent-light: #34d399;

  /* Gold / Premium */
  --gold: #f59e0b;
  --gold-light: #fbbf24;

  /* Text */
  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-faint: #334155;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(139, 92, 246, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8b5cf6, #06b6d4);
  --gradient-warm: linear-gradient(135deg, #8b5cf6, #ec4899);
  --gradient-cool: linear-gradient(135deg, #06b6d4, #10b981);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);

  /* Layout */
  --section-padding: 120px;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;
}

/* ===== BASE RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Premium accent line at the very top */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 10001;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--alt {
  background-color: var(--bg-surface);
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn--outline:hover {
  border-color: var(--primary);
  background: rgba(139, 92, 246, 0.08);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 16px;
}

.btn--ghost:hover {
  color: var(--text);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge--live {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge--coming {
  background: rgba(6, 182, 212, 0.12);
  color: var(--secondary-light);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.badge--hero {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 22px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.08); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes borderGlow {
  0%, 100% { border-color: rgba(139, 92, 246, 0.2); }
  50% { border-color: rgba(139, 92, 246, 0.5); }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(var(--orbit-radius, 80px)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(var(--orbit-radius, 80px)) rotate(-360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradient-rotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 3px; /* below the gradient accent line */
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.navbar__logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: white;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.navbar__name-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--text);
}

.navbar__subname {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.navbar__link:hover {
  color: var(--text);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__mobile-toggle {
  display: none;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  padding: 8px;
  line-height: 1;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 4, 14, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  color: var(--text);
  font-size: 1.8rem;
  padding: 8px;
}

.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -250px;
  right: -150px;
  opacity: 0.2;
}

.hero__orb--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  bottom: -150px;
  left: -200px;
  opacity: 0.15;
  animation-delay: 3s;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  top: 45%;
  left: 45%;
  opacity: 0.1;
  animation-delay: 5s;
}

/* Subtle grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* Floating geometric shapes */
.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__shape {
  position: absolute;
  border: 1px solid var(--border-light);
  opacity: 0.12;
  animation: float 10s ease-in-out infinite;
}

.hero__shape--1 {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  top: 18%;
  left: 7%;
  border-color: var(--primary-light);
  transform: rotate(15deg);
  animation-delay: 0s;
}

.hero__shape--2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 28%;
  right: 10%;
  border-color: var(--secondary);
  animation-delay: 2s;
}

.hero__shape--3 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  bottom: 22%;
  left: 12%;
  border-color: var(--gold);
  opacity: 0.08;
  animation-delay: 4s;
}

.hero__shape--4 {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-sm);
  bottom: 18%;
  right: 8%;
  border-color: var(--accent);
  transform: rotate(45deg);
  animation-delay: 6s;
}

.hero__shape--5 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 55%;
  left: 5%;
  border-color: var(--primary);
  animation-delay: 1s;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero__badge {
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease both;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero__title-line {
  display: block;
}

.hero__title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero__trust {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 1s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero__trust-item i {
  color: var(--accent);
  font-size: 0.7rem;
}

.hero__trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-faint);
}

/* ================================================
   STATS BAR
   ================================================ */
.stats {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__item {
  padding: 16px 8px;
}

.stats__number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.2;
}

.stats__label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ================================================
   SECTION HEADER (Reusable)
   ================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-header__overline::before,
.section-header__overline::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--primary);
  opacity: 0.4;
}

.section-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   PRODUCTS SECTION
   ================================================ */
.products__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: stretch;
}

.product-card {
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* Flagship card — Crammer */
.product-card--flagship {
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.04) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  animation: borderGlow 5s ease-in-out infinite;
}

.product-card--flagship:hover {
  box-shadow: 0 24px 64px rgba(139, 92, 246, 0.18);
}

/* Coming soon card */
.product-card--coming {
  background: rgba(14, 14, 36, 0.5);
  border: 1px solid var(--border);
}

.product-card--coming:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 24px 64px rgba(6, 182, 212, 0.08);
}

/* Background glow inside card */
.product-card__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.7;
}

.product-card__glow--cyan {
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
  opacity: 0.5;
}

.product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.product-card__icon--crammer {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 24px var(--primary-glow);
}

.product-card__icon--hire {
  background: linear-gradient(135deg, var(--secondary), #0891b2);
  box-shadow: 0 8px 24px var(--secondary-glow);
}

.product-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}

.product-card__tagline {
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.product-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.product-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.product-card__feature i {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.product-card__cta {
  margin-top: auto;
}

/* ================================================
   ABOUT / VISION
   ================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__visual {
  position: relative;
  height: 460px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--bg-surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__visual-inner {
  position: relative;
  width: 200px;
  height: 200px;
}

/* Orbit rings */
.about__orbit {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about__orbit--1 { width: 160px; height: 160px; }
.about__orbit--2 { width: 270px; height: 270px; }
.about__orbit--3 { width: 380px; height: 380px; }

/* Orbiting dots */
.about__orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.about__orbit-dot--1 {
  background: var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
  --orbit-radius: 80px;
  animation: orbit 10s linear infinite;
}

.about__orbit-dot--2 {
  background: var(--secondary);
  box-shadow: 0 0 16px var(--secondary-glow);
  --orbit-radius: 135px;
  animation: orbit 16s linear infinite reverse;
}

.about__orbit-dot--3 {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.3);
  --orbit-radius: 190px;
  animation: orbit 22s linear infinite;
}

/* Center icon in orbit */
.about__center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: var(--shadow-glow);
  color: white;
}

.about__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about__text {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__pals {
  margin-top: 36px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.about__pals-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about__pals-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about__pals-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about__pals-letter {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  width: 26px;
  flex-shrink: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   TECHNOLOGY STACK
   ================================================ */
.tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tech-card {
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 40, 0.35);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition-base);
}

.tech-card:hover {
  border-color: var(--border-accent);
  background: rgba(139, 92, 246, 0.04);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.tech-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.tech-card__icon--ai {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(236, 72, 153, 0.12));
  color: var(--primary-light);
}

.tech-card__icon--cloud {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(16, 185, 129, 0.12));
  color: var(--secondary-light);
}

.tech-card__icon--security {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(239, 68, 68, 0.12));
  color: var(--gold-light);
}

.tech-card__icon--scale {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(6, 182, 212, 0.12));
  color: var(--accent-light);
}

.tech-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.tech-card__desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ================================================
   WHY CHOOSE PALS
   ================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.why-card__icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}

.why-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.why-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
}

.cta-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cta-banner__orb--1 {
  width: 450px;
  height: 450px;
  background: var(--primary);
  top: -220px;
  left: -120px;
  opacity: 0.1;
}

.cta-banner__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -200px;
  right: -100px;
  opacity: 0.08;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner__desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--gradient-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
}

.footer__brand-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer__contact {
  margin-top: 24px;
}

.footer__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer__email:hover {
  color: var(--text);
}

.footer__heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover {
  color: var(--primary-light);
}

.footer__link--disabled {
  opacity: 0.5;
  cursor: default;
}

.footer__link--disabled:hover {
  color: var(--text-secondary);
}

.footer__link-badge {
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, 0.15);
  color: var(--secondary-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(139, 92, 246, 0.08);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--text-secondary);
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */

/* Tablet landscape */
@media (max-width: 1024px) {
  :root {
    --section-padding: 88px;
  }

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

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__visual {
    height: 340px;
    order: -1;
  }

  .tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__actions .btn--ghost,
  .navbar__actions .btn--outline {
    display: none;
  }

  .navbar__mobile-toggle {
    display: block;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-card {
    padding: 32px 24px;
  }

  .product-card__features {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .about__pals-items {
    grid-template-columns: 1fr;
  }

  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero__trust-divider {
    display: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .cta-banner__actions {
    flex-direction: column;
  }

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header__title {
    font-size: 1.75rem;
  }
}
