: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 {
    font-size: 14px;
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    z-index: 1;
}

/* glow */
.coming-soon::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: white;
    border-radius: 999px;
    filter: blur(10px);
    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-top: 18px;
    padding-bottom: 18px;
    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;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 14px 0;
    z-index: 9999;
    display: none;
}

.cookie-banner a { color: #fff; }

.cookie-modal .modal-content,
.cookie-modal {
    border-radius: 14px;
}

.cookie-category { padding: 8px 0; }
/* === Cookie Modal - match provided design === */
.cookie-custom {
    background: transparent;
    border: 0;
    border-radius: 28px;
}

.cookie-custom__inner {
    background: #fff;
    color: #000;
    border-radius: 28px;
    padding: 28px 28px 22px;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
    overflow: hidden;
}

.cookie-custom__header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-right: 48px;
}

/* Logo */
.cookie-custom__logo {
    flex-shrink: 0;
}

.legal-logo {
    width: clamp(45px, 10vw, 140px);
    min-width: 45px;
    height: auto;
}

/* Title */
.cookie-custom__title-wrap {
    text-align: center;
    min-width: 200px;
}

.cookie-custom__title {
    margin: 0;
    font-weight: 800;
    font-size: clamp(20px, 2.4vw, 32px);
    letter-spacing: -0.02em;
}

/* Close button always top-right */
.cookie-custom__close {
    position: absolute;
    top: 0;
    right: 0;

    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: #000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;
}

.cookie-custom__meta {
    margin-top: 14px;
    margin-bottom: 22px;
    color: rgba(0,0,0,.45);
    font-size: 13px;
    font-weight: 600;
}

/* Rows */
.cookie-custom__rows {
    padding: 6px 0 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.cookie-row--last {
    border-bottom: 0;
}

.cookie-row__label {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 6px;
}

.cookie-row__desc {
    font-size: 13px;
    color: rgba(0,0,0,.65);
    line-height: 1.45;
}

/* Circular checkbox like the mock */
.cookie-check {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.cookie-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-check__ui {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 2px solid #000;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .12s ease, background .12s ease;
}

.cookie-check__ui::after {
    content: "✓";
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transform: translateY(-1px);
}

/* checked -> black filled circle with white check */
.cookie-check input:checked + .cookie-check__ui {
    background: #000;
}

.cookie-check input:checked + .cookie-check__ui::after {
    opacity: 1;
}

/* disabled essential */
.cookie-check--disabled {
    cursor: not-allowed;
    opacity: .35;
}

/* Footer */
.cookie-custom__footer {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 14px;
    align-items: center;
}

.cookie-btn {
    height: 46px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    border: 1.5px solid rgba(0,0,0,.25);
    background: #fff;
    color: #000;
    padding: 0 18px;
}

.cookie-btn--ghost:hover {
    filter: brightness(.98);
}

.cookie-btn--primary {
    border-color: #000;
    background: #000;
    color: #fff;
}

.cookie-btn--primary:hover {
    filter: brightness(.92);
}

.cookie-custom__policy {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
}

.cookie-custom__policy a {
    color: rgba(0,0,0,.65);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .cookie-custom__inner {
        padding: 22px 18px 18px;
    }
    .cookie-custom__footer {
        grid-template-columns: 1fr;
    }
    .cookie-row {
        grid-template-columns: 1fr 64px;
    }
}

/* ===== Cookie Banner (New Style) ===== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    padding: 0 20px;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    color: #000;
    border-radius: 28px;
    padding: 28px 32px;

    /* Top shadow effect */
    box-shadow:
            0 -12px 40px rgba(0,0,0,.15),
            0 20px 60px rgba(0,0,0,.25);
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0,0,0,.75);
    margin-bottom: 22px;
}

.cookie-banner__text a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* Make banner buttons identical to modal buttons */
.cookie-banner .cookie-btn {
    height: 46px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    border: 1.5px solid rgba(0,0,0,.25);
    background: #fff;
    color: #000;
    padding: 0 24px;
}

.cookie-banner .cookie-btn:hover {
    filter: brightness(.97);
}

/* Responsive */
@media (max-width: 1024px) {
    .cookie-banner {
        bottom: 0;
        padding: 0;              /* edge-to-edge */
    }

    .cookie-banner__inner {
        max-width: none;         /* remove container width constraint */
        width: 100%;
        margin: 0;
        border-radius: 18px 18px 0 0;       /* full-width sheet look */
        padding: 18px 18px 16px;

        /* keep a "top shadow" like a sheet sliding up */
        box-shadow: 0 -12px 40px rgba(0,0,0,.18);
    }

    .cookie-banner__text {
        margin-bottom: 14px;     /* text earlier/top, less gap */
    }

    .cookie-banner__actions {
        justify-content: center;
        gap: 12px;
    }
}
.cookie-btn {
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.cookie-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Prevent disabled buttons from changing */
.cookie-btn:disabled,
.cookie-btn[disabled] {
    opacity: .6;
    cursor: not-allowed;
}

.cookie-btn:disabled:hover {
    background: inherit;
    color: inherit;
    border-color: inherit;
}
.modal { z-index: 1060; }
.modal-backdrop { z-index: 1055; }
.cookie-banner { z-index: 1040; }

/* 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;
    }
    .app-container {
        padding: 48px 20px;
    }
}
/* Fix Chrome autofill WITHOUT touching placeholder styling */
.field-input:-webkit-autofill,
.field-input:-webkit-autofill:hover,
.field-input:-webkit-autofill:focus,
.field-input:-webkit-autofill:active {

    /* Keep your normal typed text color */
    -webkit-text-fill-color: #fff !important;

    /* Paint over Chrome's autofill background */
    -webkit-box-shadow: 0 0 0 1000px #000 inset !important;
    box-shadow: 0 0 0 1000px #000 inset !important;

    /* Prevent yellow/blue flash */
    transition: background-color 9999s ease-out 0s;
}

/* Firefox */
.field-input:-moz-autofill {
    box-shadow: 0 0 0 1000px #000 inset !important;
}
