/* Modern signup style (business_main inspired) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.nav-logo .big { color: #111111; }
.nav-logo .bite { color: rgba(0, 0, 0, 0.25); font-weight: 400; }

.nav-badge {
    display: inline-flex;
    align-items: center;
    background: #111111;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 50px;
    margin-left: 10px;
}

.btn-login {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111111;
    background: #f4f4f4;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    text-decoration: none;
}

.btn-login:hover { background: #ebebeb; }

.signup-shell {
    min-height: 100vh;
    padding: 108px 24px 48px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    align-items: center;
}

.signup-hero,
.signup-card {
    background: #f7f7f7;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.signup-hero {
    padding: 40px;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #cccccc;
}

.hero-title {
    margin-top: 18px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-title span { color: rgba(0, 0, 0, 0.28); }

.hero-subtitle {
    margin-top: 18px;
    font-size: 1.04rem;
    color: #999999;
    line-height: 1.7;
    max-width: 560px;
}

.signup-card-wrap {
    display: flex;
}

.signup-card {
    width: 100%;
    padding: 30px;
}

.signup-card h2 {
    font-size: 2rem;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.field-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b0b0b0;
    margin-bottom: 8px;
}

#email {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    background: #ffffff;
    font-size: 1rem;
    outline: none;
}

#email:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

#email.has-error {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}

.field-error {
    min-height: 18px;
    margin-top: 6px;
    font-size: 0.92rem;
    color: #c62828;
}

.continuebutton {
    margin-top: 10px;
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
}

.continuebutton:hover { background: #333333; }

.continuebutton:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.register-link {
    margin-top: 14px;
    font-size: 0.98rem;
    color: #888888;
    text-align: center;
}

.loginbutton {
    color: #111111;
    font-weight: 700;
    text-decoration: none;
}

.loginbutton:hover { opacity: 0.7; }

@media (max-width: 980px) {
    .signup-shell {
        grid-template-columns: 1fr;
        padding-top: 92px;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 0 14px;
    }

    .signup-hero,
    .signup-card {
        border-radius: 22px;
        padding: 22px;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }
}

/* ==================== V2 PREMIUM BUYER SIGNUP ==================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.signup-shell {
    padding: 108px 24px 56px;
    gap: 24px;
    align-items: stretch;
}

.signup-hero,
.signup-card {
    overflow: hidden;
}

.signup-hero {
    padding: 42px;
    position: relative;
}

.signup-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -150px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-stat-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 10px;
}

.hero-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.hero-stat-card p {
    font-size: 0.88rem;
    color: #999999;
    line-height: 1.6;
}

.hero-preview-card {
    margin-top: 18px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(0,0,0,0.08);
}

.hero-preview-head {
    height: 52px;
    background: #fafafa;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.preview-dot.red { background: #ff5f57; }
.preview-dot.yellow { background: #febc2e; }
.preview-dot.green { background: #28c840; }

.hero-preview-url {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    height: 28px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 0.75rem;
    color: #aaaaaa;
    font-weight: 500;
}

.hero-preview-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f7f7;
    border-radius: 18px;
    padding: 15px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #7b7b7b;
}

.hero-preview-item span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.45;
    flex-shrink: 0;
}

.hero-preview-item.active {
    background: #111111;
    color: #ffffff;
}

.signup-card {
    padding: 34px;
}

.card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.card-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    color: #777777;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .hero-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .signup-hero,
    .signup-card {
        padding: 22px;
    }
}

/* LEGACY_SIGNUP_CSS_DISABLED
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar { display: none; }

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ── Header / Nav ── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.18s ease;
}

.header:hover { opacity: 0.75; }
.header:active { opacity: 0.5; }

.header .big {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    line-height: 1;
}

.header .bite {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(0,0,0,0.25);
    letter-spacing: -0.02em;
    line-height: 1;
}

@media (max-width: 600px) {
    .header { padding: 0 20px; }
}



.signup-container {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 88px 24px 60px;
    overflow-x: hidden;
}

.signup-container .signupframe {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .signup-container { padding: 88px 16px 60px; }
}

.signup-container .signupframe input,
.signup-container .signupframe select {
    width: 100%;
    height: 52px;
    margin-bottom: 12px;
    padding: 0 20px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    border: none;
    font-size: 0.95rem;
    font-weight: 400;
    background: #f7f7f7;
    color: #111111;
    outline: none;
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.signup-container .signupframe input:focus,
.signup-container .signupframe select:focus {
    background: #f0f0f0;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.signup-container .signupframe input::placeholder {
    color: #aaaaaa;
    font-size: 0.93rem;
}

.signup-container .signupframe .continueframe .continuebutton {
    width: 100%;
    height: 52px;
    background: #111111;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    transition: background 0.18s ease, transform 0.18s ease;
}

.signup-container .signupframe .continueframe .continuebutton:hover { background: #333333; transform: translateY(-1px); }
.signup-container .signupframe .continueframe .continuebutton:active { background: #111111; transform: translateY(0); }

.signup-container .signupframe .phone-prefix {
    width: 32%;
    min-width: 90px;
    height: 44px;
    border: 1.5px solid #bbb;
    border-radius: 25px;
    font-family: 'Poppins Light';
    font-size: 1rem;
    padding-left: 10px;
    background: rgba(255,255,255,0.65) url("data:image/svg+xml;utf8,<svg fill='black' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center/18px 18px;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s, transform 0.18s;
    appearance: none;
    -webkit-appearance: none;
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    border: 1.5px solid rgba(187,187,187,0.38);
}

.signup-container .signupframe .phone-prefix:focus {
    border-color: #414141;
    box-shadow: 0 2px 12px #eaf1fe;
    background: rgba(246,248,250,0.85);
}

.signup-container .signupframe h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #111111;
    margin-bottom: 36px;
    font-size: 2.4rem;
    letter-spacing: -0.03em;
    font-weight: 700;
    line-height: 1;
}

.signup-container .signupframe .register-link {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-top: 28px;
    font-size: 0.9rem;
    color: #888888;
    font-weight: 400;
}

.signup-container .signupframe .loginbutton {
    font-family: 'Poppins', sans-serif;
    color: #111111;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.18s ease;
}

.signup-container .signupframe .loginbutton:hover { opacity: 0.65; }



/* ==================== FOOTER ==================== */
.site-footer {
    background: #111;
    color: #fff;
    padding: 80px 40px 40px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
}
.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 8px;
}
.footer-brand h2 span:last-child {
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}
.footer-links-list a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.18s ease;
}
.footer-links-list a:hover { color: #fff; }
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 32px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.18s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .site-footer { padding: 60px 20px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
*/

