/* Home estilo marketplace/app Plan Party */
:root {
    --vibe-purple: #9d4edd;
    --vibe-purple-strong: #7b2ff7;
    --vibe-lilac: #d8b4fe;
    --vibe-cyan: #5eead4;
    --vibe-ink: #111018;
    --vibe-muted: #666174;
    --vibe-line: rgba(34, 24, 46, 0.12);
    --vibe-card: rgba(255, 255, 255, 0.88);
}

.hidden {
    display: none !important;
}

body.home-vibe {
    color: var(--vibe-ink);
    background:
        radial-gradient(circle at 18% 10%, rgba(216, 180, 254, 0.42), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(94, 234, 212, 0.26), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f4efff 52%, #fbfaff 100%);
}

body.home-vibe::before {
    display: none;
}

.vibe-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px clamp(18px, 5vw, 70px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(17, 16, 24, 0.08);
    backdrop-filter: blur(18px);
}

.vibe-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--vibe-ink);
    text-decoration: none;
}

.vibe-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.vibe-brand strong {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
}

.vibe-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vibe-links a,
.vibe-profile-pill {
    color: rgba(17, 16, 24, 0.7);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.vibe-links a:hover {
    color: var(--vibe-ink);
    background: rgba(157, 78, 221, 0.1);
}

.vibe-links a.active {
    color: var(--vibe-ink);
    background: rgba(157, 78, 221, 0.14);
}

.login-link {
    color: var(--vibe-purple-strong) !important;
    background: rgba(157, 78, 221, 0.1);
}

.vibe-profile-pill {
    min-width: 132px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.72), rgba(123, 47, 247, 0.82));
    box-shadow: 0 0 24px rgba(157, 78, 221, 0.54);
}

.vibe-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.pp-home-hero {
    padding: clamp(28px, 5vw, 64px) 0 18px;
}

.home-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: clamp(28px, 5vw, 46px);
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #20152c;
    cursor: pointer;
    font-weight: 900;
}

.location-pill i {
    color: var(--vibe-purple-strong);
}

.home-icon-btn {
    width: 52px;
    height: 52px;
    position: relative;
    color: #160f20;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(40, 28, 58, 0.08);
    cursor: pointer;
}

.home-hero-copy h1 {
    max-width: 780px;
    margin: 0;
    color: #0c0b10;
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 900;
    line-height: 0.95;
}

.home-hero-copy h1 span {
    display: block;
    color: var(--vibe-purple-strong);
    font-style: italic;
}

.home-hero-copy p {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--vibe-muted);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.55;
}

.home-search {
    margin-left: 0;
}

.home-search button {
    width: 54px;
    padding: 0;
}

.ai-promo-card {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 18px;
    max-width: 760px;
    min-height: 122px;
    margin: 24px 0 0;
    padding: 18px;
    color: white;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.28), transparent 30%),
        linear-gradient(135deg, #501078, #9917ea 48%, #c044ff);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(123, 47, 247, 0.28);
    cursor: pointer;
}

.ai-promo-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    font-size: 24px;
}

.ai-promo-card span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.ai-promo-card strong {
    display: block;
    font-size: clamp(18px, 2.4vw, 24px);
    font-weight: 900;
    line-height: 1.05;
}

.ai-promo-card p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.ai-promo-card button,
.home-section-head button {
    min-height: 44px;
    padding: 0 18px;
    color: #64158d;
    background: white;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
}

.home-section {
    margin-top: 28px;
}

.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.home-section-head h2 {
    margin: 0;
    color: var(--vibe-ink);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
}

.home-section-head h2 i {
    color: var(--vibe-purple-strong);
}

.home-section-head button {
    color: var(--vibe-purple-strong);
    background: rgba(255, 255, 255, 0.72);
}

.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.premium-service-grid button {
    min-height: 150px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    padding: 18px;
    color: #1f1730;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(157, 78, 221, 0.22);
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 22px 60px rgba(40, 28, 58, 0.08);
}

.premium-service-grid i {
    color: var(--vibe-purple-strong);
    font-size: 30px;
}

.premium-service-grid strong {
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
}

.premium-service-grid span {
    color: var(--vibe-muted);
    font-size: 12px;
    font-weight: 800;
}

.trend-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 16px;
}

.trend-grid article {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 28px;
    cursor: pointer;
    box-shadow: 0 24px 60px rgba(40, 28, 58, 0.1);
}

.trend-grid img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.trend-grid article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(25, 10, 38, 0.78));
}

.trend-grid span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 12px 14px;
    color: white;
    background: rgba(42, 15, 54, 0.86);
    border-radius: 999px;
    font-weight: 900;
}

.home-actions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vibe-hero {
    padding: clamp(40px, 7vw, 76px) 0 22px;
    text-align: center;
}

.vibe-hero h1 {
    margin: 0;
    color: #0c0b10;
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 900;
    line-height: 0.98;
}

.vibe-hero p {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--vibe-muted);
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.65;
}

.vibe-search {
    width: min(760px, 100%);
    min-height: 66px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    margin: 28px auto 24px;
    padding: 8px 10px 8px 20px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(157, 78, 221, 0.38);
    border-radius: 999px;
    box-shadow: 0 0 34px rgba(157, 78, 221, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.vibe-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vibe-search-field i {
    color: var(--vibe-purple);
}

.vibe-search input {
    width: 100%;
    color: var(--vibe-ink);
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 700;
}

.vibe-search button {
    min-height: 48px;
    padding: 0 22px;
    color: white;
    background: linear-gradient(135deg, var(--vibe-purple), var(--vibe-purple-strong));
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
}

.vibe-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 28px;
}

.vibe-tags button {
    padding: 9px 14px;
    color: #302a3d;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(17, 16, 24, 0.1);
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.vibe-tags button:hover {
    color: white;
    background: var(--vibe-purple);
}

.vibe-panel {
    margin-top: 18px;
    padding: clamp(18px, 3vw, 28px);
    background: var(--vibe-card);
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(35, 22, 53, 0.12);
}

.vibe-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.vibe-section-head h2 {
    margin: 0;
    color: var(--vibe-ink);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
}

.vibe-section-head p {
    color: var(--vibe-muted);
    font-size: 14px;
}

.vibe-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.supplier-card {
    min-height: 270px;
}

.supplier-card img {
    width: 100%;
    aspect-ratio: 1.28 / 1;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.supplier-card h3 {
    margin: 12px 4px 4px;
    color: var(--vibe-ink);
    font-size: 17px;
    font-weight: 900;
}

.supplier-card p {
    margin: 0 4px;
    color: var(--vibe-muted);
    font-size: 13px;
    line-height: 1.35;
}

.supplier-feature {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 270px;
    background: #111;
}

.supplier-feature img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    filter: saturate(1.2);
}

.supplier-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.feature-content {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 1;
    color: white;
}

.feature-content span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 10px;
    background: rgba(216, 180, 254, 0.8);
    border-radius: 999px;
    color: #1a1027;
    font-size: 11px;
    font-weight: 900;
}

.feature-content h3 {
    margin: 0;
    font-size: 34px;
    font-weight: 900;
    line-height: 0.95;
}

.vibe-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.tool-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 24px;
}

.tool-card h3 {
    margin-bottom: 6px;
    color: var(--vibe-ink);
    font-size: 24px;
    font-weight: 900;
}

.tool-card p {
    color: var(--vibe-muted);
    font-size: 14px;
}

.mini-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 16px;
    padding: 0 16px;
    color: #1f1730;
    text-decoration: none;
    background: linear-gradient(135deg, var(--vibe-cyan), #31d17f);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
}

.budget-line {
    position: relative;
    height: 8px;
    margin: 28px 0 12px;
    background: #ddd7e8;
    border-radius: 999px;
}

.budget-line::before {
    content: "";
    position: absolute;
    inset: 0 42% 0 0;
    background: linear-gradient(90deg, var(--vibe-purple), var(--vibe-purple-strong));
    border-radius: inherit;
}

.budget-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 58%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
    background: var(--vibe-purple);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(123, 47, 247, 0.3);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.payment-logos span {
    padding: 8px 10px;
    color: #2e2940;
    background: #f1edf8;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
}

.vibe-pro {
    display: grid;
    grid-template-columns: minmax(300px, 430px) 1fr;
    gap: 18px;
    margin: 18px 0 36px;
}

.pro-login-card,
.vip-access-card {
    padding: 28px;
    background: rgba(22, 18, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    color: white;
}

.pro-login-card .card-tag,
.vip-access-card p {
    color: rgba(255, 255, 255, 0.78);
}

.vip-access-card {
    background:
        linear-gradient(145deg, rgba(94, 234, 212, 0.16), rgba(157, 78, 221, 0.18)),
        rgba(22, 18, 32, 0.92);
}

.vip-access-card h2 {
    margin: 8px 0 12px;
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.home-footer {
    padding: 28px 0 42px;
    text-align: center;
    color: var(--vibe-muted);
}

.home-footer nav {
    justify-content: center;
}

.home-footer a {
    color: var(--vibe-muted);
}

.app-tabs-showcase {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 20px;
}

.app-tabs-showcase a,
.quick-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 74px;
    padding: 16px;
    color: var(--vibe-ink);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(40, 28, 58, 0.08);
    font-weight: 900;
}

.app-tabs-showcase i,
.quick-grid i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--vibe-purple), var(--vibe-purple-strong));
    border-radius: 14px;
    box-shadow: 0 0 22px rgba(157, 78, 221, 0.32);
}

.app-shell {
    padding-bottom: 90px;
}

.app-hero.compact {
    padding: clamp(34px, 6vw, 64px) 0 18px;
    text-align: center;
}

.app-hero h1,
.early-access h1 {
    max-width: 900px;
    margin: 8px auto 0;
    color: #0c0b10;
    font-size: clamp(36px, 6vw, 66px);
    font-weight: 900;
    line-height: 1;
}

.app-hero p,
.early-access p {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--vibe-muted);
    font-size: 16px;
    line-height: 1.65;
}

.app-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
    padding: 9px 13px;
    color: #51246f;
    background: rgba(216, 180, 254, 0.45);
    border: 1px solid rgba(157, 78, 221, 0.22);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.app-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 6px 0 18px;
}

.app-tabs button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 18px;
    color: #302a3d;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 16, 24, 0.1);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
}

.app-tabs button.active,
.app-tabs button:hover {
    color: white;
    background: linear-gradient(135deg, var(--vibe-purple), var(--vibe-purple-strong));
    box-shadow: 0 0 22px rgba(157, 78, 221, 0.32);
}

.supplier-results .supplier-card {
    padding-bottom: 14px;
}

.pro-contract-card {
    padding: 0 0 14px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 22px;
}

.contract-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 12px 4px 0;
    color: #4d435d;
    font-size: 12px;
    font-weight: 900;
}

.planner-grid,
.budget-app,
.invite-builder {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 18px 0 36px;
}

.app-card {
    padding: clamp(20px, 3vw, 28px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(35, 22, 53, 0.1);
}

.app-card.wide {
    grid-column: 1 / -1;
}

.app-card h2 {
    margin: 0 0 16px;
    color: var(--vibe-ink);
    font-size: 26px;
    font-weight: 900;
}

.inline-form {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 10px;
    margin-bottom: 14px;
}

.inline-form input,
.app-card label input,
.app-card label textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    color: var(--vibe-ink);
    background: #f7f4fb;
    border: 1px solid rgba(17, 16, 24, 0.1);
    border-radius: 16px;
    outline: none;
    font-weight: 800;
}

.app-card label {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
    color: #5c526b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.app-card label textarea {
    min-height: 110px;
    padding-top: 14px;
    resize: vertical;
}

.inline-form button {
    color: white;
    background: linear-gradient(135deg, var(--vibe-purple), var(--vibe-purple-strong));
    border: none;
    border-radius: 16px;
    cursor: pointer;
}

.task-list {
    display: grid;
    gap: 10px;
}

.task-list button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    color: #322842;
    background: #f7f4fb;
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    font-weight: 800;
}

.task-list button.done,
.task-list button:hover {
    color: #1e7c55;
    background: rgba(94, 234, 212, 0.22);
}

.metric-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.metric-row span {
    flex: 1;
    padding: 12px;
    background: #f1edf8;
    border-radius: 16px;
    color: #5a5069;
    font-size: 13px;
    font-weight: 800;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.auth-web .app-card h1 {
    margin: 12px 0;
    color: var(--vibe-ink);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1;
}

.unified-login-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 18px;
    min-height: calc(100vh - 140px);
    align-items: center;
    padding: 44px 0;
}

.unified-login-copy {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 85% 12%, rgba(157, 78, 221, 0.2), transparent 34%),
        rgba(255, 255, 255, 0.9);
}

.unified-login-copy h1 {
    margin: 16px 0 12px;
    color: var(--vibe-ink);
    font-size: clamp(44px, 7vw, 82px);
    font-weight: 900;
    line-height: 0.95;
}

.unified-login-copy p,
.unified-login-form p {
    color: var(--vibe-muted);
    line-height: 1.65;
}

.login-mode-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.login-mode {
    display: grid;
    gap: 8px;
    min-height: 168px;
    padding: 20px;
    color: #2e2440;
    background: #f7f4fb;
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 22px;
    cursor: pointer;
    text-align: left;
}

.login-mode.active {
    color: white;
    background: linear-gradient(135deg, var(--vibe-purple), var(--vibe-purple-strong));
    box-shadow: 0 20px 52px rgba(123, 47, 247, 0.24);
}

.login-mode i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(17, 16, 24, 0.84);
    border-radius: 15px;
}

.login-mode strong {
    font-size: 18px;
    font-weight: 900;
}

.login-mode span {
    color: inherit;
    opacity: 0.72;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.unified-login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unified-login-form h2 {
    margin: 14px 0 8px;
    color: var(--vibe-ink);
    font-size: 34px;
    font-weight: 900;
}

.login-secondary-action {
    min-height: 46px;
    margin-top: 10px;
    color: var(--vibe-purple-strong);
    background: transparent;
    border: 1px solid rgba(157, 78, 221, 0.22);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
}

.pp-login-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.pp-login-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 24, 0.48);
    backdrop-filter: blur(18px);
}

.pp-login-modal {
    position: relative;
    z-index: 1;
    width: min(480px, 100%);
    padding: clamp(22px, 4vw, 34px);
    background:
        radial-gradient(circle at 90% 4%, rgba(216, 180, 254, 0.35), transparent 36%),
        rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 16, 24, 0.1);
    border-radius: 30px;
    box-shadow: 0 34px 100px rgba(29, 18, 45, 0.28);
}

.pp-login-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    color: #3f3152;
    background: rgba(17, 16, 24, 0.06);
    border: none;
    border-radius: 14px;
    cursor: pointer;
}

.pp-login-modal h2 {
    margin: 16px 0 8px;
    color: var(--vibe-ink);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.pp-login-modal p {
    color: var(--vibe-muted);
    line-height: 1.55;
}

.pp-login-modal label {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    color: #5c526b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.pp-login-modal input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    color: var(--vibe-ink);
    background: #f7f4fb;
    border: 1px solid rgba(17, 16, 24, 0.1);
    border-radius: 16px;
    outline: none;
    font-weight: 800;
}

.pp-login-modal .btn-logar {
    width: 100%;
    margin-top: 16px;
}

.pp-login-modal .mini-action,
.pp-login-modal .login-secondary-action {
    width: 100%;
}

.auth-web .app-card p,
.muted {
    color: var(--vibe-muted);
    line-height: 1.6;
}

.auth-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.messages-layout,
.ai-workspace {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 36px;
}

.ai-page-shell {
    padding-top: clamp(22px, 4vw, 42px);
}

.ai-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    margin-bottom: 18px;
}

.ai-hero .app-kicker {
    margin-left: 0;
}

.ai-hero h1 {
    max-width: 860px;
    margin: 14px 0 10px;
    color: #0c0b10;
    font-size: clamp(42px, 6vw, 74px);
    font-weight: 900;
    line-height: 0.94;
}

.ai-hero p {
    max-width: 680px;
    margin: 0;
    color: var(--vibe-muted);
    font-size: 17px;
    line-height: 1.55;
}

.ai-status-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: 10px;
    min-width: 360px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(35, 22, 53, 0.08);
}

.ai-status-strip span {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 8px;
    color: #4a405a;
    background: #f7f4fb;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.ai-status-strip b {
    color: var(--vibe-purple-strong);
    font-size: 20px;
}

.ai-command-center {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.planner-ai-workspace {
    margin-bottom: 18px;
}

.planner-ai-board {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr) minmax(280px, 0.85fr);
    gap: 18px;
    margin-bottom: 36px;
}

.planner-command-card {
    background:
        linear-gradient(145deg, rgba(157, 78, 221, 0.16), rgba(94, 234, 212, 0.16)),
        rgba(255, 255, 255, 0.9);
}

.planner-command-card p {
    color: var(--vibe-muted);
    line-height: 1.6;
}

.chat-panel,
.ai-chat {
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.ai-chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.ai-chat-head span {
    color: var(--vibe-purple-strong);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ai-chat-head h2 {
    margin: 4px 0 0;
}

.ai-chat-head button {
    min-height: 42px;
    padding: 0 16px;
    color: white;
    background: linear-gradient(135deg, var(--vibe-purple), var(--vibe-purple-strong));
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
}

.chat-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 360px;
    margin-bottom: 14px;
    padding: 18px;
    background: #f7f4fb;
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 20px;
    overflow: auto;
}

.chat-preview > span {
    margin: auto;
    color: var(--vibe-muted);
    font-weight: 800;
}

.ai-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ai-sidebar h1 {
    margin: 14px 0 8px;
    color: var(--vibe-ink);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1;
}

.ai-sidebar h2 {
    margin: 14px 0 8px;
    color: var(--vibe-ink);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    line-height: 1;
}

.ai-sidebar p {
    color: var(--vibe-muted);
    line-height: 1.6;
}

.ai-sidebar .mini-action {
    width: 100%;
}

.ai-bubble {
    max-width: 720px;
    padding: 16px;
    color: #302842;
    background: white;
    border: 1px solid rgba(17, 16, 24, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(35, 22, 53, 0.08);
}

.ai-bubble.user {
    align-self: flex-end;
    color: white;
    background: linear-gradient(135deg, var(--vibe-purple), var(--vibe-purple-strong));
}

.planner-list-card {
    min-height: 310px;
}

.vip-profile-shell {
    display: grid;
    gap: 18px;
    padding: clamp(28px, 5vw, 56px) 0;
}

.vip-profile-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    align-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 12%, rgba(94, 234, 212, 0.28), transparent 32%),
        radial-gradient(circle at 15% 18%, rgba(157, 78, 221, 0.24), transparent 34%),
        rgba(255, 255, 255, 0.92);
}

.vip-profile-avatar {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: white;
    background: linear-gradient(135deg, var(--vibe-purple), var(--vibe-purple-strong));
    border: 8px solid rgba(255, 255, 255, 0.82);
    border-radius: 30px;
    box-shadow: 0 22px 58px rgba(123, 47, 247, 0.28);
    font-size: 30px;
    font-weight: 900;
}

.vip-profile-hero .app-kicker {
    margin-left: 0;
}

.vip-profile-hero h1 {
    max-width: 780px;
    margin: 14px 0 8px;
    color: var(--vibe-ink);
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 900;
    line-height: 0.94;
}

.vip-profile-hero p {
    margin: 0;
    color: var(--vibe-muted);
    font-size: 18px;
    font-weight: 800;
}

.vip-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.vip-profile-actions .mini-action,
.vip-profile-actions .login-secondary-action {
    min-width: 170px;
}

.vip-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 18px;
}

.vip-profile-quick {
    margin-top: 18px;
}

.vip-profile-cta {
    width: 100%;
    margin-top: 18px;
    color: #1f1730;
}

.legal-page {
    max-width: 920px;
    margin: 44px auto;
}

.legal-page h1 {
    margin: 0 0 18px;
    color: var(--vibe-ink);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
}

.legal-page h2 {
    margin: 24px 0 8px;
    color: var(--vibe-ink);
}

.legal-page p {
    color: var(--vibe-muted);
    line-height: 1.7;
}

.range-row {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.range-row label {
    display: flex;
    justify-content: space-between;
    color: #4f465b;
    font-weight: 900;
}

.range-row input {
    accent-color: var(--vibe-purple);
}

.budget-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    background:
        linear-gradient(145deg, rgba(94, 234, 212, 0.18), rgba(157, 78, 221, 0.2)),
        rgba(255, 255, 255, 0.9);
}

.budget-summary strong {
    display: block;
    margin: 18px 0 8px;
    color: var(--vibe-ink);
    font-size: clamp(46px, 7vw, 72px);
    font-weight: 900;
    line-height: 1;
}

.budget-summary p {
    color: var(--vibe-muted);
}

.invite-preview-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(28px, 5vw, 46px);
    color: white;
    background:
        linear-gradient(180deg, rgba(8, 6, 15, 0.05), rgba(8, 6, 15, 0.72)),
        url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1200&q=80") center/cover;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(35, 22, 53, 0.14);
}

.invite-preview-card span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.invite-preview-card h2 {
    max-width: 540px;
    margin: 10px 0;
    font-size: clamp(38px, 6vw, 70px);
    font-weight: 900;
    line-height: 0.95;
}

.invite-preview-card p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

.invite-preview-card div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.invite-preview-card b {
    padding: 10px 12px;
    color: #1f1730;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
}

.early-access {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: clamp(24px, 5vw, 70px);
    min-height: calc(100vh - 94px);
    padding: 40px 0;
}

.early-access .app-kicker,
.early-access h1,
.early-access p {
    margin-left: 0;
    text-align: left;
}

.early-access .btn-download-vip {
    width: min(520px, 100%);
    margin-top: 28px;
}

.phone-mock {
    position: relative;
    display: grid;
    gap: 14px;
    min-height: 600px;
    padding: 76px 24px 28px;
    background:
        radial-gradient(circle at 50% 10%, rgba(216, 180, 254, 0.45), transparent 34%),
        linear-gradient(180deg, #151421, #251b39);
    border: 10px solid #111018;
    border-radius: 44px;
    box-shadow: 0 32px 80px rgba(40, 28, 58, 0.26), 0 0 38px rgba(157, 78, 221, 0.28);
}

.phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    width: 112px;
    height: 28px;
    transform: translateX(-50%);
    background: #09080d;
    border-radius: 999px;
}

.phone-mock strong {
    color: white;
    font-size: 28px;
    font-weight: 900;
}

.phone-mock span {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 16px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    font-weight: 900;
}

.bottom-app-nav {
    position: fixed;
    left: 50%;
    bottom: 16px;
    z-index: 80;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    width: min(560px, calc(100% - 24px));
    padding: 8px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 16, 24, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 70px rgba(30, 22, 46, 0.18);
    backdrop-filter: blur(18px);
}

.bottom-app-nav a {
    display: grid;
    place-items: center;
    gap: 3px;
    min-height: 54px;
    color: #6c6378;
    text-decoration: none;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 900;
}

.bottom-app-nav a.active {
    color: white;
    background: linear-gradient(135deg, var(--vibe-purple), var(--vibe-purple-strong));
}

@media (max-width: 980px) {
    .vibe-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vibe-tools,
    .vibe-pro,
    .planner-grid,
    .budget-app,
    .invite-builder,
    .unified-login-shell,
    .early-access,
    .messages-layout,
    .ai-workspace,
    .ai-command-center,
    .ai-hero,
    .vip-profile-grid,
    .planner-ai-board {
        grid-template-columns: 1fr;
    }

    .ai-status-strip {
        min-width: 0;
        width: 100%;
    }

    .app-tabs-showcase,
    .quick-grid,
    .premium-service-grid,
    .home-actions-grid,
    .login-mode-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trend-grid {
        grid-template-columns: 1fr;
    }

    .phone-mock {
        min-height: 480px;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .vibe-nav,
    .vibe-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .vibe-links {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .vibe-search {
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding: 16px;
    }

    .vibe-search button {
        width: 100%;
    }

    .vibe-gallery {
        grid-template-columns: 1fr;
    }

    .app-tabs-showcase,
    .quick-grid,
    .premium-service-grid,
    .home-actions-grid,
    .login-mode-grid {
        grid-template-columns: 1fr;
    }

    .ai-promo-card {
        grid-template-columns: 54px 1fr;
    }

    .ai-promo-card button {
        grid-column: 1 / -1;
    }

    .home-hero-copy h1 {
        font-size: 46px;
    }

    .bottom-app-nav {
        display: grid;
    }

    .ai-hero h1 {
        font-size: 42px;
    }

    .ai-status-strip {
        grid-template-columns: 1fr;
    }

    .ai-chat-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ai-chat-head button {
        width: 100%;
    }

    .app-hero h1,
    .early-access h1 {
        font-size: 38px;
    }

    .invite-preview-card {
        min-height: 420px;
    }
}
