/* Ai Singularity V3 - UI/UX Pro Max Design System */
/* Style: Vibrant & Block-based | Pattern: Feature-Rich Showcase */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* UI/UX Pro Max Palette - Orange adaptation */
  --primary: #FF6A00;
  --primary-dark: #E85D00;
  --primary-light: #FF8A33;
  --cta: #F97316;
  --cta-hover: #EA580C;
  --bg: #F8FAFC;
  --bg-warm: #FFF8F3;
  --surface: #FFFFFF;
  --text: #1E293B;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-orange: 0 10px 30px -5px rgba(255,106,0,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

h1, h2, h3, h4 { font-family: 'Rubik', 'PingFang SC', sans-serif; font-weight: 700; letter-spacing: -0.02em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Floating Navbar - UI/UX Pro Max: top-4 spacing */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 1168px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-lg);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-links { list-style: none; display: flex; gap: 4px; }
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}
.nav-links a:hover { background: var(--border-light); color: var(--text); }
.nav-links a.active { background: var(--text); color: white; }

.nav-links .nav-app-link {
  background: var(--primary);
  color: white;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(255,106,0,0.22);
}

.nav-links .nav-app-link:hover {
  background: var(--primary-dark);
  color: white;
}

.nav-links a,
.btn,
.product-link {
  touch-action: manipulation;
}

.nav-links a:focus-visible,
.btn:focus-visible,
.product-link:focus-visible {
  outline: 3px solid rgba(255,106,0,0.32);
  outline-offset: 3px;
}

/* Hero - Vibrant Block Style */
.hero {
  padding: 200px 0 120px;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}
.hero-blocks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-block {
  position: absolute;
  border-radius: var(--radius-lg);
  opacity: 0.06;
}
.hero-block:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  transform: rotate(15deg);
}
.hero-block:nth-child(2) {
  width: 200px;
  height: 200px;
  background: var(--primary);
  bottom: 40px;
  left: 10%;
  transform: rotate(-10deg);
  border-radius: 40px;
}
.hero-block:nth-child(3) {
  width: 120px;
  height: 120px;
  background: var(--cta);
  top: 30%;
  left: -40px;
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; max-width: 800px; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease backwards;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease backwards;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--cta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeInUp 0.6s 0.2s ease backwards;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  animation: fadeInUp 0.6s 0.3s ease backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  font-family: 'Rubik', sans-serif;

  min-height: 48px;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 36px -6px rgba(255,106,0,0.35); }
.btn-outline {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--text); transform: translateY(-2px); }

/* Page Hero */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,106,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero p { color: var(--text-secondary); font-size: 17px; position: relative; z-index: 1; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* Features Section - Vibrant Blocks */
.features { padding: 120px 0; background: var(--bg); }
.features-header { text-align: center; margin-bottom: 72px; }
.features-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.features-header p { color: var(--text-muted); font-size: 16px; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-card:hover .feature-img { transform: scale(1.08); }

.feature-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover .feature-num {
  background: var(--primary);
  color: white;
}

.feature-body {
  padding: 24px;
  background: var(--surface);
}
.feature-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.feature-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Products Section - Feature-Rich Showcase */
.products-section {
  padding: 120px 0;
  background: var(--bg-warm);
}
.products-header { text-align: center; margin-bottom: 72px; }
.products-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }

.product-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.product-card-decoration {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--bg-warm);
  border-radius: 50%;
  transition: all 0.5s ease;
}
.product-card:hover .product-card-decoration { transform: scale(1.5); background: rgba(255,106,0,0.06); }
.product-card > * { position: relative; z-index: 1; }
.product-card-num {
  font-family: 'Rubik', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--bg-warm);
  line-height: 1;
  margin-bottom: -8px;
  transition: color 0.3s ease;
}
.product-card:hover .product-card-num { color: rgba(255,106,0,0.12); }
.product-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; margin-top: 4px; }
.product-card-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.product-card p { color: var(--text-secondary); font-size: 15px; margin-bottom: 24px; }
.product-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-warm);
  margin-bottom: 20px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  cursor: pointer;
  transition: gap 0.2s ease;
}
.product-link:hover { gap: 14px; color: var(--primary); }
.product-link svg { transition: transform 0.2s ease; }
.product-link:hover svg { transform: translateX(3px); }

/* Product Detail Page */
.product-detail-section { padding: 80px 0; background: var(--bg); }
.product-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}
.product-detail-block:last-child { border-bottom: none; }

.product-visual {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,0.06), transparent 60%);
}
.product-visual-icon { font-size: 100px; opacity: 0.25; }
.product-visual-logo {
  width: 65%;
  height: 65%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.product-detail-info .product-tag { margin-bottom: 16px; }
.product-detail-info h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.03em; }
.product-detail-info > p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.product-actions {
  margin-top: 32px;
}
.check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; }

/* Contact Page */
.contact-section { padding: 80px 0 120px; background: var(--bg); }
.contact-layout { max-width: 520px; margin: 0 auto; text-align: center; }
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.qr-frame {
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.qr-frame:hover { border-color: var(--primary); background: rgba(255,106,0,0.04); }
.qr-frame svg { opacity: 0.4; }
.qr-frame p { font-size: 13px; color: var(--text-muted); }
.contact-card h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.contact-card > p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.contact-divider {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 24px auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 32px 0;
  background: var(--surface);
}
.footer .container { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; }
.footer-beian { font-size: 11px; color: var(--text-muted); }
.footer-beian a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-beian a:hover,
.footer-beian a:focus-visible {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-nav { display: flex; gap: 24px; list-style: none; }
.footer-nav a { font-size: 13px; color: var(--text-muted); text-decoration: none; cursor: pointer; transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--text); }

/* CTA Section */
.cta-section { padding: 100px 0; text-align: center; background: var(--bg); }
.cta-section h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.03em; }
.cta-section p { color: var(--text-secondary); margin-bottom: 32px; font-size: 16px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-block { grid-template-columns: 1fr; gap: 40px; }
  .product-showcase { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar { top: 8px; width: calc(100% - 16px); }
  .navbar .container { height: 52px; padding: 0 16px; }
  .nav-links { gap: 2px; }

  .nav-links a { min-height: 40px; display: flex; align-items: center; padding: 6px 10px; font-size: 13px; }
  .logo { font-size: 0; gap: 0; }

  .logo-mark { width: 34px; height: 34px; }
  .hero { padding: 160px 0 80px; }
  .hero h1 { font-size: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-card { padding: 40px 28px; }
  .product-detail-section { padding: 40px 0; }
  .product-detail-block { padding: 40px 0; }
  .contact-card { padding: 40px 24px; }
  .footer .container { flex-direction: column; gap: 12px; }
  .page-hero { padding: 150px 0 60px; }
  .page-hero h1 { font-size: 28px; }
}

/* Accessibility: prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* 2026-07 Maikeyun product experience */
h1, h2, h3, h4, .logo { letter-spacing: 0; }
.logo span { white-space: nowrap; }
.logo-mark img { object-fit: contain; }
.hero-product {
  min-height: clamp(620px, 82vh, 760px);
  padding: 128px 0 64px;
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.hero-product .hero-overlay {
  display: none;
}
.hero-product-inner { width: 100%; position: relative; z-index: 1; }
.hero-copy { width: min(720px, 100%); margin: 0 auto; text-align: center; }
.hero-copy h1 { margin: 22px 0 20px; color: #111827; font-size: clamp(48px, 6vw, 76px); line-height: 1.08; }
.hero-copy .highlight { color: var(--primary); }
.hero-copy .hero-subtitle { max-width: 580px; color: #475569; font-size: 18px; line-height: 1.75; }
.hero-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: 30px; color: #64748b; font-size: 13px; }
.hero-facts span { display: flex; align-items: baseline; gap: 5px; }
.hero-facts strong { color: #111827; font-size: 22px; font-variant-numeric: tabular-nums; }
.mode-section, .suite-section, .product-capability-section, .upcoming-band { padding: 88px 0; }
.section-heading { margin-bottom: 34px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 520px); align-items: end; gap: 36px; }
.section-heading span, .section-kicker { color: var(--primary-dark); font-size: 12px; font-weight: 800; }
.section-heading h2, .proof-copy h2 { margin: 8px 0 0; color: #172033; font-size: clamp(30px, 3vw, 44px); line-height: 1.2; }
.section-heading > p { margin: 0; color: #64748b; line-height: 1.75; }
.mode-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.mode-card { min-height: 370px; padding: 28px; position: relative; border: 1px solid var(--border); border-top: 4px solid var(--primary); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.mode-number { color: #cbd5e1; font-size: 13px; font-weight: 800; }
.mode-card h3 { margin: 28px 0 13px; font-size: 24px; }
.mode-card p { margin: 0; color: #64748b; line-height: 1.75; }
.mode-card ul { margin: 25px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid #eef1f5; }
.mode-card li { padding: 7px 0 7px 19px; position: relative; color: #334155; font-size: 14px; }
.mode-card li::before { content: ""; width: 7px; height: 7px; position: absolute; left: 0; top: 14px; border-radius: 50%; background: var(--primary); }
.product-proof-band { padding: 84px 0; background: #172033; color: #fff; }
.product-proof-layout { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.45fr); align-items: center; gap: 48px; }
.proof-copy h2 { color: #fff; }
.proof-copy p { margin: 20px 0; color: #cbd5e1; line-height: 1.8; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; color: #ffb47a; font-weight: 800; }
.proof-media { margin: 0; border: 1px solid #475569; background: #fff; box-shadow: 0 24px 50px rgba(0,0,0,.24); overflow: hidden; }
.proof-media img { width: 100%; height: auto; display: block; }
.product-poster-section { padding: 88px 0; background: #172033; }
.product-poster-link { display: block; border: 1px solid #334155; border-radius: 8px; background: #fff; box-shadow: 0 26px 60px rgba(0,0,0,.25); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.product-poster-link:hover { transform: translateY(-3px); box-shadow: 0 32px 70px rgba(0,0,0,.32); }
.product-poster-link:focus-visible { outline: 4px solid rgba(255,106,0,.55); outline-offset: 5px; }
.product-poster-link picture, .product-poster-link img { width: 100%; display: block; }
.product-poster-link img { height: auto; }
.suite-list { border-top: 1px solid var(--border); }
.suite-list article { min-height: 104px; padding: 22px 0; display: grid; grid-template-columns: 90px minmax(220px, 1fr) minmax(220px, .8fr) 100px; align-items: center; gap: 22px; border-bottom: 1px solid var(--border); }
.suite-status { width: 58px; min-height: 27px; display: inline-flex; align-items: center; justify-content: center; color: #9a3412; background: #fff7ed; border-radius: 5px; font-size: 11px; font-weight: 800; }
.suite-status.live { color: #047857; background: #ecfdf5; }
.suite-list h3, .suite-list p { margin: 0; }
.suite-list p { margin-top: 5px; color: #64748b; font-size: 13px; }
.suite-list strong { color: #475569; font-size: 14px; }
.suite-list a { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: var(--primary); border-radius: 6px; font-weight: 800; }
.suite-list article > span:last-child { color: #94a3b8; text-align: center; font-size: 13px; }
.product-page-hero { min-height: 410px; padding-top: 155px; background: #172033; color: #fff; }
.product-page-hero h1 { color: #fff; }
.product-page-hero p { max-width: 760px; color: #cbd5e1; }
.capability-band { padding: 62px 0; display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); align-items: center; gap: 48px; border-bottom: 1px solid var(--border); }
.capability-band.reverse .capability-copy { order: 2; }
.capability-copy > span { color: var(--primary-dark); font-size: 12px; font-weight: 800; }
.capability-copy h2 { margin: 9px 0 15px; font-size: clamp(30px, 3vw, 42px); }
.capability-copy p { color: #64748b; line-height: 1.75; }
.capability-band figure { margin: 0; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-md); overflow: hidden; }
.capability-band figure img { width: 100%; height: auto; display: block; }
.capability-band .feature-list { margin-top: 23px; }
.capability-band .feature-list li { min-height: 38px; padding-left: 20px; position: relative; }
.capability-band .feature-list li::before { content: ""; width: 7px; height: 7px; position: absolute; left: 0; top: 11px; border-radius: 50%; background: var(--primary); }
.product-actions.centered { padding-top: 48px; justify-content: center; }
.upcoming-band { background: #f1f4f6; }
.upcoming-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.upcoming-grid.single { grid-template-columns: minmax(0, 1fr); }
.upcoming-grid article { min-height: 190px; padding: 28px; border: 1px solid #dbe0e6; border-radius: 8px; background: #fff; }
.upcoming-grid span { color: #9a3412; font-size: 11px; font-weight: 800; }
.upcoming-grid h3 { margin: 24px 0 10px; font-size: 23px; }
.upcoming-grid p { margin: 0; color: #64748b; line-height: 1.75; }

@media (max-width: 980px) {
  .hero-copy { width: min(720px, 100%); }
  .mode-grid { grid-template-columns: 1fr; }
  .mode-card { min-height: auto; }
  .product-proof-layout, .capability-band { grid-template-columns: 1fr; }
  .capability-band.reverse .capability-copy { order: 0; }
  .suite-list article { grid-template-columns: 75px minmax(0, 1fr) 100px; }
  .suite-list strong { grid-column: 2; }
}
@media (max-width: 768px) {
  .hero-product { min-height: 680px; padding-top: 110px; }
  .hero-copy { width: 100%; }
  .hero-copy h1 { font-size: 48px; }
  .hero-copy .hero-subtitle { font-size: 16px; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .mode-section, .suite-section, .product-capability-section, .upcoming-band { padding: 64px 0; }
  .product-proof-layout { gap: 28px; }
  .product-poster-section { padding: 58px 0; }
  .suite-list article { grid-template-columns: 70px minmax(0, 1fr); }
  .suite-list article > a, .suite-list article > span:last-child { grid-column: 2; width: 100px; }
  .upcoming-grid { grid-template-columns: 1fr; }
  .capability-band { padding: 45px 0; gap: 26px; }
}
@media (max-width: 520px) {
  .hero-copy h1 { font-size: 40px; }
  .hero-buttons { align-items: stretch; flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-facts { gap: 10px 18px; }
  .mode-card { padding: 23px; }
  .product-poster-section { padding: 38px 0; }
  .product-poster-section .container { padding: 0 12px; }
  .suite-list article { grid-template-columns: 1fr; }
  .suite-list strong, .suite-list article > a, .suite-list article > span:last-child { grid-column: 1; }
}
