/* ============================================
   FLUYENTA - PALANTIR-INSPIRED DESIGN SYSTEM
   Authoritative. Spacious. Confident.
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
  /* Brand blue - matches logo */
  --brand: #2BA6FF;
  --brand-light: #5BBAFF;
  --brand-dark: #1A8FE6;
  --brand-subtle: rgba(43, 166, 255, 0.08);
  --brand-glow: rgba(43, 166, 255, 0.15);

  /* Legacy aliases */
  --neon-blue: var(--brand);
  --neon-blue-light: var(--brand-light);
  --neon-blue-dark: var(--brand-dark);
  --cyan: var(--brand);
  --cyan-light: var(--brand-light);

  --navy: #09090B;
  --navy-light: #0C0C0F;
  --navy-card: #111114;
  --navy-border: rgba(255, 255, 255, 0.06);
  --text-primary: #FAFAFA;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-dim: rgba(255, 255, 255, 0.2);
  --rule-color: rgba(255, 255, 255, 0.08);
  --section-padding: clamp(5rem, 10vw, 10rem);
  --content-max: 76rem;
  --content-narrow: 56rem;

  --purple: #A855F7;
  --orange: #F97316;
  --green: #10B981;
  --yellow: #EAB308;
  --red: #EF4444;
  --pink: #EC4899;
}

/* ============================================
   2. BASE STYLES
   ============================================ */
.fluyenta-body {
  background: var(--navy);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "cv01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
  line-height: 1.6;
}

/* ============================================
   3. BACKGROUND - Minimal, no particles
   ============================================ */
.fluyenta-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(43, 166, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.fluyenta-mesh,
.fluyenta-orbs,
.fluyenta-particles,
.fluyenta-grid,
.orb, .star, .particle {
  display: none !important;
}

/* ============================================
   4. NAVIGATION
   ============================================ */
.fluyenta-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
}

.fluyenta-navbar.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--rule-color);
}

.fluyenta-navbar-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fluyenta-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fluyenta-logo-img {
  height: 1.75rem;
  width: auto;
}

.fluyenta-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.fluyenta-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
  position: relative;
}

.fluyenta-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fluyenta-nav-link:hover {
  color: #fff;
}
.fluyenta-nav-link:hover::after {
  width: 70%;
}

/* Navbar background sólido para legibilidad */
.fluyenta-navbar {
  background: linear-gradient(180deg, rgba(8,9,12,0.72), rgba(8,9,12,0.35) 70%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}
.fluyenta-navbar.scrolled {
  background: rgba(8, 9, 12, 0.92);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom-color: rgba(255,255,255,0.06);
}

.fluyenta-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Nav CTA - restrained outline style for enterprise confidence */
.fluyenta-navbar .fluyenta-btn-glow {
  padding: 0.6rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand-light);
  letter-spacing: 0.02em;
}

.fluyenta-navbar .fluyenta-btn-glow:hover {
  background: var(--brand);
  color: white;
  transform: none;
}

.fluyenta-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem 1.5rem;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-border);
}

.fluyenta-mobile-menu.open {
  display: flex;
}

.fluyenta-mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.fluyenta-mobile-link:hover {
  color: var(--text-primary);
}

.fluyenta-mobile-menu .fluyenta-btn-glow {
  margin-top: 0.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .fluyenta-navbar-inner {
    padding: 1rem 1.5rem;
  }
  .fluyenta-nav-links {
    display: none;
  }
  .fluyenta-menu-toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  .fluyenta-mobile-menu {
    display: none !important;
  }
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.fluyenta-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
}

.fluyenta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 2rem;
}

.fluyenta-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.fluyenta-heading {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 2rem;
  max-width: 18ch;
}

.fluyenta-gradient-text {
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fluyenta-text-glow {
  /* Removed - no glow in Palantir style */
}

.fluyenta-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--text-secondary);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 400;
}

.fluyenta-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.fluyenta-social-proof,
.fluyenta-scroll-indicator {
  display: none;
}

/* ============================================
   6. BUTTONS
   ============================================ */
.fluyenta-btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: var(--brand);
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.fluyenta-btn-glow:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}

.fluyenta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--navy-border);
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.fluyenta-btn-outline:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

/* ============================================
   7. SECTION DIVIDERS & STRUCTURE
   ============================================ */
.section-rule {
  width: 100%;
  height: 1px;
  background: var(--rule-color);
}

.fluyenta-section {
  padding: var(--section-padding) 2rem;
  max-width: var(--content-max);
  margin: 0 auto;
  position: relative;
}

.fluyenta-section + .fluyenta-section {
  border-top: 1px solid var(--rule-color);
}

.fluyenta-section-header {
  margin-bottom: 4rem;
}

.fluyenta-section-header.centered {
  text-align: center;
}

.fluyenta-section-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  display: block;
  margin-bottom: 1rem;
}

.fluyenta-section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.fluyenta-section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.fluyenta-section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 48ch;
}

.fluyenta-section-header.centered .fluyenta-section-subtitle {
  margin: 0 auto;
}

.fluyenta-section-underline {
  display: none;
}

/* ============================================
   8. POWERED-BY STRIP
   ============================================ */
.fluyenta-powered-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.5rem 2rem;
  max-width: var(--content-max);
  margin: 0 auto;
  border-top: 1px solid var(--rule-color);
  border-bottom: 1px solid var(--rule-color);
  flex-wrap: wrap;
}

.fluyenta-powered-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.fluyenta-powered-item svg {
  opacity: 0.4;
}

/* ============================================
   9. AGENT CARDS (Home page grid)
   ============================================ */
.fluyenta-agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .fluyenta-agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fluyenta-agents-grid {
    grid-template-columns: 1fr;
  }
}

.agent-card {
  background: rgba(43, 166, 255, 0.04);
  padding: 2.5rem;
  transition: background 0.3s ease;
}

.agent-card:hover {
  background: rgba(43, 166, 255, 0.08);
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.agent-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(43, 166, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
  flex-shrink: 0;
}

.agent-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.agent-role {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.125rem;
}

.agent-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.agent-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-card-stat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
}

/* ============================================
   10. PLATFORM GRID
   ============================================ */
.fluyenta-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .fluyenta-platform-grid {
    grid-template-columns: 1fr;
  }
}

.platform-card {
  padding: 2.5rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.5rem;
  background: transparent;
  transition: all 0.3s ease;
}

.platform-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.015);
}

.platform-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.platform-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.platform-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Workflow card inside platform cards */
.workflow-card {
  padding: 1.25rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.workflow-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.workflow-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.agent-badge-active {
  font-size: 0.625rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workflow-steps {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.workflow-step-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.workflow-step-icon.blue { color: var(--neon-blue); background: rgba(43, 166, 255, 0.08); }
.workflow-step-icon.purple { color: var(--purple); background: rgba(168, 85, 247, 0.08); }
.workflow-step-icon.orange { color: var(--orange); background: rgba(249, 115, 22, 0.08); }
.workflow-step-icon.green { color: var(--green); background: rgba(16, 185, 129, 0.08); }
.workflow-step-icon.cyan { color: var(--cyan); background: rgba(56, 178, 172, 0.08); }
.workflow-step-icon.pink { color: var(--pink); background: rgba(236, 72, 153, 0.08); }

.workflow-step-label {
  font-size: 0.6875rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.workflow-connector {
  width: 2rem;
  height: 1px;
  background: var(--rule-color);
  flex-shrink: 0;
}

/* ============================================
   11. CAPABILITIES GRID
   ============================================ */
.fluyenta-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .fluyenta-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .fluyenta-capabilities-grid {
    grid-template-columns: 1fr;
  }
}

.capability-cell {
  background: rgba(43, 166, 255, 0.04);
  padding: 2.5rem;
  transition: background 0.3s ease;
}

.capability-cell:hover {
  background: rgba(43, 166, 255, 0.08);
}

.capability-icon {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.capability-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.capability-description {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================
   12. METRICS BAR
   ============================================ */
.fluyenta-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--content-max);
  margin: 0 auto;
  border-top: 1px solid var(--rule-color);
  border-bottom: 1px solid var(--rule-color);
}

@media (max-width: 768px) {
  .fluyenta-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.metric-item {
  padding: 3.5rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--rule-color);
}

.metric-item:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .metric-item:nth-child(2) {
    border-right: none;
  }
  .metric-item:nth-child(1),
  .metric-item:nth-child(2) {
    border-bottom: 1px solid var(--rule-color);
  }
}

.metric-value {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================
   13. PIPELINE (The Journey)
   ============================================ */
.fluyenta-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.pipeline-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid var(--rule-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.pipeline-step:hover .pipeline-number {
  border-color: var(--cyan);
  color: var(--cyan);
}

.pipeline-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.pipeline-arrow {
  color: var(--text-dim);
  flex-shrink: 0;
}

/* ============================================
   14. CTA SECTION
   ============================================ */
.fluyenta-cta-section {
  text-align: center;
  padding: var(--section-padding) 2rem;
  max-width: var(--content-max);
  margin: 0 auto;
  border-top: 1px solid var(--rule-color);
}

.fluyenta-cta-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.fluyenta-cta-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.fluyenta-inline-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 28rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.fluyenta-input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease;
}

.fluyenta-input::placeholder {
  color: var(--text-dim);
}

.fluyenta-input:focus {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   14b. WAITLIST FORM
   ============================================ */
.fluyenta-form-container {
  max-width: 24rem;
  margin: 0 auto;
  padding: 3rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.015);
}

.fluyenta-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.fluyenta-form-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   15. FEATURE CARDS (Features page)
   ============================================ */
.fluyenta-feature-card {
  padding: 2.5rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.5rem;
  background: transparent;
  transition: all 0.3s ease;
}

.fluyenta-feature-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.015);
}

.fluyenta-feature-card.featured {
  border-color: rgba(43, 166, 255, 0.3);
  background: rgba(43, 166, 255, 0.03);
}

.fluyenta-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.fluyenta-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.fluyenta-feature-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Product cards (smaller) */
.fluyenta-product-card {
  padding: 2rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.5rem;
  background: transparent;
  transition: all 0.3s ease;
}

.fluyenta-product-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.015);
}

.fluyenta-product-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color, var(--text-muted));
  margin-bottom: 1rem;
}

.fluyenta-product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.fluyenta-product-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* AI cards (Features page) */
.fluyenta-ai-card {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.fluyenta-ai-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.fluyenta-ai-icon {
  flex-shrink: 0;
  color: var(--text-dim);
}

/* ============================================
   16. AGENT PAGE STYLES
   ============================================ */
.agent-roster {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 2rem 4rem;
  max-width: var(--content-max);
  margin: 0 auto;
  flex-wrap: wrap;
}

.agent-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}

.agent-chip:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.agent-section {
  border-top: 1px solid var(--rule-color);
}

.agent-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-padding) 2rem;
}

.agent-demo.reverse {
  direction: rtl;
}

.agent-demo.reverse > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .agent-demo {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .agent-demo.reverse {
    direction: ltr;
  }
}

.agent-info h2 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.agent-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-light);
  margin-bottom: 1.5rem;
}

.agent-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.agent-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.agent-stat {
  display: flex;
  flex-direction: column;
}

.agent-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.agent-stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.agent-capabilities {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.agent-capability {
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--rule-color);
  border-radius: 0.25rem;
  letter-spacing: 0.02em;
}

/* ============================================
   17. MOCKUPS (Demo UIs)
   ============================================ */
.mockup {
  border: 1px solid var(--rule-color);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--navy-card);
}

.mockup-bar {
  display: flex;
  gap: 0.375rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--rule-color);
}

.mockup-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.mockup-dot.red { background: rgba(239, 68, 68, 0.4); }
.mockup-dot.yellow { background: rgba(234, 179, 8, 0.4); }
.mockup-dot.green { background: rgba(16, 185, 129, 0.4); }

.mockup-body {
  padding: 1.5rem;
}

/* Chat */
.chat-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-msg {
  padding: 0.875rem 1.125rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  max-width: 85%;
}

.msg-ai {
  background: rgba(43, 166, 255, 0.08);
  border: 1px solid rgba(43, 166, 255, 0.12);
  color: var(--text-secondary);
  align-self: flex-start;
}

.msg-lead {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule-color);
  color: var(--text-secondary);
  align-self: flex-end;
}

/* Finance dashboard */
.finance-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.finance-card {
  padding: 1rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.02);
}

.finance-card-label {
  font-size: 0.6875rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}

.finance-card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.finance-card-value.positive {
  color: var(--green);
}

.cashflow-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  padding: 1rem;
  height: 6rem;
}

.cashflow-bar {
  flex: 1;
  border-radius: 2px;
  min-height: 4px;
}

.cashflow-bar.income {
  background: rgba(43, 166, 255, 0.4);
}

.cashflow-bar.expense {
  background: rgba(255, 255, 255, 0.08);
}

/* Security feed */
.security-feed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.security-event {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
}

.security-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-icon.success { color: var(--green); background: rgba(16, 185, 129, 0.1); }
.security-icon.warning { color: var(--yellow); background: rgba(234, 179, 8, 0.1); }
.security-icon.error { color: var(--red); background: rgba(239, 68, 68, 0.1); }

.security-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  flex: 1;
}

.security-time {
  font-size: 0.6875rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

/* Forge terminal */
.forge-terminal {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.8;
}

.forge-line {
  display: flex;
  gap: 0.5rem;
}

.forge-prompt { color: var(--cyan); }
.forge-command { color: var(--text-primary); }
.forge-output { color: var(--text-muted); }
.forge-success { color: var(--green); }

/* Kanban */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .kanban-board {
    grid-template-columns: 1fr;
  }
}

.kanban-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kanban-header {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule-color);
  margin-bottom: 0.25rem;
}

.kanban-card {
  padding: 0.75rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
}

.kanban-card-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.kanban-card-meta {
  font-size: 0.6875rem;
  color: var(--text-dim);
}

/* Support inbox */
.support-inbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.support-ticket {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
}

.ticket-priority {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.ticket-priority.high { background: var(--red); }
.ticket-priority.medium { background: var(--yellow); }
.ticket-priority.low { background: var(--text-dim); }

.ticket-info {
  flex: 1;
  min-width: 0;
}

.ticket-subject {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket-meta {
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.ticket-status {
  font-size: 0.625rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.ticket-status.open { background: rgba(43, 166, 255, 0.1); color: var(--neon-blue-light); }
.ticket-status.resolved { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.ticket-status.pending { background: rgba(234, 179, 8, 0.1); color: var(--yellow); }

.csat-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
}

.csat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

/* Lead stream */
.lead-stream {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lead-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
}

.lead-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.lead-info {
  flex: 1;
  min-width: 0;
}

.lead-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
}

.lead-company {
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.lead-source {
  font-size: 0.5625rem;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.lead-source.linkedin { background: rgba(43, 166, 255, 0.1); color: var(--neon-blue-light); }
.lead-source.website { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.lead-source.referral { background: rgba(168, 85, 247, 0.1); color: var(--purple); }

/* BPMN diagram */
.bpmn-canvas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.bpmn-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bpmn-shape {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--rule-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.bpmn-shape.start { border-color: rgba(16, 185, 129, 0.3); color: var(--green); }
.bpmn-shape.end { border-color: rgba(16, 185, 129, 0.3); color: var(--green); }
.bpmn-shape.gateway {
  border-radius: 50%;
  transform: rotate(45deg);
  border-color: rgba(234, 179, 8, 0.3);
  color: var(--yellow);
}

.bpmn-shape.gateway svg {
  transform: rotate(-45deg);
}

.bpmn-label {
  font-size: 0.625rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bpmn-arrow {
  color: var(--text-dim);
  flex-shrink: 0;
}

/* Dashboard (How it works) */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dashboard-stat {
  padding: 1rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
  text-align: center;
}

.dashboard-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dashboard-stat-label {
  font-size: 0.6875rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  height: 4rem;
  padding: 0.75rem;
  border: 1px solid var(--rule-color);
  border-radius: 0.375rem;
}

.chart-bar {
  flex: 1;
  background: rgba(43, 166, 255, 0.3);
  border-radius: 2px;
  min-height: 4px;
  transition: background 0.3s ease;
}

.chart-bar:hover {
  background: rgba(43, 166, 255, 0.5);
}

/* ============================================
   18. HOW IT WORKS PAGE
   ============================================ */
.progress-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 2rem 2rem;
}

.progress-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.progress-dot.active {
  background: var(--cyan);
}

.how-step {
  border-top: 1px solid var(--rule-color);
}

.how-step-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-padding) 2rem;
}

.how-step-content.reverse {
  direction: rtl;
}

.how-step-content.reverse > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .how-step-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .how-step-content.reverse {
    direction: ltr;
  }
}

.how-step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.how-step-number::before {
  content: '0';
}

.how-step-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.how-step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   19. ANIMATIONS
   ============================================ */

/* Fade up on load */
.fluyenta-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

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

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

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.25s; }
.reveal-delay-6 { transition-delay: 0.3s; }

/* ============================================
   20. TWO-COLUMN LAYOUT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .two-col.reverse {
    direction: ltr;
  }
}

/* ============================================
   21. FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--rule-color) !important;
}

/* ============================================
   22. RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .fluyenta-hero {
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
  }

  .fluyenta-heading {
    max-width: 100%;
  }

  .fluyenta-agents-grid {
    grid-template-columns: 1fr;
  }

  .fluyenta-platform-grid {
    grid-template-columns: 1fr;
  }

  .fluyenta-pipeline {
    flex-direction: column;
    gap: 1rem;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
  }

  .fluyenta-powered-strip {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .agent-stats {
    gap: 1.5rem;
  }
}

/* ============================================
   22b. RESPONSIVE — INLINE GRID OVERRIDES
   Pages use inline grid styles; these media
   queries collapse them on smaller screens.
   ============================================ */

/* 4-column timeline → 2 cols on tablet, 1 col on phone */
@media (max-width: 900px) {
  .fluyenta-section [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .fluyenta-section [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}

/* 3-column value-prop grids → 2 cols on tablet, 1 col on phone */
@media (max-width: 900px) {
  .fluyenta-section [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .fluyenta-section [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

/* 2-column model cards & use cases → 1 col on phone */
@media (max-width: 640px) {
  .fluyenta-section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Waitlist page hero metrics → wrap nicely */
@media (max-width: 640px) {
  .fluyenta-hero [style*="gap: 3.25rem"] {
    gap: 1.5rem !important;
  }
}

/* Waitlist countdown → smaller on mobile */
@media (max-width: 480px) {
  .fluyenta-hero [style*="gap: 6px"] {
    padding: 1rem 1.25rem !important;
  }
  .fluyenta-hero [style*="gap: 6px"] [style*="font-size: 3rem"] {
    font-size: 2.25rem !important;
  }
}

/* ============================================
   23. UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }

/* ════════════════════════════════════════════════════════════════
   24. LANDING V2 — APPLE-INSPIRED + AURORA GLOBAL + GSAP
   ════════════════════════════════════════════════════════════════ */

/* ---------- Global aurora background (fixed, full page) ---------- */
.fl-global-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(43,166,255,0.10), transparent 65%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(168,85,247,0.10), transparent 60%),
    #08090C;
}

.fl-global-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform;
  mix-blend-mode: screen;
}
.fl-global-blob--a {
  width: 42rem; height: 42rem;
  background: radial-gradient(circle, rgba(43,166,255,0.85), transparent 60%);
  top: -10rem; left: -8rem;
}
.fl-global-blob--b {
  width: 38rem; height: 38rem;
  background: radial-gradient(circle, rgba(91,186,255,0.70), transparent 60%);
  top: 30vh; right: -12rem;
}
.fl-global-blob--c {
  width: 48rem; height: 48rem;
  background: radial-gradient(circle, rgba(168,85,247,0.50), transparent 60%);
  top: 60vh; left: 20%;
}
.fl-global-blob--d {
  width: 36rem; height: 36rem;
  background: radial-gradient(circle, rgba(43,166,255,0.55), transparent 65%);
  bottom: -10rem; right: 15%;
}

.fl-global-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 20%, transparent 70%);
  opacity: 0.55;
}

.fl-global-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}

.fl-global-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 50%, rgba(0,0,0,0.45) 100%);
}

/* Body becomes transparent so the fixed aurora shows */
.fluyenta-body { background: transparent !important; }
main { position: relative; z-index: 1; }

/* ---------- Hero (no local bg anymore) ---------- */
.fl-hero-v2 {
  position: relative;
  min-height: auto;
  isolation: isolate;
  overflow: visible;
  padding-top: clamp(7rem, 13vw, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Tighter hero typography */
.fl-hero-v2 .fluyenta-heading {
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 32px rgba(43,166,255,0.18));
}

/* No-gradient line: subtle brand glow on white */
.fl-hero-title .fl-line:not(.fluyenta-gradient-text) {
  color: #fff;
  text-shadow:
    0 0 1px rgba(255,255,255,0.4),
    0 2px 40px rgba(43,166,255,0.25);
}

/* Make gradient line stand out — slight glow halo */
.fl-hero-title .fl-line.fluyenta-gradient-text {
  background: linear-gradient(135deg, #7ec8ff 0%, #2BA6FF 50%, #5BBAFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 28px rgba(43,166,255,0.40));
  display: inline-block;
  will-change: clip-path, transform;
}

/* Per-char gradient inheritance fix (kept for safety even though we skip splitting gradient) */
.fluyenta-gradient-text .fl-char {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Compact spacing between hero blocks */
.fl-hero-tagline {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}
.fl-hero-v2 .fluyenta-subtitle {
  margin-bottom: 2rem;
  max-width: 48ch;
}

.fl-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.fl-hero-title .fl-line {
  display: inline-block;
  perspective: 700px;
}

.fl-char {
  display: inline-block;
  will-change: transform, opacity;
  transform-origin: 50% 100%;
}

.fl-word {
  display: inline-block;
  white-space: nowrap;
}

.fl-hero-tagline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-top: -0.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 18px rgba(43,166,255,0.18));
}

.fl-hero-subtitle {
  margin-bottom: 2.5rem;
}

.fl-btn-shine {
  position: relative;
  overflow: hidden;
}
.fl-btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-150%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.fl-btn-shine:hover::after { transform: translateX(150%); }

.fl-btn-ghost {
  backdrop-filter: blur(8px);
}

.fl-btn-xl {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

.fl-scroll-indicator {
  margin-top: 4rem;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35), transparent);
  position: relative;
  overflow: hidden;
}
.fl-scroll-indicator::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--brand-light), transparent);
  animation: fl-scroll-drop 2.4s ease-in-out infinite;
}
@keyframes fl-scroll-drop {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Marquee ---------- */
.fl-marquee-section {
  border-top: 1px solid var(--rule-color);
  border-bottom: 1px solid var(--rule-color);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
  overflow: hidden;
}
.fl-marquee {
  display: flex;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.fl-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  will-change: transform;
}
.fl-marquee-item {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.fl-marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand);
}

/* ---------- Display titles ---------- */
.fl-display {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

/* ---------- Model cards ---------- */
.fl-model-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 880px) {
  .fl-model-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}

.fl-model-card {
  position: relative;
  padding: 1px;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(43,166,255,0.85), rgba(91,186,255,0.25) 40%, rgba(255,255,255,0.04));
  will-change: transform;
  transform-style: preserve-3d;
  box-shadow:
    0 28px 80px -32px rgba(43,166,255,0.55),
    0 0 0 1px rgba(255,255,255,0.04);
}

.fl-model-card--accent {
  background: linear-gradient(135deg, rgba(168,85,247,0.9), rgba(43,166,255,0.45) 50%, rgba(255,255,255,0.06));
  box-shadow:
    0 28px 80px -32px rgba(168,85,247,0.55),
    0 0 0 1px rgba(255,255,255,0.04);
}

.fl-model-card-inner {
  position: relative;
  height: 100%;
  border-radius: 1.35rem;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(20, 22, 32, 0.96), rgba(11, 12, 18, 0.96));
  backdrop-filter: blur(24px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fl-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background 0.2s ease;
  border-radius: inherit;
}

.fl-model-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 1.5rem;
}

.fl-model-percent {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fl-percent-value {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--brand-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
}

.fl-percent-of {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.fl-model-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.fl-model-chart {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.fl-bar {
  position: relative;
  height: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fl-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-light), var(--brand));
  border-radius: 6px;
}
.fl-bar em {
  position: absolute;
  right: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-style: normal;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.fl-bar--alt span {
  background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.25));
}

.fl-revenue-svg { width: 100%; height: auto; display: block; }

/* ---------- Manifesto quote ---------- */
.fl-quote {
  margin-top: 4rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.02em;
  padding: 2rem;
  position: relative;
}
.fl-quote::before, .fl-quote::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  left: 50%;
  transform: translateX(-50%);
}
.fl-quote::before { top: 0; }
.fl-quote::after  { bottom: 0; }
.fl-quote-tag {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-light);
  font-weight: 700;
}

/* ---------- Agents v2 ---------- */
.fl-agents-section { padding-top: 6rem; }

.fl-agents-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .fl-agents-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .fl-agents-grid { grid-template-columns: repeat(3, 1fr); }
}

.fl-agent-card {
  --agent-color: var(--brand);
  position: relative;
  padding: 1px;
  border-radius: 1.1rem;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--agent-color) 70%, transparent),
    color-mix(in srgb, var(--agent-color) 15%, transparent) 35%,
    rgba(255,255,255,0.06) 70%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  will-change: transform;
  transform-style: preserve-3d;
  height: 100%;
  display: flex;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 18px 48px -22px color-mix(in srgb, var(--agent-color) 50%, transparent),
    0 0 0 1px rgba(255,255,255,0.02);
}

.fl-agent-card:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 28px 70px -18px color-mix(in srgb, var(--agent-color) 75%, transparent),
    0 0 0 1px color-mix(in srgb, var(--agent-color) 40%, transparent);
}

.fl-agent-card-inner {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.05rem;
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--agent-color) 6%, rgba(14,16,22,0.96)),
      rgba(11, 12, 18, 0.96) 60%);
  backdrop-filter: blur(20px);
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fl-agent-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.fl-agent-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--agent-color) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--agent-color) 35%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--agent-color);
  flex-shrink: 0;
  box-shadow: 0 0 22px color-mix(in srgb, var(--agent-color) 25%, transparent);
}
.fl-agent-icon svg { width: 1.25rem; height: 1.25rem; }

.fl-agent-name {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
}
.fl-agent-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.125rem;
}

.fl-agent-index {
  position: absolute;
  top: -0.25rem;
  right: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.18);
  font-weight: 600;
}

.fl-agent-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.fl-agent-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.fl-agent-stat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  padding: 0.3rem 0.65rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.25rem;
}

.fl-agent-pulse {
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--agent-color) 22%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.fl-agent-card:hover .fl-agent-pulse { opacity: 1; }

.fl-agents-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- Product Showcase ---------- */
.fl-showcase {
  padding-top: 6rem;
}

.fl-showcase-stage {
  position: relative;
  max-width: 70rem;
  margin: 0 auto;
  margin-top: 4rem;
  perspective: 1800px;
}

.fl-device {
  position: relative;
  border-radius: 1.5rem;
  transform-style: preserve-3d;
  will-change: transform;
}

.fl-device-frame {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  padding: 1px;
  border-radius: 1.25rem;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
}

.fl-device-bar {
  background: rgba(15, 16, 22, 0.95);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fl-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.fl-dot--r { background: #ff5f57; }
.fl-dot--y { background: #febc2e; }
.fl-dot--g { background: #28c840; }

.fl-device-url {
  margin-left: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  padding: 0.25rem 0.85rem;
  border-radius: 0.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}

.fl-device-screen {
  display: grid;
  grid-template-columns: 14rem 1fr;
  background: #0A0B0F;
  min-height: 38rem;
}

@media (max-width: 768px) {
  .fl-device-screen { grid-template-columns: 1fr; }
  .fl-screen-sidebar { display: none; }
}

.fl-screen-sidebar {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.015);
}

.fl-sb-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  box-shadow: 0 8px 22px rgba(43,166,255,0.35);
}

.fl-sb-item {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  cursor: default;
  margin-bottom: 0.125rem;
  transition: color 0.2s, background 0.2s;
}
.fl-sb-item.is-active {
  background: rgba(43,166,255,0.12);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(43,166,255,0.25);
}

.fl-screen-main {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fl-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fl-sh-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.fl-sh-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.fl-sh-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
}
.fl-sh-pill-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: fl-pulse 1.8s ease-in-out infinite;
}

.fl-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) { .fl-metrics-row { grid-template-columns: 1fr; } }

.fl-metric {
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.6rem;
}
.fl-metric-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.fl-metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.fl-metric-trend {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}
.fl-metric-trend--up { color: #4ade80; }

.fl-screen-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 640px) { .fl-screen-grid { grid-template-columns: 1fr; } }

.fl-screen-panel {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.6rem;
  padding: 1rem;
}

.fl-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.fl-panel-tag {
  padding: 0.125rem 0.5rem;
  background: rgba(43,166,255,0.12);
  border: 1px solid rgba(43,166,255,0.25);
  color: var(--brand-light);
  border-radius: 0.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
}
.fl-panel-tag--green {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3);
  color: #4ade80;
}

.fl-chart-svg { width: 100%; height: 8.5rem; display: block; }

.fl-agent-row {
  display: grid;
  grid-template-columns: 12px 90px 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.fl-agent-row:last-child { border-bottom: none; }
.fl-agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.fl-agent-row-name {
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
}
.fl-agent-row-action { color: rgba(255,255,255,0.55); }
.fl-agent-row-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.3);
}

.fl-screen-terminal { padding: 1.25rem; }
.fl-terminal {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  white-space: pre-wrap;
  overflow-x: auto;
}
.fl-term-dim    { color: rgba(255,255,255,0.3); }
.fl-term-mute   { color: rgba(255,255,255,0.45); }
.fl-term-blue   { color: var(--brand-light); }
.fl-term-purple { color: #c084fc; }
.fl-term-orange { color: #fb923c; }
.fl-term-green  { color: #4ade80; }

.fl-device-base {
  height: 14px;
  width: 90%;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent);
  border-radius: 0 0 1.25rem 1.25rem;
}

.fl-device-shadow {
  height: 60px;
  margin: 0 auto;
  width: 70%;
  background: radial-gradient(ellipse 50% 70% at 50% 0%, rgba(43,166,255,0.4), transparent 65%);
  filter: blur(40px);
  margin-top: -20px;
  opacity: 0.6;
}

.fl-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: rgba(15,16,22,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  z-index: 2;
}
.fl-float--tl { top: -2rem; left: -2rem; }
.fl-float--br { bottom: 1rem; right: -2rem; }
@media (max-width: 768px) {
  .fl-float--tl, .fl-float--br { display: none; }
}
.fl-float-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  background: rgba(43,166,255,0.15);
  border: 1px solid rgba(43,166,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
}
.fl-float-icon svg { width: 1rem; height: 1rem; }
.fl-float-eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
}
.fl-float-text {
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 600;
}

@keyframes fl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ---------- How it works · Timeline ---------- */
.fl-howit { padding-top: 6rem; }

.fl-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 78rem;
  margin: 3rem auto 0;
  padding-top: 3rem;
}

@media (max-width: 880px) {
  .fl-timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .fl-timeline { grid-template-columns: 1fr; }
}

.fl-timeline-rail {
  position: absolute;
  top: 3.4rem;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 2px;
  z-index: 0;
  will-change: transform;
  box-shadow: 0 0 18px rgba(43,166,255,0.4);
}

.fl-timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 1.25rem;
  text-align: center;
}

.fl-ts-node {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(43,166,255,0.18), rgba(13,14,20,1));
  border: 1px solid rgba(43,166,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-weight: 800;
  color: #fff;
  font-size: 1.125rem;
  box-shadow:
    0 0 0 6px rgba(13,14,20,1),
    0 0 28px rgba(43,166,255,0.35);
  position: relative;
}
.fl-ts-node::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(43,166,255,0.18);
  animation: fl-ring 2.6s ease-out infinite;
}
@keyframes fl-ring {
  0%   { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.6); }
}

.fl-ts-week {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 0.5rem;
}
.fl-ts-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.fl-ts-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ---------- CTA final ---------- */
.fl-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.fl-cta-aurora {
  position: absolute;
  inset: -4rem;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(43,166,255,0.25), transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 30%, rgba(168,85,247,0.18), transparent 65%),
    radial-gradient(ellipse 30% 40% at 80% 70%, rgba(43,166,255,0.18), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .fl-global-blob, .fl-marquee-track, .fl-scroll-indicator::after,
  .fl-ts-node::before, .fl-sh-pill-dot {
    animation: none !important;
  }
}

/* ════════════════════════════════════════════════
   25. MOBILE-FIRST OVERRIDES & POLISH
   ════════════════════════════════════════════════ */

/* Section paddings shrink on small screens */
.fluyenta-section {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

@media (min-width: 640px) {
  .fluyenta-section { padding-left: 2rem; padding-right: 2rem; }
}

/* Section header tightens on mobile */
.fluyenta-section-header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

/* Hero spacing/typo on mobile */
.fl-hero-v2 .fluyenta-heading {
  font-size: clamp(2.5rem, 9vw, 5.5rem);
}
.fl-hero-tagline { font-size: clamp(1.25rem, 5vw, 2.25rem); }
.fluyenta-cta-group { gap: 0.75rem; }
@media (max-width: 480px) {
  .fluyenta-cta-group { flex-direction: column; width: 100%; }
  .fluyenta-cta-group > * { width: 100%; justify-content: center; }
}

/* Buttons grow target on mobile */
.fluyenta-btn-glow, .fluyenta-btn-outline {
  padding: 0.9rem 1.5rem;
}
@media (min-width: 640px) {
  .fluyenta-btn-glow, .fluyenta-btn-outline { padding: 0.875rem 2rem; }
}

/* Showcase device collapses cleanly on mobile */
@media (max-width: 768px) {
  .fl-device-bar { padding: 0.5rem 0.75rem; gap: 0.35rem; }
  .fl-device-url { display: none; }
  .fl-device-screen { min-height: auto; }
  .fl-screen-main { padding: 1rem; gap: 1rem; }
  .fl-screen-grid { gap: 0.75rem; }
  .fl-metrics-row { grid-template-columns: 1fr 1fr; }
  .fl-sh-title { font-size: 1.125rem; }
  .fl-showcase-stage { perspective: none; }
}

/* Timeline cleans up on mobile */
@media (max-width: 880px) {
  .fl-timeline { gap: 2rem; padding-top: 1.5rem; }
  .fl-timeline-rail { display: none; }
}

/* Marquee speed on mobile feels better when items are denser */
@media (max-width: 640px) {
  .fl-marquee-item { font-size: 0.75rem; }
  .fl-marquee { padding: 1rem 0; }
}

/* Quote shrinks gracefully */
.fl-quote { padding: clamp(1.25rem, 4vw, 2rem); }

/* Cards: ensure content stacks cleanly under 360px (galaxy fold etc.) */
@media (max-width: 380px) {
  .fl-agent-card-inner { padding: 1.25rem; }
  .fl-model-card-inner { padding: 1.5rem; }
  .fl-agent-head { gap: 0.65rem; }
  .fl-agent-icon { width: 2.25rem; height: 2.25rem; }
  .fl-agent-icon svg { width: 1rem; height: 1rem; }
}

/* Stronger text inside cards */
.fl-agent-desc { color: rgba(255,255,255,0.78); }
.fl-model-desc { color: rgba(255,255,255,0.80); font-size: 1rem; }
.fl-agent-stat {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

/* Stronger pulse on agent cards */
.fl-agent-pulse {
  background: radial-gradient(circle,
    color-mix(in srgb, var(--agent-color) 35%, transparent),
    transparent 60%);
}
.fl-agent-card:hover .fl-agent-icon {
  box-shadow: 0 0 32px color-mix(in srgb, var(--agent-color) 60%, transparent);
}

/* Sticky cursor glow for cards */
.fl-card-glow {
  z-index: 0;
}
.fl-model-card-inner > *,
.fl-agent-card-inner > * {
  position: relative;
  z-index: 1;
}

/* Floating annotations adjust on tablet */
@media (max-width: 1100px) {
  .fl-float--tl { top: -1rem; left: 0.5rem; }
  .fl-float--br { bottom: -1rem; right: 0.5rem; }
}

/* Aurora reduces motion + opacity on small screens for performance */
@media (max-width: 640px) {
  .fl-global-blob { filter: blur(80px); opacity: 0.5; }
}

/* ════════════════════════════════════════════════
   26. SUBPAGE COMPONENTS — shared with sub views
   ════════════════════════════════════════════════ */

/* Subpage hero — shorter than home hero */
.fl-hero-sub {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: clamp(7rem, 14vw, 11rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 6vw, 5rem);
  max-width: var(--content-max);
  margin: 0 auto;
}

.fl-hero-sub .fluyenta-heading,
.fl-hero-sub h1 {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 auto 1.5rem;
  max-width: 22ch;
}

.fl-hero-sub .fluyenta-subtitle,
.fl-hero-sub p.fl-hero-sub-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Generic responsive grid utilities (mobile-first) */
.fl-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 640px) {
  .fl-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .fl-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .fl-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .fl-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .fl-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Mini card — used in subpages for grids of 6+ items */
.fl-mini-card {
  position: relative;
  padding: 1px;
  border-radius: 0.95rem;
  background: linear-gradient(135deg,
    rgba(43,166,255,0.55),
    rgba(43,166,255,0.10) 40%,
    rgba(255,255,255,0.05) 80%);
  box-shadow:
    0 18px 48px -28px rgba(43,166,255,0.45),
    0 0 0 1px rgba(255,255,255,0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  transform-style: preserve-3d;
  will-change: transform;
}
.fl-mini-card:hover {
  box-shadow:
    0 26px 60px -22px rgba(43,166,255,0.55),
    0 0 0 1px rgba(43,166,255,0.35);
}

.fl-mini-card-inner {
  position: relative;
  width: 100%;
  border-radius: 0.9rem;
  padding: clamp(1.4rem, 2.6vw, 1.85rem);
  background: linear-gradient(180deg, rgba(20,22,32,0.96), rgba(11,12,18,0.96));
  backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.fl-mini-card-inner > * { position: relative; z-index: 2; }

.fl-mini-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 1rem;
}
.fl-mini-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}
.fl-mini-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.fl-mini-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  flex: 1;
}
.fl-mini-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-light);
  letter-spacing: 0.02em;
}

/* List card — used in subpages for numbered stacked rows */
.fl-list-card {
  max-width: 60rem;
  margin: 2.5rem auto 0;
  border-radius: 1.15rem;
  padding: 1px;
  background: linear-gradient(180deg, rgba(43,166,255,0.30), rgba(255,255,255,0.04));
  box-shadow: 0 30px 80px -40px rgba(43,166,255,0.45), 0 0 0 1px rgba(255,255,255,0.03);
}
.fl-list-card-inner {
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(18,19,27,0.97), rgba(10,11,17,0.97));
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.fl-list-row {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1.1rem;
  padding: 1.5rem clamp(1.25rem, 3vw, 1.85rem);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background 0.25s ease;
}
.fl-list-row:last-child { border-bottom: none; }
.fl-list-row:hover {
  background: linear-gradient(90deg, rgba(43,166,255,0.06), transparent 70%);
}
.fl-list-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fl-list-row:hover::before { opacity: 1; }

.fl-list-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-light);
  padding-top: 0.2rem;
}
.fl-list-row-content > .fl-list-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.fl-list-row-content > .fl-list-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* Powered-by strip refresh */
.fl-powered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
  max-width: 64rem;
  margin: 3rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fl-powered-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.fl-powered-item svg { color: var(--brand-light); width: 1rem; height: 1rem; }

/* Waitlist form fresh styles */
.fl-form-shell {
  position: relative;
  padding: 1px;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, rgba(43,166,255,0.55), rgba(168,85,247,0.35) 50%, rgba(255,255,255,0.05));
  box-shadow: 0 40px 100px -40px rgba(43,166,255,0.45);
}
.fl-form-shell-inner {
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(18,19,27,0.97), rgba(10,11,17,0.97));
  backdrop-filter: blur(24px);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.fl-field { margin-bottom: 1.25rem; }
.fl-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 0.5rem;
}
.fl-label em {
  color: var(--brand-light);
  font-style: normal;
  margin-left: 3px;
}
.fl-input,
.fl-textarea,
.fl-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  padding: 0.85rem 1rem;
  outline: none;
  border-radius: 0.55rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.fl-input:focus,
.fl-textarea:focus,
.fl-select:focus {
  border-color: var(--brand);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(43,166,255,0.12);
}
.fl-input::placeholder,
.fl-textarea::placeholder {
  color: rgba(255,255,255,0.30);
}
.fl-textarea {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.6;
}
.fl-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%235bbaff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.25rem;
}
.fl-select option { background: #0E1018; color: #fff; }
.fl-field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .fl-field-row { grid-template-columns: 1fr 1fr; }
}
.fl-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  border-radius: 0.55rem;
}
.fl-radio:has(input:checked) {
  border-color: var(--brand);
  background: rgba(43,166,255,0.10);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(43,166,255,0.10);
}
.fl-radio input { accent-color: var(--brand); cursor: pointer; }
.fl-radio-group { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.fl-field-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.25rem 0 1.5rem;
}
.fl-field-divider > .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.fl-field-divider > .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.fl-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1.1rem;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 0.65rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 30px -10px rgba(43,166,255,0.55);
  position: relative;
  overflow: hidden;
}
.fl-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -10px rgba(43,166,255,0.7);
}
.fl-submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-150%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.fl-submit-btn:hover::after { transform: translateX(150%); }

/* Countdown / stat row */
.fl-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 1.5rem;
  margin: 1.5rem auto 0.75rem;
  background: rgba(43,166,255,0.06);
  border: 1px solid rgba(43,166,255,0.25);
  border-radius: 0.85rem;
  backdrop-filter: blur(12px);
}
.fl-cd-unit { text-align: center; min-width: 3.5rem; }
.fl-cd-num {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 28px rgba(43,166,255,0.4);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.02em;
}
.fl-cd-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
  display: block;
}
.fl-cd-sep {
  font-size: 1.75rem;
  color: rgba(255,255,255,0.2);
  align-self: flex-start;
  margin-top: 0.3rem;
}

.fl-stat-row {
  display: flex;
  gap: clamp(1.25rem, 4vw, 3rem);
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  justify-content: center;
}
.fl-stat {
  text-align: center;
}
.fl-stat-value {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
  background: linear-gradient(135deg, #fff, var(--brand-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fl-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  display: block;
}

/* Ticker (waitlist) */
.fl-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  margin-top: 5.5rem;
}
.fl-ticker-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  padding: 0.8rem 0;
}
.fl-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.fl-ticker-item::before {
  content: "\25C6";
  color: var(--brand-light);
  font-size: 0.45rem;
}

/* Spots filling bar */
.fl-spots-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(43,166,255,0.05);
  border: 1px solid rgba(43,166,255,0.2);
  padding: 0.85rem 1.25rem;
  border-radius: 0.7rem;
  margin: 2rem auto;
  max-width: 44rem;
}
.fl-spots-track {
  flex: 1;
  max-width: 11rem;
  height: 4px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  border-radius: 2px;
}
.fl-spots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  box-shadow: 0 0 10px rgba(43,166,255,0.6);
}

/* Subpage hero badge with separator lines */
.fl-eyebrow-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-light);
}
.fl-eyebrow-bar::before,
.fl-eyebrow-bar::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brand);
  opacity: 0.4;
  display: block;
}

/* Italic sub-lead under headings */
.fl-italic-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin: 0 auto 1.5rem;
  max-width: 42ch;
}

/* Page transition */
main {
  view-transition-name: fluyenta-main;
}
::view-transition-old(fluyenta-main),
::view-transition-new(fluyenta-main) {
  animation-duration: 0.45s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
::view-transition-old(fluyenta-main) {
  animation-name: fl-fade-out;
}
::view-transition-new(fluyenta-main) {
  animation-name: fl-fade-in;
}
@keyframes fl-fade-out {
  to { opacity: 0; transform: translateY(-8px); }
}
@keyframes fl-fade-in {
  from { opacity: 0; transform: translateY(12px); }
}

/* Turbo fallback fade (without View Transitions API) */
html.fl-turbo-loading main { opacity: 0; transform: translateY(8px); transition: opacity 0.25s, transform 0.25s; }
html.fl-turbo-ready main { opacity: 1; transform: translateY(0); transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
