/* =========================
   Metriqa – Apple-style Dark Theme
   ========================= */

   * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
                 "SF Pro Display", Inter, Helvetica, Arial, sans-serif;
    background: #0a0f14;
    color: #ffffff;
    line-height: 1.6;
  }
  
  /* -------------------------
     Header
  ------------------------- */
  header {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
  }
  
  nav a:hover {
    color: #ffffff;
  }
  
  /* -------------------------
     Sections
  ------------------------- */
  section {
    padding: 4rem 4rem;
  }
  
  .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
  }
  
  /* -------------------------
     Hero
  ------------------------- */
  .hero {
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
  }
  
  .hero p {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
  }
  
  /* -------------------------
     Cards / Mock
  ------------------------- */
  /* -------------------------
   App Preview Mock (FIXED)
------------------------- */

.mock {
  background: rgba(255,255,255,0.05);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mock-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}

/* This is the KEY FIX */
.mock-image {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 320px;

  border-radius: 18px;

  background: radial-gradient(
    circle at center,
    rgba(42,184,166,0.22),
    rgba(42,184,166,0.08),
    rgba(0,0,0,0)
  );

  overflow: hidden;
}

/* Image now behaves like a hero mock */
.mock-image img {
  height: 120%;
  width: auto;
  max-width: none;

  object-fit: contain;

  transform: translateY(10px) scale(1.15);

  filter:
    drop-shadow(0 35px 80px rgba(0,0,0,0.7))
    drop-shadow(0 0 40px rgba(42,184,166,0.18));
}
  
  /* -------------------------
     Features / Legal Cards
  ------------------------- */
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .feature {
    background: rgba(255,255,255,0.06);
    padding: 2rem;
    border-radius: 22px;
  }
  
  .feature h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
  }
  
  .feature p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .feature a {
    color: #2ab8a6;
    text-decoration: none;
    font-weight: 600;
  }
  
  .feature a:hover {
    text-decoration: underline;
  }
  
  /* -------------------------
     Text Content Pages
  ------------------------- */
  section h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  section p {
    max-width: 900px;
    color: rgba(255,255,255,0.7);
  }
  
  /* -------------------------
     Footer
  ------------------------- */
  footer {
    padding: 2.5rem 4rem;
    background: #080c10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
  }
  
  /* -------------------------
     Responsive
  ------------------------- */
  @media (max-width: 900px) {
    header,
    section,
    footer,
    .hero {
      padding: 2.5rem 2rem;
    }
  
    .hero {
      grid-template-columns: 1fr;
    }
  
    .features {
      grid-template-columns: 1fr;
    }
  
    nav a {
      margin-left: 1.2rem;
    }
  }
