:root {
    --orange: #F36739;
    --green: #2CA84A;
    --bg: #0a0a0a;
    --grey: #999999;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
}

.hero-monread {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    
    /* THE FIX: Remove 'fixed'. This glues the image to the Hero only. */
    background: 
        radial-gradient(circle at 15% 40%, rgba(243, 103, 57, 0.15), transparent 45%), 
        linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 1) 100%),
        url('assets/monread_ai_hero_mobile.webp') no-repeat center center;
    background-size: cover;
    background-attachment: scroll !important; 
}

.status-monread {
    background: rgba(214, 197, 197, 0.03);
    border: 1px solid rgba(153, 153, 153, 0.2);
    padding: 10px 22px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.brand-dot {
    height: 12px;
    width: 12px;
    background: #333;
    border-radius: 50%;
    animation: sync-pulse 10s ease-in-out infinite;
}

.status-text {
    font-size: 1rem;
    font-weight: 800;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: sync-flash 10s ease-in-out infinite;
}

@keyframes sync-pulse {
    0%, 15%, 85%, 100% { transform: scale(1); background: #333; box-shadow: none; }
    25%, 75% { transform: scale(1.3); background: var(--orange); box-shadow: 0 0 15px var(--orange); }
}

@keyframes sync-flash {
    0%, 15%, 85%, 100% { color: #555; opacity: 0.5; }
    25%, 75% { color: #fff; opacity: 1; text-shadow: 0 0 8px rgba(255,255,255,0.5); }
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
}

.orange-text { color: var(--orange); }

h2 {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--grey);
    font-weight: 400;
    max-width: 700px;
    margin: 25px 0 40px 0;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-monread {
    min-width: 180px;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--green); transform: translateY(-3px); }

.btn-outline { border: 1px solid rgba(153, 153, 153, 0.3); color: var(--grey); }
.btn-outline:hover { border-color: white; color: white; background: rgba(255,255,255,0.05); }

.bridge {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    margin-top: 50px;
    opacity: 0.5;
}

 /* 1. CONTAINER & GLOBAL TEXT */

 .bento-container {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    padding: 40px 20px; /* Give it some breathing room */
    background: #0A0A0A;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* 2. THE SIZING RULES - This makes the boxes "Bento" */
  
  /* The Big Box on the Left */
  .bento-item.large { 
    grid-column: 1; 
    grid-row: span 2; 
  }

  /* The Rectangle at the Bottom */
  .bento-item.wide { 
    grid-column: span 2; 
  }

  /* 3. THE ORANGE TEXT FIX - Ensure your HTML uses this class */
  .monread-orange-text {
    color: var(--orange) !important;
    display: inline !important;
  }

  .bento-container h3 {
    color: #333333 !important; /* Dark charcoal for headers */
    font-family: 'Inter', sans-serif;
  }

  .bento-container p, .bento-container span {
    color: #3abe19 !important; /* Softer grey for descriptions */
    font-family: 'Inter', sans-serif;
  }

  /* 2. LIGHT MODE BOXES (The "Frosted Glass" Look) */
  .bento-item {
    background: #d3cfcf; /* Pure white box */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Very faint border */
    border-radius: 30px; 
    padding: 25px;
    display: flex;
    flex-direction: column;
    /* Subtle shadow to make them "pop" off the off-white background */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); 
    transition: all 0.3s ease;
  }

  .bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #F36739; /* Highlight border with your logo color */
  }
   /* MOBILE RESET */
  @media (max-width: 850px) {
    .bento-container { grid-template-columns: 1fr; }
    .large, .wide { grid-column: span 1 !important; grid-row: span 1 !important; }
  }
  /* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .bento-container {
        grid-template-columns: 1fr; /* Stack everything in 1 column */
    }
    .bento-item.large, .bento-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}
