/* --- Basic Reset --- */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    @font-face {
    font-family: 'poppins-bold';
    src: url('../fonts/poppins.bold.ttf');
    }

    @font-face {
    font-family: 'poppins-medium';
    src: url('../fonts/poppins.medium.ttf');
    }

    @font-face {
    font-family: 'poppins-regular';
    src: url('../fonts/poppins.regular.ttf');
    }

    body {
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #050509;
      color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: stretch;
    }

    .page {
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1.5rem 4rem;
    }

    /* --- Ribbon "coming soon" --- */
    .ribbon {
      font-family: "poppins-regular";
      width: 100%;
      position: absolute;
      overflow: visible;
      top: 0rem;
      left: -10rem;
      padding: 0.5rem 5rem;
      background: #f089ab;
      color: #fff;
      font-size: 1.6rem;
      text-transform: lowercase;
      letter-spacing: 0.08em;
      transform: rotate(-15deg);
      white-space: nowrap;
      text-align: left;
    }

    /* --- Logo --- */
    .logo {
      display: block;
      margin: 4rem auto 2.5rem;
      max-width: 260px;
      width: 60%;
      height: auto;
      margin-bottom: 100px;
      margin-top: 100px;
    }

    /* --- Main text --- */
    h1 {
    font-family: "poppins-bold";
      text-align: center;
      font-weight: 800;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.3;
      margin-bottom: 2rem;
    }

    .intro-text {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      font-size: 0.95rem;
      line-height: 1.2;
      color: #e2e2e2;
    }

    /* --- Footer / bottom area --- */
    .bottom-wrapper {
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      padding-top: 1.5rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-family: "poppins-bold";
      display: inline-block;
      padding: 0.55rem 1.8rem;
      border-radius: 999px;
      background: #f1f1f1;
      color: #111;
      font-size: 0.9rem;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease,
        background 0.15s ease;
    }

    .footer-links a:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
      background: #ffffff;
    }

    .contact-card {
      font-family: "poppins-bold";
      margin-top: 40px;
      margin-bottom: 200px;
      margin-left: auto;
      margin-right: auto;
      padding: 0.55rem 1.8rem;
      border-radius: 999px;
      background: #f089ab;
      font-size: 0.9rem;
      line-height: 1.5;
      color: #ffffff;
      min-width: 180px;
      text-align: center;
      width: 0px;
    }

    .contact-card a {
      color: inherit;
      text-decoration: none;
    }

    /* --- Responsive tweaks --- */
    @media (max-width: 700px) {
      .page {
        padding: 2.5rem 1.25rem 3rem;
      }

      .bottom-wrapper {
        align-items: flex-start;
      }

      
      .ribbon {
       left: -5rem;
       top: 1rem;
       font-size: 0.70rem;
      }
       
    }


 