:root {
    --bg-color: #000;
    --text-color: rgba(255, 255, 255, 0.9);
    --text-light: rgba(255, 255, 255, 0.6);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.app-container {
    position: relative;
    overflow: hidden;
    padding: 48px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: start;
}

.coming-soon {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px solid white;
    color: white;
    z-index: 1;
}

/* glow */
.coming-soon::before {
    content: "";
    position: absolute;
    inset: -10px;
    background: white;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.9;
    z-index: -2;
}

/* solid pill background that covers the inner glow bleed */
.coming-soon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: black;
    border-radius: 999px;
    z-index: -1;
}

.title {
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.2;
    text-align: start;
}

.title-bold {
    font-weight: 700;
    text-align: start;
}

.title-regular {
    font-weight: 400;
    text-align: start;
}

.subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    text-align: start;
}

.description-bold {
    font-weight: 600;
    font-size: 1.125rem;
    text-align: start;
}

.description-regular {
    color: var(--text-light);
    font-weight: 400;
    text-align: start;
}

.signup-card{
    background:#000;
    color:#fff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    max-width: 980px;
    padding-top: 32px;
}

.signup-title{
    margin:0 0 18px;
    font-size:14px;
    line-height:1.4;
    letter-spacing:.8px;
    font-weight:800;
    text-transform:uppercase;
    text-align:start;
}

.signup-row{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:18px;
}

.field{
    position:relative;
    flex:1;
    min-width: 260px;
}

.field-label{
    display:block;
    font-size:14px;
    color: rgba(255,255,255,.65);
    margin-bottom:10px;
    font-weight:600;
}

.field-input{
    width:100%;
    background:transparent;
    border:0;
    outline:0;
    color:#fff;
    font-size:16px;
    padding: 0 0 12px 0;
}

.field-underline{
    position:absolute;
    left:0;
    right:0;
    bottom:2px;
    height:1px;
    background: rgba(255,255,255,.75);
}

.signup-btn{
    border:0;
    background:#fff;
    color:#000;
    font-weight:700;
    padding: 12px 34px;
    border-radius: 999px;
    cursor:pointer;
    font-size:14px;
    white-space:nowrap;
    align-self: center;
}

.signup-btn:hover{ filter: brightness(.92); }
.signup-btn:active{ transform: translateY(1px); }

.social{
    margin-top: 6px;
}

.social-label{
    color: rgba(255,255,255,.55);
    font-size:14px;
    font-weight:600;
    margin-bottom:16px;
    text-align: start;
}

.social-icons{
    display:flex;
    gap:24px;
    align-items:center;
    flex-wrap:wrap;
}

.icon-btn{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.icon-btn svg{
    width:18px;
    height:18px;
    fill:#000;
}

.icon-btn:hover{ filter: brightness(.92); }
.icon-btn:active{ transform: translateY(1px); }

/* Responsive: stack button under input on small screens */
@media (max-width: 640px){
    .signup-row{ flex-direction:column; align-items:stretch; }
    .signup-btn{ width: fit-content; }
}

/* Images Section */
.image-section {
    position: relative;
}

.image-main {
    width: 100%;
    border-radius: 2rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 1.5rem;
    opacity: 0.6;
    border: 4px solid white;
}

.image-small {
    position: absolute;
    width: 20%;
    bottom: 0;
    right: 5%;
}

/* Footer */
.footer span {
    font-size: 0.875rem;
    color: var(--text-light);
}
.policy-bar{
    background:#000;
    color:#fff;
    padding: 18px 24px;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* the thin line across the top */
.policy-bar::before{
    content:"";
    display:block;
    height:1px;
    background: rgba(255,255,255,.18);
    margin-bottom: 14px;
}

.policy-inner{
    display:flex;
    align-items:flex-start;
    gap: 28px;
}

.policy-left{
    min-width: 190px; /* keeps left block stable like screenshot */
}

.policy-title{
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.policy-subtitle{
    font-size: 14px;
    color: rgba(255,255,255,.70);
    font-weight: 500;
    line-height: 1.2;
}

.policy-links{
    display:flex;
    flex-wrap:wrap;
    gap: 24px;
    align-items:flex-start;
    padding-top: 2px;
}

.policy-link{
    color: rgba(255,255,255,.70);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    padding-bottom: 6px; /* room for underline */
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
    white-space: nowrap; /* keeps each link on one line */
}

.policy-link:hover{
    color:#fff;
    border-bottom-color:#fff;
}

/* active/selected link (underline) */
.policy-link.is-active{
    color:#fff;
    border-bottom-color:#fff;
}

.mobile-hero{
    margin: 14px 0 10px; /* space between signup row and social */
    display: flex;
    justify-content: center;
}

.mobile-hero-img{
    max-width: 360px;     /* keeps it from being huge */
    width: 100%;
}

.image-footer{
    margin-top: 18px;
    color: rgba(255,255,255,0.6);
    font-family: 'Poppins', sans-serif;
}

.copyright-text{
    font-size: 13px;
    margin-bottom: 6px;
}

.copyright-sub{
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-wrap{
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 520px; /* adjust for desktop if needed */
}

.hero-img{
    width: 100%;
    height: auto;
    display: block;
}

.hero-caption{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 12px;
    color: rgba(255,255,255,0.55);
    pointer-events: none;
}

/* Mobile default */
.hero-caption{
    bottom: 10px;
}

/* Desktop (md and up) */
@media (min-width: 768px){
    .hero-caption{
        bottom: 54px;
    }
}

.copyright-text{
    font-size: 13px;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.copyright-sub{
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}

.innevo{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: rgba(255,255,255,0.70);
}

.innevo img{
    height: 16px;
    opacity: 0.8;
}

/* Responsive: stack left block on top */
@media (max-width: 760px){
    .policy-inner{
        flex-direction: column;
        gap: 12px;
    }
    .policy-left{
        min-width: auto;
    }
    .policy-links{
        gap: 14px 18px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: clamp(1.5rem, 8vw, 3rem);
    }
    .subtitle, .description-bold, .description-regular {
        font-size: 1rem;
    }
    .image-small {
        display: none;
    }
    .overlay {
        display: none;
    }
}
