/*------------------------------------------------------------------
Project:  ComingSoon
-------------------------------------------------------------------*/



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/


@font-face {
	font-family: "Poppins-Regular";
	src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: "Poppins-Bold";
  src: url('../fonts/Poppins-Bold.ttf'); 
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --bg: #26226B;
    --bg-secondary: #4642C2;
    --text: #ffffff;
    --muted: #b7c2d0;
    --accent: #5651ee;
    --accent-soft: #5651ee;
    --border: #ffffff14;
    --max-width: 1200px;
}

body {
      	
	font-family: "Poppins-Regular";
    /*background: url(../images/bg_image.png) no-repeat 50% 50%; */
    background:
    /*linear-gradient(rgba(7,17,31,0.85), rgba(7,17,31,0.95)), */
    url("../images/bg_image.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	
	color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    overflow-x: hidden;
}

.wrapper {
	  width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    width: fit-content;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.logo {
    display: block;

    width: 100%;
    max-width: 340px;
    height: auto;

    margin-bottom: 48px;

    object-fit: contain;
}

.content h1 {
  	font-size: clamp(2.4rem, 5vw, 4.8rem);
  	line-height: 1.1;
  	letter-spacing: -0.03em;
  	margin-bottom: 28px;

  	font-weight: 600;

  	max-width: 100%;
  	text-wrap: balance;
}

.content h2 {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.7;

    color: var(--muted);

    font-weight: 400;
    letter-spacing: -0.01em;

    margin-bottom: 36px;

    max-width: 900px;
}

.divider {
    width: 90px;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    margin-bottom: 36px;
}

.body-copy {
    max-width: 760px;
}

.body-copy p {
		color: var(--muted);
		font-size: 1.02rem;
		margin-bottom: 22px;

		font-weight: 300;
}

.highlight {
		color: var(--text);
		font-weight: 500;
}

.cta-box {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.03)
    );
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 36px;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(77,163,255,0.12),
        transparent 60%
    );
    pointer-events: none;
}

.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    color: var(--muted);
    margin-bottom: 28px;
    position: relative;
}

.email-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 14px;
    background: var(--accent);
    color: white;
    font-weight: 300;
    transition: 0.25s ease;
    position: relative;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(77,163,255,0.35);
}

footer {
    margin-top: 20px;

    color: var(--text);

    font-size: 1.02rem;
    line-height: 1.9;

    font-weight: 300;
    font-style: italic;

    letter-spacing: 0;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
      }

    .cta-box {
        width: 100%;
      }
}

@media (max-width: 640px) {
    .wrapper {
      padding: 28px 20px;
    }

	  .logo {
    	max-width: 260px;
    	margin-bottom: 32px;
  	}
    
    .content h1 {
      line-height: 1.1;
    }

    .body-copy p {
      font-size: 1rem;
    }

    .cta-box {
      padding: 28px;
      border-radius: 22px;
    }

    .email-link {
      width: 100%;
    }

    footer {
      padding-top: 40px;
    }
}