/* GRPHX Zone — Complete Stylesheet
   Brand: #242424 | #FCB016 | #FFFFFF | Outfit font
   ============================================ */

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

:root {
  --black: #242424;
  --dark: #1A1A1A;
  --gold: #FCB016;
  --gold-hover: #E5A014;
  --white: #FFFFFF;
  --grey: #999999;
  --light-grey: #E0E0E0;
  --border: #333333;
  --section-pad: 100px 0;
  --container: 1200px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* Skip to content */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--gold); color: var(--black); padding: 8px 16px;
  font-weight: 700; z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* Utility */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); position: relative; }
.section-dark { background: var(--dark); }
.section-gold { background: var(--gold); color: var(--black); }
.section-gold h2, .section-gold h3 { color: var(--black); }
.text-center { text-align: center; }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; margin-bottom: 12px; }
p { color: var(--light-grey); font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }
.text-gold { color: var(--gold); }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 8px;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat-label { font-size: 0.82rem; color: var(--grey); }

/* Page header */
.page-header { padding: 160px 0 80px; position: relative; overflow: hidden; }
.page-header::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(252,176,22,0.06) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { margin-bottom: 16px; }
.breadcrumb { font-size: 0.85rem; color: var(--grey); margin-bottom: 24px; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--gold); }

/* Inner pages use the same hero animation stack as homepage */
.page-header.hero-shared-animation {
  background: var(--black);
}
.page-header.hero-shared-animation::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 60% at 70% 35%, rgba(252,176,22,0.08) 0%, transparent 62%),
    radial-gradient(ellipse 70% 55% at 18% 78%, rgba(252,176,22,0.045) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}
.page-header.hero-shared-animation .hero-bg {
  z-index: 1;
}
.page-header.hero-shared-animation .hero-noise {
  opacity: 0.35;
}

/* GRPHX Zone — Cinematic Hero Animations
   Brand: #242424 | #FCB016 | #FFFFFF | Outfit font
   ============================================ */

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Animated gradient background layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 30%, rgba(252,176,22,0.06) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}



/* Rotating conic gradient for depth */




.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

#grid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Drifting glow orbs */
.hero-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -250px;
  right: -150px;
  background: radial-gradient(circle, rgba(252,176,22,0.12) 0%, transparent 65%);
  animation: glowDrift1 14s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 65%);
  animation: glowDrift2 18s ease-in-out infinite;
  pointer-events: none;
}






/* Floating orbs */









/* Noise grain overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

/* Hero content */
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 780px;
  padding: 120px 0 80px;
}

.hero-pre {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-pre::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(252,176,22,0.2));
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--light-grey);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 640px;
  position: relative;
  padding-left: 20px;
}
.hero-sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(252,176,22,0) 100%);
  border-radius: 2px;
}

/* === MAGNETIC BUTTONS === */
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  perspective: 800px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              background 0.2s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  transform-style: preserve-3d;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before {
  left: 150%;
}

.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--black);
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 12px 40px rgba(252,176,22,0.35),
    0 0 80px rgba(252,176,22,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  transform-style: preserve-3d;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 12px 40px rgba(252,176,22,0.25),
    0 0 60px rgba(252,176,22,0.1);
}

/* === PRODUCT CARDS 3D TILT === */
.product-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(252,176,22,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover {
  border-color: rgba(252,176,22,0.4);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 50px rgba(252,176,22,0.08),
    inset 0 0 40px rgba(252,176,22,0.02);
}
.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.product-icon svg {
  width: 40px;
  height: 40px;
  transition: filter 0.3s ease;
}
.product-card:hover .product-icon svg {
  filter: drop-shadow(0 0 10px rgba(252,176,22,0.6));
  transform: scale(1.1);
}

/* === MARQUEE === */
.marquee {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
  gap: 40px;
  padding-right: 40px;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SCROLL-TRIGGERED ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(40px) perspective(800px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === STAT CARDS === */
.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252,176,22,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stat-card:hover {
  border-color: rgba(252,176,22,0.25);
  transform: translateY(-4px);
}
.stat-card:hover::after {
  opacity: 1;
}
.stat-value {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-glow-1 { width: 350px; height: 350px; }
  .hero-glow-2 { width: 280px; height: 280px; }
  .hero-orb-1 { width: 180px; height: 180px; }
  .hero-orb-2 { width: 120px; height: 120px; }
  .hero-orb-3 { width: 80px; height: 80px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; text-align: center; }
}
/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.product-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(252,176,22,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.product-icon svg { width: 40px; height: 40px; }
.product-card h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 4px; }
.product-price { font-size: 0.85rem; font-weight: 600; color: var(--gold); margin-bottom: 12px; }
.product-card p { font-size: 0.9rem; color: var(--grey); margin-bottom: 16px; }
.product-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.product-link:hover { gap: 12px; }

/* === TRUST BAR === */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-item {
  font-size: 0.9rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item strong { color: var(--white); }

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.feature-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.feature-card:hover { border-color: rgba(252,176,22,0.2); transform: translateY(-2px); }
.feature-card:hover::after { width: 100%; }
.feature-card h3 { color: var(--gold); font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.feature-card h3 svg { width: 18px; height: 18px; flex-shrink: 0; }
.feature-card p { font-size: 0.9rem; margin-bottom: 0; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
  align-items: stretch;
}
.pricing-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(252,176,22,0.12);
}
.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  letter-spacing: 0.06em;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.pricing-tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 8px; }
.pricing-price { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--grey); }
.pricing-card ul { margin-bottom: 24px; flex-grow: 1; }
.pricing-card li { font-size: 0.9rem; color: var(--grey); padding: 7px 0; border-bottom: 1px solid rgba(51,51,51,0.5); }
.pricing-card li::before { content: '✓ '; color: var(--gold); font-weight: 700; }
.pricing-card .btn { width: 100%; }

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  position: relative;
}
.process-step {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.process-step:hover { border-color: rgba(252,176,22,0.3); transform: translateY(-3px); }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}
.step-number { font-size: 2.5rem; font-weight: 700; color: var(--gold); opacity: 0.25; margin-bottom: 12px; }
.process-step h3 { color: var(--gold); font-size: 1rem; }

/* === CTA SECTION === */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(252,176,22,0.05) 0%, transparent 65%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 600px; margin: 0 auto 28px; }

/* === FOOTER === */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand p { color: var(--grey); font-size: 0.9rem; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: flex; align-items: center; gap: 6px; color: var(--grey); font-size: 0.9rem; padding: 4px 0; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col a svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--grey); }

/* === SCROLL TOP === */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 900;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(252,176,22,0.3); }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(36,36,36,0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 44px; width: auto; transition: height 0.3s ease; }
.navbar.scrolled .nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--white); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; position: relative; transition: color 0.3s ease; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.8rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; }
.nav-overlay.active { display: block; }

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .hero-content { padding: 90px 0 50px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--dark); flex-direction: column; padding: 80px 32px 32px; gap: 20px;
    transition: right 0.3s ease; box-shadow: -5px 0 30px rgba(0,0,0,0.5); z-index: 1001;
  }
  .nav-links.active { right: 0; }
  .nav-toggle { display: flex; }
  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; text-align: center; }
  .trust-bar { gap: 12px; }
  .trust-item { font-size: 0.82rem; }
}

/* Phase 1 mobile + hero safety patch */
.hero-support {
  font-size: 1rem;
  color: var(--grey);
  margin: -16px 0 28px;
  font-weight: 500;
}
.trust-chips {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-chips span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--light-grey);
  font-size: 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
}
@media (max-width: 768px) {
  html, body { width: 100%; overflow-x: hidden; }
  .container { padding-left: 18px; padding-right: 18px; }
  .navbar { padding: 12px 0; }
  .nav-logo img { height: 34px; max-width: 140px; object-fit: contain; }
  .hero { min-height: auto; align-items: flex-start; padding: 104px 0 64px; }
  .hero-content { max-width: 100%; width: 100%; padding: 0; }
  .hero-pre { font-size: 0.66rem; letter-spacing: 0.13em; line-height: 1.45; gap: 8px; flex-wrap: wrap; }
  .hero-pre::before { width: 10px; }
  .hero h1 { font-size: clamp(2.15rem, 10.8vw, 3.2rem); line-height: 1.03; letter-spacing: -0.045em; max-width: 100%; overflow-wrap: normal; }
  .hero-sub { font-size: 1rem; line-height: 1.55; max-width: 100%; padding-left: 14px; margin-bottom: 26px; }
  .hero-support { font-size: 0.95rem; margin: -10px 0 22px; }
  .btn-group { flex-direction: column; gap: 12px; width: 100%; }
  .btn-group .btn { width: 100%; text-align: center; }
  .trust-chips { justify-content: flex-start; gap: 10px; margin-top: 22px; }
  .trust-chips span { font-size: 0.78rem; padding: 7px 10px; }
  .stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 390px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-pre { letter-spacing: 0.1em; }
}


/* Phase 2 product landing helpers */
.process-grid, .features-grid { align-items: stretch; }
.process-step, .feature-card, .stat-card { height: 100%; }


/* Phase 3 pricing rebuild */
.pricing-bundle-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(252,176,22,0.12);
  border: 1px solid rgba(252,176,22,0.35);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-scan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.pricing-scan-grid .pricing-card { padding: 28px 20px; }
.pricing-scan-grid .pricing-price {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
}
.bundle-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 40px;
  border: 1px solid rgba(252,176,22,0.45);
  background: linear-gradient(135deg, rgba(252,176,22,0.12), rgba(255,255,255,0.03));
}
.bundle-card p { margin-bottom: 0; }
.bundle-discount {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 0.9;
}
.bundle-discount span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; }
@media (max-width: 1200px) {
  .pricing-scan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .pricing-scan-grid { grid-template-columns: 1fr; }
  .bundle-card { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .bundle-discount { margin: 0 auto; }
}


/* Phase 4 AI Solutions rebuild */
.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.workflow-step {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 26px 20px;
  position: relative;
}
.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  margin-bottom: 14px;
}
.ai-execution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}
.agent-panel {
  background: #111;
  border: 1px solid rgba(252,176,22,0.35);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.agent-panel-header { display: flex; gap: 7px; margin-bottom: 18px; }
.agent-panel-header span { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); opacity: 0.75; }
.agent-message {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  border: 1px solid var(--border);
  color: var(--light-grey);
}
.agent-message.inbound { background: rgba(255,255,255,0.04); }
.agent-message.outbound { background: rgba(252,176,22,0.10); border-color: rgba(252,176,22,0.28); }
.agent-message.system { background: rgba(255,255,255,0.03); color: var(--gold); }
.agent-message.booked { background: var(--gold); color: var(--black); font-weight: 800; }
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.proof-row div {
  border: 1px solid var(--border);
  padding: 14px;
  background: rgba(255,255,255,0.03);
}
.proof-row strong { display: block; color: var(--gold); font-size: 1.25rem; }
.proof-row span { display: block; color: var(--grey); font-size: 0.8rem; line-height: 1.4; }
@media (max-width: 900px) {
  .workflow-strip { grid-template-columns: repeat(2, 1fr); }
  .ai-execution-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .workflow-strip, .proof-row { grid-template-columns: 1fr; }
  .agent-panel { padding: 14px; }
}


/* Phase 5 Aura rebuild */
.aura-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}
.dashboard-mock {
  background: #111;
  border: 1px solid rgba(252,176,22,0.35);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.dashboard-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-bottom: 18px;
}
.dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 18px 0 rgba(252,176,22,0.5), 36px 0 rgba(252,176,22,0.25);
  margin-right: 40px;
}
.dashboard-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--grey);
}
.dashboard-row strong { color: var(--gold); }
.dashboard-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 130px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
}
.dashboard-chart i {
  display: block;
  background: linear-gradient(180deg, var(--gold), rgba(252,176,22,0.22));
  min-height: 32px;
}
.dashboard-chart i:nth-child(1) { height: 48%; }
.dashboard-chart i:nth-child(2) { height: 72%; }
.dashboard-chart i:nth-child(3) { height: 56%; }
.dashboard-chart i:nth-child(4) { height: 88%; }
.dashboard-chart i:nth-child(5) { height: 64%; }
.tight-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .aura-dashboard-grid { grid-template-columns: 1fr; }
  .tight-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .tight-card-grid { grid-template-columns: 1fr; }
  .dashboard-mock { padding: 15px; }
  .dashboard-row { font-size: 0.88rem; }
  .aura-mobile-cta .btn-group { position: sticky; bottom: 12px; z-index: 10; }
}


/* Phase 6 Custom Builds rebuild */
.milestone-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 8px;
  max-width: 760px;
}
.milestone-strip div {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
  padding: 14px;
}
.milestone-strip strong { display: block; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; }
.milestone-strip span { display: block; color: var(--light-grey); font-size: 0.82rem; line-height: 1.35; }
.custom-build-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,0.85fr);
  gap: 42px;
  align-items: center;
}
.scope-panel {
  background: #111;
  border: 1px solid rgba(252,176,22,0.35);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.scope-panel h3 { color: var(--gold); }
.scope-panel li {
  color: var(--light-grey);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.scope-panel li::before { content: '✓ '; color: var(--gold); font-weight: 800; }
.custom-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.timeline-item {
  border: 1px solid var(--border);
  background: var(--black);
  padding: 26px 20px;
  position: relative;
}
.timeline-item span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .milestone-strip, .custom-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .custom-build-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .milestone-strip, .custom-timeline { grid-template-columns: 1fr; }
  .scope-panel { padding: 20px; }
}


/* Final About + Contact phases */
.cred-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.cred-chip-row span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(252,176,22,0.35);
  background: rgba(252,176,22,0.10);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-split {
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: 48px;
  align-items: start;
}
.short-blocks {
  display: grid;
  gap: 16px;
}
.short-blocks div {
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--dark);
}
.contact-cta-card {
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(320px,1fr);
  gap: 34px;
  align-items: start;
  border: 1px solid rgba(252,176,22,0.42);
  background: linear-gradient(135deg, rgba(252,176,22,0.10), rgba(255,255,255,0.03));
  padding: 40px;
}
.contact-card-copy p:last-child { margin-bottom: 0; }
.contact-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  color: var(--grey);
}
.contact-mini-links a { color: var(--gold); font-weight: 800; }
.minimal-contact-form {
  display: grid;
  gap: 14px;
}
.minimal-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.minimal-contact-form input,
.minimal-contact-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 15px;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  outline: none;
}
.minimal-contact-form textarea { min-height: 130px; resize: vertical; }
.minimal-contact-form input:focus,
.minimal-contact-form textarea:focus { border-color: var(--gold); }
.minimal-contact-form .btn { width: 100%; }
@media (max-width: 820px) {
  .about-split, .contact-cta-card { grid-template-columns: 1fr; }
  .contact-cta-card { padding: 28px 20px; }
}
@media (max-width: 560px) {
  .cred-chip-row { flex-direction: column; align-items: stretch; }
  .cred-chip-row span { justify-content: center; }
}


/* Premium motion layer v110 */
:root {
  --gold-soft: rgba(252,176,22,0.25);
}
body {
  background-image: radial-gradient(circle at 15% -10%, rgba(252,176,22,0.10), transparent 32%), radial-gradient(circle at 85% -15%, rgba(252,176,22,0.07), transparent 30%);
}
.navbar {
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  border-bottom: 1px solid rgba(252,176,22,0.22);
  box-shadow: 0 10px 32px rgba(0,0,0,0.30);
}
.hero {
  --mx: 50%;
  --my: 35%;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 400px at var(--mx) var(--my), rgba(252,176,22,0.12), transparent 62%);
  z-index: 0;
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(252,176,22,0.22);
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}
.hero-orbit-1 {
  width: min(64vw, 760px);
  height: min(64vw, 760px);
  right: -220px;
  top: -160px;
  animation: heroSpin 30s linear infinite;
}
.hero-orbit-2 {
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  right: -130px;
  top: -70px;
  border-color: rgba(255,255,255,0.12);
  animation: heroSpinReverse 22s linear infinite;
}
.hero-content {
  position: relative;
}
.hero-content::before {
  content: none;
}
.hero-metric-strip {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
  margin-top: 22px;
}
.hero-metric-strip > div {
  border: 1px solid rgba(252,176,22,0.26);
  background: rgba(0,0,0,0.30);
  padding: 11px 12px;
  display: grid;
  gap: 4px;
}
.hero-metric-strip strong {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.hero-metric-strip span {
  color: #cbcbcb;
  font-size: 0.82rem;
}
.product-card,
.feature-card,
.stat-card,
.contact-card,
.scope-panel,
.timeline-step,
.pricing-card {
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.4s ease;
}
.product-card:hover,
.feature-card:hover,
.stat-card:hover,
.contact-card:hover,
.scope-panel:hover,
.timeline-step:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252,176,22,0.6);
  box-shadow: 0 24px 52px rgba(0,0,0,0.40), 0 0 0 1px rgba(252,176,22,0.15) inset;
}
.reveal-in {
  opacity: 0;
  transform: translateY(24px);
}
.reveal-in.revealed {
  opacity: 1;
  transform: translateY(0);
}
@keyframes heroSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes heroSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@media (max-width: 860px) {
  .hero-content::before { inset: -18px -16px -14px; }
  .hero-metric-strip { grid-template-columns: 1fr; }
  .hero-orbit-1,
  .hero-orbit-2 { display:none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orbit-1,
  .hero-orbit-2,
  .hero-glow-1,
  .hero-glow-2 { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* === INNER PAGE PREMIUM TRANSITIONS (PHASE 2) === */
body.inner-page-premium {
  --premium-curve: cubic-bezier(0.22, 1, 0.36, 1);
}

body.inner-page-premium::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(252,176,22,0.12) 0%, rgba(36,36,36,0.94) 55%, rgba(36,36,36,1) 100%);
  pointer-events: none;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.34s ease, transform 0.42s var(--premium-curve);
  z-index: 2000;
}

body.inner-page-premium.page-leaving::before {
  opacity: 1;
  transform: scale(1);
}

body.inner-page-premium .page-header,
body.inner-page-premium .section,
body.inner-page-premium .cta-section {
  position: relative;
  overflow: hidden;
}

body.inner-page-premium .page-header::after,
body.inner-page-premium .section::after,
body.inner-page-premium .cta-section::after {
  content: '';
  position: absolute;
  inset: -20% -30%;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(252,176,22,0.03) 25%,
    rgba(255,255,255,0.015) 45%,
    rgba(252,176,22,0.035) 65%,
    transparent 100%);
  transform: translateX(-24%) rotate(-2deg);
  opacity: 0.35;
  pointer-events: none;
  animation: sectionSheen 10s ease-in-out infinite;
}

@keyframes sectionSheen {
  0%, 100% { transform: translateX(-24%) rotate(-2deg); opacity: 0.2; }
  50% { transform: translateX(24%) rotate(2deg); opacity: 0.42; }
}

body.inner-page-premium .is-reveal-init {
  opacity: 0;
  transform: translateY(52px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.85s var(--premium-curve) var(--reveal-delay, 0ms),
    transform 0.85s var(--premium-curve) var(--reveal-delay, 0ms),
    filter 0.85s var(--premium-curve) var(--reveal-delay, 0ms);
}

body.inner-page-premium .is-reveal-init.is-reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.inner-page-premium .is-reveal-init .is-stagger-init {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition:
    opacity 0.7s var(--premium-curve),
    transform 0.7s var(--premium-curve),
    filter 0.7s var(--premium-curve);
}

body.inner-page-premium .is-reveal-init.is-reveal-visible .is-stagger-init {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  body.inner-page-premium .is-reveal-init,
  body.inner-page-premium .is-reveal-init .is-stagger-init {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  body.inner-page-premium .page-header::after,
  body.inner-page-premium .section::after,
  body.inner-page-premium .cta-section::after {
    animation: none !important;
  }
}
