/* ============================================
   Jarvis AI Solutions - Landing Page Styles
   Theme: Glossy Gold + Black
   ============================================ */

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

:root {
  --bg:         #0b0b0b;
  --bg-card:    rgba(255,255,255,0.04);
  --gold:       #d4af37;
  --gold-light: #f5c518;
  --text:       #f0f0f0;
  --text-dim:   #aaaaaa;
  --nav-bg:     rgba(20,20,20,0.85);
  --cyan:       #00e0ff;
  --cyan-dim:   rgba(0,224,255,0.12);
  --fire:       #ff6b35;
  --fire-light: #ff9500;
  --fire-dim:   rgba(255,107,53,0.12);
  --radius:     16px;
  --radius-sm:  10px;
  --max-w:      1200px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

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

h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; font-weight: 700; line-height: 1.2; }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 16px;
  word-break: break-word;
}

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 16px;
}

.gold-text  { color: var(--gold-light); }
.cyan-text  { color: var(--cyan); }
.fire-text  { color: var(--fire-light); }

/* ========== Navigation ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: background var(--transition);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  animation: spin 12s linear infinite;
}

.nav-pi {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 6px rgba(212,175,55,0.8);
  z-index: 2;
  line-height: 1;
}

.nav-links { display: flex; gap: 24px; align-items: center; }

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

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

.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,175,55,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}

.hero-logo {
  position: relative;
  width: clamp(120px, 22vw, 200px);
  height: clamp(120px, 22vw, 200px);
  margin: 0 auto 32px;
}

.hero-logo .gear {
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}

.hero-logo .pi {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: #fff;
  text-shadow:
    0 0 12px rgba(212,175,55,0.9),
    0 0 30px rgba(212,175,55,0.6),
    0 0 60px rgba(212,175,55,0.3);
  z-index: 2;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 8px;
}

.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-dim);
  margin-bottom: 36px;
  padding: 0 16px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), #009dff);
  color: #000;
  box-shadow: 0 4px 24px rgba(0,224,255,0.25);
}
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,224,255,0.4); }

.btn-fire {
  background: linear-gradient(135deg, var(--fire), var(--fire-light));
  color: #000;
  box-shadow: 0 4px 24px rgba(255,107,53,0.25);
}
.btn-fire:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,107,53,0.4); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  box-shadow: 0 4px 24px rgba(212,175,55,0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,175,55,0.4); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(212,175,55,0.1); transform: translateY(-2px); }

/* ========== Sections ========== */
section { padding: 80px 0; position: relative; }

.product-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
}

.product-header { text-align: center; margin-bottom: 48px; }

.product-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-logo-wrapper img { height: auto; width: auto; max-height: clamp(140px, 25vw, 280px); max-width: min(90%, 600px); }
.product-logo-wrapper { margin-bottom: 28px; }

.product-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.product-description {
  color: var(--text-dim);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 0 16px;
}

.jarvisx-section::before { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.jarvisx-section .product-badge { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(0,224,255,0.2); }
.jarvisx-section .section-title { color: var(--cyan); }

.blazeriz-section::before { background: linear-gradient(90deg, transparent, var(--fire), transparent); }
.blazeriz-section .product-badge { background: var(--fire-dim); color: var(--fire-light); border: 1px solid rgba(255,107,53,0.2); }
.blazeriz-section .section-title { color: var(--fire-light); }

/* ========== Stats ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.stat-card {
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), border-color var(--transition);
}

.stat-card:hover { transform: translateY(-4px); }
.jarvisx-section .stat-card:hover { border-color: rgba(0,224,255,0.3); }
.blazeriz-section .stat-card:hover { border-color: rgba(255,107,53,0.3); }

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.jarvisx-section .stat-number { color: var(--cyan); }
.blazeriz-section .stat-number { color: var(--fire-light); }

.stat-label { font-size: 0.8rem; color: var(--text-dim); }

/* ========== Module / Feature Grid ========== */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.module-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity var(--transition);
}

.module-card:hover { transform: translateY(-4px); }
.module-card:hover::before { opacity: 1; }

.jarvisx-section .module-card::before { background: var(--cyan); }
.jarvisx-section .module-card:hover { border-color: rgba(0,224,255,0.2); }

.blazeriz-section .module-card::before { background: var(--fire); }
.blazeriz-section .module-card:hover { border-color: rgba(255,107,53,0.2); }

.module-icon { font-size: 1.6rem; margin-bottom: 12px; }

.module-card h3 { font-size: 1rem; margin-bottom: 8px; }
.jarvisx-section .module-card h3 { color: var(--cyan); }
.blazeriz-section .module-card h3 { color: var(--fire-light); }

.module-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ========== Highlight Boxes ========== */
.engine-highlight {
  background: linear-gradient(135deg, rgba(0,224,255,0.06), rgba(0,224,255,0.02));
  border: 1px solid rgba(0,224,255,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  margin-bottom: 48px;
  text-align: center;
}

.engine-highlight h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--cyan); margin-bottom: 12px; }
.engine-highlight p { color: var(--text-dim); max-width: 700px; margin: 0 auto; line-height: 1.7; font-size: 0.9rem; }

.engine-layers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.engine-layers span {
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  background: rgba(0,224,255,0.08);
  border: 1px solid rgba(0,224,255,0.15);
  color: var(--cyan);
  white-space: nowrap;
}

.score-highlight {
  background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(255,149,0,0.02));
  border: 1px solid rgba(255,107,53,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  margin-bottom: 48px;
  text-align: center;
}

.score-highlight h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--fire-light); margin-bottom: 12px; }
.score-highlight p { color: var(--text-dim); max-width: 700px; margin: 0 auto; line-height: 1.7; font-size: 0.9rem; }

.score-components {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.score-components span {
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.15);
  color: var(--fire-light);
  white-space: nowrap;
}

/* ========== Pricing ========== */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.price-card {
  padding: 20px 14px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: all var(--transition);
}

.price-card:hover { transform: translateY(-4px); }
.jarvisx-section .price-card:hover { border-color: rgba(0,224,255,0.3); }
.blazeriz-section .price-card:hover { border-color: rgba(255,107,53,0.3); }

.price-card .plan-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card .plan-price { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 800; margin-bottom: 4px; }
.jarvisx-section .price-card .plan-price { color: var(--cyan); }
.blazeriz-section .price-card .plan-price { color: var(--fire-light); }

.price-card .plan-detail { font-size: 0.75rem; color: var(--text-dim); }

.product-cta { text-align: center; margin-top: 16px; }

/* ========== Why Section ========== */
.why-section { background: linear-gradient(180deg, rgba(212,175,55,0.03) 0%, transparent 100%); }
.why-section .section-title { color: var(--gold-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.why-card {
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.08);
  transition: all var(--transition);
}

.why-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.25); }

.why-card .why-icon { font-size: 1.8rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; color: var(--gold-light); margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ========== Founders ========== */
.founders { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }

.founder-card { text-align: center; max-width: 240px; }

.founder-card img {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 14px;
  box-shadow: 0 0 24px rgba(212,175,55,0.2);
}

.founder-card h3 { font-size: 1rem; color: var(--gold-light); margin-bottom: 4px; }
.founder-card p { font-size: 0.85rem; color: var(--text-dim); }

/* ========== Contact / Footer ========== */
.contact-section { border-top: 1px solid rgba(212,175,55,0.1); }
.contact-section .section-title { color: var(--gold-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }

.contact-form textarea { min-height: 120px; resize: vertical; }

/* ========== Toast Notification ========== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s ease;
  pointer-events: none;
  max-width: 90vw;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast.success {
  background: rgba(0,40,20,0.9);
  border: 1px solid rgba(0,255,100,0.3);
  color: #00ff88;
}

.toast.error {
  background: rgba(40,0,0,0.9);
  border: 1px solid rgba(255,60,60,0.3);
  color: #ff6666;
}

.toast-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.toast.success .toast-icon { color: #00ff88; }
.toast.error .toast-icon { color: #ff6666; }

.contact-info h3 { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 14px; }
.contact-info p { color: var(--text-dim); margin-bottom: 10px; line-height: 1.7; font-size: 0.9rem; }
.contact-info a { color: var(--gold-light); transition: color var(--transition); }
.contact-info a:hover { color: var(--gold); }

.product-links { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.product-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-card);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.product-link:hover { transform: translateX(4px); }
.product-link.cyan:hover { border-color: rgba(0,224,255,0.3); }
.product-link.fire:hover { border-color: rgba(255,107,53,0.3); }

footer {
  text-align: center;
  padding: 28px 24px;
  color: var(--text-dim);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer a { color: var(--gold); }

/* GCP_PARTNER_BADGE_20260413 */
.gcp-partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.2px;
}

/* GCP_PARTNER_NAV_20260413: badge next to nav title */
.gcp-nav-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(66,133,244,0.25);
  background: rgba(66,133,244,0.06);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.gcp-cloud-icon {
  flex-shrink: 0;
}

/* ========== Scroll Animations ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== Responsive: Tablet (769px - 1024px) ========== */
@media (max-width: 1024px) {
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .pricing-row { gap: 10px; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .engine-highlight, .score-highlight { padding: 24px 16px; }
  .engine-highlight p, .score-highlight p { font-size: 0.85rem; }
  .engine-layers span, .score-components span { font-size: 0.6rem; padding: 3px 8px; }
}

/* ========== Responsive: Mobile (max 768px) ========== */
@media (max-width: 768px) {
  .gcp-nav-badge { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero { min-height: 85vh; padding: 90px 20px 50px; }

  section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  .engine-highlight, .score-highlight { padding: 24px 16px; }
  .engine-highlight p, .score-highlight p { font-size: 0.85rem; }
  .engine-layers span, .score-components span { font-size: 0.65rem; padding: 4px 10px; }
  .founders { gap: 20px; }

  .product-description { padding: 0 8px; }
}

/* ========== Responsive: Small phones (max 480px) ========== */
@media (max-width: 480px) {
  .nav-inner { padding: 0 12px; }
  .container { padding: 0 12px; }

  .hero { padding: 80px 12px 40px; }

  .module-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 16px 8px; }

  .pricing-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }

  .module-card { padding: 20px 16px; }
  .product-header { margin-bottom: 32px; }
}
