:root {
    --bg-color: #0F0E17;
    --card-bg: #1F1D2E;
    --accent-violet: #A78BFF;
    --accent-mint: #B5EAD7;
    --accent-sky: #A2D2FF;
    --accent-rose: #FFB7C5;
    --accent-peach: #FFD3B6;
    
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.3);
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --nav-height: 80px;
}

/* ── Base ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-violet);
}

/* ── Background ── */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #161521 0%, #0F0E17 100%);
}

#particles {
    width: 100%;
    height: 100%;
}

.nebula-1, .nebula-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
}

.nebula-1 {
    background: var(--accent-violet);
    top: -100px;
    right: -100px;
    animation: drift 20s infinite alternate linear;
}

.nebula-2 {
    background: var(--accent-sky);
    bottom: -100px;
    left: -100px;
    animation: drift 25s infinite alternate-reverse linear;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

/* ── Navigation ── */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.main-nav.scrolled {
    background: rgba(15, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: 70px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.brand-logo {
    width: 32px;
    height: 32px;
    background: var(--accent-violet);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--bg-color);
}

.brand-name {
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.3rem;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-violet);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ── 3D Buttons ── */
.btn-3d {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.btn-content {
    display: block;
    padding: 1rem 2.5rem;
    border-radius: 1.2rem;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    position: relative;
    z-index: 2;
    transition: transform 0.1s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-shadow {
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
    z-index: 1;
    transition: transform 0.1s ease;
}

.btn-primary .btn-content {
    background: var(--accent-violet);
    color: var(--bg-color);
}

.btn-primary .btn-shadow {
    background: rgba(167, 139, 255, 0.4);
}

.btn-secondary .btn-content {
    background: var(--glass-bg);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary .btn-shadow {
    background: rgba(255, 255, 255, 0.1);
}

.btn-3d:hover .btn-content {
    transform: translateY(-2px);
}

.btn-3d:active .btn-content {
    transform: translateY(4px);
}

.btn-3d:active .btn-shadow {
    transform: translateY(-2px);
}

.btn-nav .btn-content {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.btn-nav .btn-shadow {
    top: 4px;
}

.btn-hero .btn-content {
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
    border-radius: 2rem;
}

.btn-hero .btn-shadow {
    top: 8px;
    border-radius: 2rem;
}

.btn-full {
    width: 100%;
}

/* ── Hero Section ── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: 6.5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.3rem;
    margin-bottom: 2.5rem;
}

.hero-description {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vessel-outer {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(167, 139, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.vessel-inner {
    width: 280px;
    height: 280px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--glass-shadow);
}

.hero-mascot-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    animation: float 6s infinite ease-in-out;
}

.hero-floating-elements .float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glass-shadow);
}

.float-item i {
    width: 24px;
    height: 24px;
}

.gem-violet { top: 0; left: 0; color: var(--accent-violet); animation: float 5s infinite ease-in-out 1s; }
.gem-mint { top: 10%; right: 0; color: var(--accent-mint); animation: float 7s infinite ease-in-out 0.5s; }
.gem-sky { bottom: 10%; left: 10%; color: var(--accent-sky); animation: float 4s infinite ease-in-out 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* ── Section Commons ── */
section {
    padding: 160px 0;
}

.section-header {
    margin-bottom: 6rem;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.15rem;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.centered .section-subtitle {
    margin: 0 auto;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 3.5rem;
    transition: all 0.4s ease;
}

/* ── Bento Grid ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 2rem;
}

.bento-item {
    position: relative;
    overflow: hidden;
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 2; }
.bento-small { grid-column: span 1; }

.bento-content {
    position: relative;
    z-index: 2;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon-box i { width: 32px; height: 32px; }
.icon-box.violet { background: rgba(167, 139, 255, 0.1); color: var(--accent-violet); }
.icon-box.sky { background: rgba(162, 210, 255, 0.1); color: var(--accent-sky); }
.icon-box.mint { background: rgba(181, 234, 215, 0.1); color: var(--accent-mint); }
.icon-box.rose { background: rgba(255, 183, 197, 0.1); color: var(--accent-rose); }

.bento-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.bento-visual {
    margin-top: 3rem;
}

.mock-routine {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.routine-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid transparent;
}

.routine-item.active {
    background: rgba(167, 139, 255, 0.1);
    border-color: rgba(167, 139, 255, 0.3);
}

.routine-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
}

.routine-item.active .dot {
    background: var(--accent-violet);
    border-color: var(--accent-violet);
}

/* ── Vault Grid ── */
.vault-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.vault-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vault-card.featured {
    border-color: var(--accent-violet);
    transform: scale(1.05);
}

.card-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.card-glow.mint { background: var(--accent-mint); }
.card-glow.violet { background: var(--accent-violet); }
.card-glow.rose { background: var(--accent-rose); }

.best-value {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-violet);
    color: var(--bg-color);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
}

.vault-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2.5rem;
    position: relative;
}

.vault-icon.mint { color: var(--accent-mint); }
.vault-icon.violet { color: var(--accent-violet); }
.vault-icon.rose { color: var(--accent-rose); }

.vault-card h3 {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}

.vault-card .amount {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.vault-card .amount span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.vault-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* ── Mascot Split ── */
.mascot-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.mascot-selector {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.sel-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 2rem;
    border-radius: 100px;
    color: var(--text-secondary);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.sel-btn.active {
    background: var(--accent-violet);
    color: var(--bg-color);
    border-color: var(--accent-violet);
}

.mascot-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.display-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-violet);
    filter: blur(120px);
    opacity: 0.2;
}

.display-img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

/* ── Community ── */
.community-box {
    text-align: center;
}

.well-visual {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.well-core {
    width: 120px;
    height: 120px;
    background: var(--accent-violet);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.impact-item span {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-violet);
    display: block;
}

.impact-item p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

/* ── Footer ── */
.main-footer {
    padding: 120px 0 60px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 6rem;
    margin-bottom: 100px;
}

.footer-brand-info p {
    color: var(--text-secondary);
    margin: 2rem 0;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-violet);
    color: var(--bg-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.link-col h4 {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.link-col a {
    display: block;
    text-decoration: none;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 600;
    transition: color 0.3s;
}

.link-col a:hover {
    color: var(--accent-violet);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.app-badges {
    display: flex;
    gap: 1.5rem;
}

.store-badge {
    height: 44px;
    cursor: pointer;
    transition: transform 0.3s;
}

.store-badge:hover {
    transform: translateY(-4px);
}

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal {
    background: var(--card-bg);
    width: 100%;
    max-width: 900px;
    border-radius: 3rem;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: modalScale 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes modalScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    padding: 3rem 4rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover { color: white; }

.modal-body {
    padding: 1.5rem 4rem 3rem;
    overflow-y: auto;
    color: var(--text-secondary);
}

.modal-body h3 {
    color: white;
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-footer {
    padding: 2rem 4rem 4rem;
}

/* ── GSAP Reveal ── */
[data-reveal] {
    /* Visibility managed by JS for smooth reveal */
}

/* ── Mobile ── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-headline { font-size: 4.5rem; }
    .hero-description { margin: 0 auto 4rem; }
    .hero-btns { justify-content: center; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-medium { grid-column: span 1; grid-row: span 1; }
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-links-grid { grid-template-columns: 1fr; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 2rem; }
    .mascot-split { grid-template-columns: 1fr; text-align: center; }
    .mascot-selector { justify-content: center; }
}

/* ── Anchor Section ── */
.anchor-section {
    background: radial-gradient(circle at left, rgba(162, 210, 255, 0.05) 0%, transparent 50%);
}

.anchor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 8rem;
}

.anchor-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anchor-circles-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px dashed var(--glass-border);
    border-radius: 50%;
    animation: orbitRotate 20s linear infinite;
}

.orbit-mascot {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-mascot img { width: 100%; height: 100%; object-fit: contain; }

.m1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.m2 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.m3 { left: 0; top: 50%; transform: translate(-50%, -50%); }

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Counter-rotate images so they stay upright */
.orbit-mascot img {
    animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.center-mascot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 2;
}

.center-mascot img { width: 100%; height: 100%; object-fit: contain; }

.feature-list {
    list-style: none;
    margin-top: 3rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-list i {
    color: var(--accent-sky);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-list span {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.feature-list strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* ── Tada Section ── */
.tada-section {
    background: radial-gradient(circle at right, rgba(255, 183, 197, 0.05) 0%, transparent 50%);
}

.tada-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.jar-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin: 5rem 0;
}

.the-jar {
    width: 220px;
    height: 320px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 3px solid var(--glass-border);
    border-radius: 60px 60px 100px 100px;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
}

.the-jar::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: var(--glass-border);
    border-radius: 10px;
}

.jar-gems {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.gem {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.g1 { background: var(--accent-mint); }
.g2 { background: var(--accent-sky); }
.g3 { background: var(--accent-rose); }
.g4 { background: var(--accent-violet); }
.g5 { background: var(--accent-peach); }

.jar-label {
    text-align: left;
}

.jar-label p {
    background: var(--glass-bg);
    padding: 1rem 2rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    transform: rotate(-2deg);
    transition: all 0.3s;
}

.jar-label p:nth-child(2) { transform: rotate(1deg); }
.jar-label p:nth-child(3) { transform: rotate(-1deg); }

.jar-label p:hover {
    transform: scale(1.05) rotate(0deg);
    color: white;
    border-color: var(--accent-rose);
}

.tada-cta {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .anchor-grid { grid-template-columns: 1fr; text-align: center; }
    .orbit-circle { width: 300px; height: 300px; }
    .jar-display { flex-direction: column; }
    .the-jar { width: 180px; height: 260px; }
}

/* ── App Mockup ── */
.app-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    perspective: 1000px;
}

.mockup-frame {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border: 8px solid var(--glass-border);
    border-radius: 40px;
    padding: 15px;
    box-shadow: var(--glass-shadow), 0 0 50px rgba(167, 139, 255, 0.1);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-mockup:hover .mockup-frame {
    transform: rotateY(-5deg) rotateX(0deg);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #161521 0%, #0F0E17 100%);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mockup-header {
    height: 40px;
    background: var(--glass-bg);
    border-radius: 10px;
    margin-bottom: 20px;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-item {
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

/* ── Abstract Anchor Dots ── */
.orbit-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-sky);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-sky);
}

.d1 { top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--accent-sky); }
.d2 { bottom: 0; left: 50%; transform: translate(-50%, 50%); background: var(--accent-rose); }
.d3 { left: 0; top: 50%; transform: translate(-50%, -50%); background: var(--accent-mint); }

.center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-violet);
}

.center-dot i { width: 32px; height: 32px; }

/* ── Guardian System ── */
.guardian-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.guardian-card {
    text-align: left;
}

.guardian-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.guardian-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .guardian-grid { grid-template-columns: 1fr; }
}

/* ── Modal Inputs ── */
.modal-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.2rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    outline: none;
    transition: border-color 0.3s;
}

.modal-input:focus {
    border-color: var(--accent-violet);
}

.delete-form {
    margin-top: 2.5rem;
}
