@font-face {
    font-family: 'Bebas Neue';
    src: url('assets/fonts/bebas-neue-v16-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('assets/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('assets/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('assets/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('assets/fonts/dm-sans-v17-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --pw: #a5b4f0;
    --pw-light: #d4dcf8;
    --pw-dark: #7a8fd8;
    --coal: #2d2d3c;
    --coal-light: #3e3e52;
    --coal-mid: #4a4a65;
    --off: #f4f6ff;
    --white: #fff;
    --teal: #1ec8a0;
    --gold: #c8963a;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --text-s: rgba(240, 240, 245, 0.52);
}


/* Top Navigation Bar */
.nav-links a:hover {
    color: var(--pw-light);
}

.nav-shop-btn:hover {
    background: var(--pw-light);
    color: var(--coal) !important;
    transform: translateY(-1px);
}


.ham.open .ham-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.ham.open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ham.open .ham-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile navigation */

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 9vw, 54px);
    font-weight: 300;
    color: var(--text-s);
    text-decoration: none;
    padding: 12px 0;
    letter-spacing: .03em;
    transition: color .2s;
}

.mobile-nav a:hover {
    color: var(--pw-dark);
}


/* Hero Section */
.hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -80px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(165, 180, 240, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.hero>div:first-child {
    z-index: 2;
}

.btn-primary:hover {
    background: var(--pw-light);
    transform: translateY(-2px);
}

.btn-ghost:hover {
    border-color: var(--pw);
    color: var(--pw-light);
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(165, 180, 240, 0.12) 0%, transparent 70%);
}

.bottle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32%;
    width: 36%;
    height: 100%;
    background: linear-gradient(180deg, rgba(165, 180, 240, 0.14) 0%, transparent 75%);
}

.bottle-ring {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(165, 180, 240, 0.08);
}


/* Stats Section */

.stats-strip {
    background: var(--pw);
    color: var(--coal);
    padding: 22px 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 0.05em;
    text-align: center;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}


/* About Section */

.about {
    padding: 100px 5%;
    background: var(--off);
    color: var(--coal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #505fa0;
    margin-bottom: 14px;
}

.about-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.93;
    margin-bottom: 22px;
}

.about-body {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 18px;
}


/* SVGs */
.about-svgs {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.svg-pillar {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border-radius: 16px;
    padding: 22px 20px;
    border: 1px solid rgba(165, 180, 240, 0.25);
}

.svg-pillar svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pillar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--coal);
    margin-bottom: 4px;
}

.pillar-desc {
    font-size: 13px;
    color: var(--coal-mid);
    line-height: 1.55;
}


/* Why Drizzle */

.section-label-light {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pw);
    margin-bottom: 14px;
    display: block;
}

.section-title-light {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.93;
    color: var(--white);
    margin-bottom: 52px;
    max-width: 520px;
}


/* Community Section */

.community {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--coal) 100%);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(165, 180, 240, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.community-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.community-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(25px, 3.75vw, 45px);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 22px;
}

.community-quote span {
    color: var(--pw);
}

.community-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 32px;
}

.community-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perk {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(165, 180, 240, 0.07);
    border: 1px solid rgba(165, 180, 240, 0.13);
    border-radius: 14px;
    padding: 18px 20px;
}

.perk svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.perk-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.perk-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.43);
}


/* Events Section */
.events {
    padding: 100px 5%;
    background: var(--off);
    color: var(--coal);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 46px;
}

.phase-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(165, 180, 240, 0.2);
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.phase-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--coal);
    margin-bottom: 8px;
}

.phase-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--coal);
    margin-bottom: 10px;
}

.phase-desc {
    font-size: 14px;
    color: var(--coal-light);
    line-height: 1.6;
}

.phase-card--soon {
    border: 1px dashed rgba(165, 180, 240, 0.35);
    background: rgba(165, 180, 240, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.soon-icon {
    margin-bottom: 4px;
}

.soon-title {
    color: rgba(45, 45, 60, 0.67) !important;
}

.soon-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #576cb5;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.soon-link:hover {
    color: var(--coal);
}


/* Contact Section */

.contact {
    padding: 100px 5%;
    background: var(--coal);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-inner .section-title-light {
    max-width: 400px;
}

.contact-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.75;
    margin-bottom: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form button {
    align-self: flex-start;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(165, 180, 240, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.form-input:focus {
    border-color: var(--pw);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-msg {
    font-size: 12px;
    color: var(--teal);
    min-height: 18px;
}


/* Shop Section */

.shop-soon-strip {
    background: #35354a;
    padding: 80px 5%;
    border-top: 1px solid rgba(165, 180, 240, 0.12);
    border-bottom: 1px solid rgba(165, 180, 240, 0.06);
}

.shop-soon-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.shop-soon-left {
    flex: 1;
    min-width: 200px;
}

.shop-soon-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
}

.shop-soon-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(45px, 8vw, 96px);
    line-height: 0.92;
    color: var(--white);
    margin: 10px 0 0;
}

.shop-soon-headline span {
    color: var(--pw);
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}

.cd-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 6vw, 96px);
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
}

.cd-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pw-light);
}

.cd-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    color: var(--pw);
    line-height: 1;
    margin-bottom: 22px;
    opacity: 0.5;
}

.cd-launched {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--teal);
    letter-spacing: 0.06em;
}

/* Notify button states */
.shop-soon-cta {
    font-size: 14px;
    padding: 14px 30px;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        opacity 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.shop-soon-cta.is-loading {
    opacity: 0.92;
}

.dots {
    display: inline-flex;
    margin-left: 4px;
}

.dots span {
    animation: blink 1.4s infinite;
    font-size: 18px;
    line-height: 1;
    white-space: pre;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {

    0%,
    80%,
    100% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }
}


.shop-soon-cta.is-success {
    background: var(--gold);
    color: var(--white);
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(165, 180, 240, 0.3);
    animation: successSlideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes successSlideIn {
    0% {
        transform: translateY(4px);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-1px);
        opacity: 1;
    }
}

.success-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

/* Checkmark fades in first */
.checkmark {
    font-size: 13px;
    opacity: 0;
    animation: checkFade 0.25s ease 0.1s forwards;
    color: var(--teal);
}

@keyframes checkFade {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Text slides in after checkmark */
.success-text {
    animation: textSlideIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-6px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Single clean shine sweep */
.shop-soon-cta.is-success .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    animation: shineSweep 0.7s ease 0.35s forwards;
    pointer-events: none;
    z-index: 0;
}

@keyframes shineSweep {
    0% { left: -100%; }
    100% { left: 160%; }
}


.shop-soon-cta.is-error {
    background: #2a2a2a;
    color: white;
}


.shop-soon-cta:disabled {
    opacity: 0.85;
    transform: none !important;
}


/* Footer */

footer {
    background: #16161f;
    padding: 36px 5%;
    border-top: 1px solid rgba(165, 180, 240, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--pw-light);
    letter-spacing: 0.1em;
}

.footer-brand sup {
    font-size: 10px;
    vertical-align: top;
    margin-top: 5px;
    display: inline-block;
}

.footer-copy {
    font-size: 13px;
    color: var(--pw-light);
}

.socials {
    display: flex;
    gap: 10px;
}

.soc {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(165, 180, 240, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: rgba(165, 180, 240, 0.5);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.soc a {
    display: flex;
    align-items: center;
}

.soc img {
    width: 34px;
    height: 34px;
}

.soc:hover {
    border-color: var(--pw);
    color: var(--pw-light);
}




@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 5%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 48px;
    }

    .bottle {
        width: 240px;
        height: 380px;
    }

    .bottle-glow {
        width: 260px;
        height: 260px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .community-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .nav-links {
        display: none;
    }

    .ham {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

@media(max-width: 700px) {
    .shop-soon-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 36px;
    }

    .shop-soon-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .shop-soon-right {
        align-items: center;
        width: 100%;
    }

    .headline-break {
        display: none;
    }

    .shop-soon-headline {
        white-space: nowrap;
    }

    .cd-block {
        min-width: 60px;
    }
}


@media(max-width:600px) {
    nav {
        padding: 0 4% 0 3%;
    }

    .nav-logo {
        height: 35px;
        width: auto;
    }

    .hero {
        padding: 50px 4%;
    }

    .stats-strip {
        gap: 12px;
        padding: 18px 4%;
    }

    .stats-strip>div:last-child {
        display: none;
    }

    .stat-num {
        font-size: 24px;
    }

    .about,
    .community,
    .events,
    .contact {
        padding: 72px 4%;
    }

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

    .hero-headline {
        font-size: clamp(50px, 14vw, 80px);
    }

    .bottle {
        width: 200px;
        height: 310px;
        border-radius: 52px 52px 40px 40px;
    }

    .btn-primary,
    .btn-ghost {
        padding: 12px 22px;
        font-size: 13px;
    }

    footer {
        padding: 28px 4%;
    }
}

@media(max-width:380px) {
    .hero-headline {
        font-size: clamp(44px, 16vw, 70px);
    }
}