/* ============================================
   AnonDirect Claymorphism — Common
   ============================================ */
:root {
    --bg: #FBF2EA;
    --card: #FFFFFF;
    --ink: #5B4A42;
    --ink-soft: #8A7266;
    --ink-muted: #B09A8D;
    --mint: #B8E6D9;
    --mint-deep: #2E7D6B;
    --lavender: #D9D2F0;
    --lavender-deep: #6C5FA8;
    --peach: #FFD9C2;
    --peach-deep: #E0784A;
    --pink: #F5A8C0;
    --radius: 30px;
    --clay-shadow: 14px 14px 28px rgba(174, 142, 122, 0.22),
                   inset -6px -6px 14px rgba(174, 142, 122, 0.08),
                   inset 6px 6px 14px rgba(255, 255, 255, 0.9);
    --clay-shadow-hover: 20px 20px 38px rgba(174, 142, 122, 0.28),
                   inset -6px -6px 14px rgba(174, 142, 122, 0.08),
                   inset 6px 6px 14px rgba(255, 255, 255, 0.9);
    --font-rounded: ui-rounded, "Hiragino Maru Gothic ProN", Quicksand, Comfortaa, "Segoe UI", -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-rounded);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Background blobs ---- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    z-index: -1;
    pointer-events: none;
    animation: blobFloat 9s ease-in-out infinite;
}

.blob-mint {
    width: 380px;
    height: 380px;
    top: -80px;
    left: -100px;
    background: var(--mint);
}

.blob-lavender {
    width: 340px;
    height: 340px;
    top: 45vh;
    right: -120px;
    background: var(--lavender);
    animation-delay: 2.5s;
}

.blob-peach {
    width: 300px;
    height: 300px;
    top: 100vh;
    left: 8vw;
    background: var(--peach);
    animation-delay: 5s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(24px, -30px) scale(1.06);
    }
}

/* ---- Clay card ---- */
.clay-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--clay-shadow);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.clay-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--clay-shadow-hover);
}

.card-mint {
    background: linear-gradient(160deg, #FFFFFF 30%, var(--mint) 160%);
}

.card-lavender {
    background: linear-gradient(160deg, #FFFFFF 30%, var(--lavender) 160%);
}

.card-peach {
    background: linear-gradient(160deg, #FFFFFF 30%, var(--peach) 160%);
}

/* ---- Section label ---- */
.section-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint-deep);
    background: rgba(184, 230, 217, 0.4);
    border-radius: 999px;
    padding: 7px 18px;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--ink-soft);
    font-size: 1.06rem;
    max-width: 620px;
    margin: 0 auto;
}

/* ---- Squishy word ---- */
.squishy-word {
    display: inline-block;
    background: linear-gradient(135deg, var(--mint-deep), var(--lavender-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: squish 4s ease-in-out infinite;
}

@keyframes squish {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--mint-deep);
    color: #fff;
    box-shadow: 8px 8px 18px rgba(46, 125, 107, 0.35),
                inset 3px 3px 8px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 12px 12px 24px rgba(46, 125, 107, 0.4),
                inset 3px 3px 8px rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 4px 4px 10px rgba(46, 125, 107, 0.3),
                inset 3px 3px 8px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
    box-shadow: 8px 8px 18px rgba(174, 142, 122, 0.22),
                inset 3px 3px 8px rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(1px) scale(0.97);
}

.btn-large {
    padding: 17px 46px;
    font-size: 1.06rem;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 26px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    box-shadow: 10px 10px 22px rgba(174, 142, 122, 0.2),
                inset 4px 4px 10px rgba(255, 255, 255, 0.9);
}

.nav-logo img {
    height: 52px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-soft);
    border-radius: 999px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--ink);
    background: rgba(184, 230, 217, 0.35);
}

.nav-link.active {
    color: var(--mint-deep);
    background: rgba(184, 230, 217, 0.45);
}

.nav-link.cta-btn {
    background: var(--mint-deep);
    color: #fff;
    margin-left: 12px;
    box-shadow: 5px 5px 12px rgba(46, 125, 107, 0.32),
                inset 2px 2px 6px rgba(255, 255, 255, 0.28);
}

.nav-link.cta-btn:hover {
    background: #27685A;
    color: #fff;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    border-radius: 50%;
    background: rgba(184, 230, 217, 0.4);
}

.nav-toggle .bar {
    width: 20px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Footer ---- */
.footer {
    padding: 70px 0 0;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    max-width: 320px;
}

.footer-section h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    margin-bottom: 16px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--ink-soft);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--mint-deep);
}

.footer-bottom {
    border-top: 2px dashed rgba(176, 154, 141, 0.35);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--ink-muted);
    font-size: 0.84rem;
}

/* ---- Entrance animation ---- */
.fade-in-up {
    animation: fadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 84px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 26px;
        padding: 18px 22px 22px;
        gap: 6px;
        box-shadow: var(--clay-shadow);
        transform: translateY(-14px) scale(0.98);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 12px 16px;
    }

    .nav-link.cta-btn {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
