@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/pt-sans-400-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/pt-sans-400-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/pt-sans-700-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/pt-sans-700-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --green: #75a820;
    --green-light: #a9d668;
    --green-glow: rgba(117, 168, 32, 0.3);
    --orange: #ff5f00;
    --orange-light: #ffa500;
    --orange-glow: rgba(255, 95, 0, 0.3);
    --bg: #ffffff;
    --bg-warm: #f9f9f9;
    --card: #ffffff;
    --border: rgba(0, 0, 0, 0.06);
    --border-strong: rgba(0, 0, 0, 0.1);
    --text: #333333;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-faint: #b8b8b8;
    --shadow-card: 0 1px 2px rgba(0,0,0,0.04),
                   0 4px 8px rgba(0,0,0,0.04),
                   0 16px 32px -8px rgba(0,0,0,0.08),
                   0 32px 64px -16px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 1px 2px rgba(0,0,0,0.04),
                         0 8px 16px rgba(0,0,0,0.06),
                         0 24px 48px -8px rgba(0,0,0,0.12),
                         0 48px 80px -16px rgba(0,0,0,0.08);
    --font-display: 'PT Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'PT Sans', system-ui, -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.7s;
}

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

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--orange), var(--green));
    z-index: 9999;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 998;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    top: -180px;
    right: -150px;
    opacity: 0.08;
    animation: orbFloat1 20s ease-in-out infinite;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    bottom: 10%;
    left: -200px;
    opacity: 0.06;
    animation: orbFloat2 25s ease-in-out infinite;
}

.bg-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
    top: 60%;
    right: -100px;
    opacity: 0.05;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(25px, -20px) scale(1.08); }
    70% { transform: translate(-15px, 10px) scale(0.96); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 15px); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.anim {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-timing-function: var(--ease-out);
}

.anim-fade-up {
    animation-name: fadeInUp;
    animation-duration: var(--duration);
}

.anim-fade {
    animation-name: fadeIn;
    animation-duration: var(--duration);
}

.anim-scale {
    animation-name: scaleIn;
    animation-duration: 0.8s;
}

.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.45s; }
.d5 { animation-delay: 0.6s; }
.d6 { animation-delay: 0.75s; }
.d7 { animation-delay: 0.9s; }

.hero-section {
    position: relative;
    z-index: 1;
    padding: 150px 24px 140px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-centered {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.4rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: -2px;
    color: var(--text);
}

.hl-green {
    position: relative;
    display: inline-block;
    padding: 0 14px;
    background: var(--green);
    color: white;
    border-radius: 10px;
    transform: rotate(-2deg);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
    box-shadow: 0 4px 16px var(--green-glow);
}

.hl-green:hover {
    transform: rotate(-0.5deg) scale(1.03);
    box-shadow: 0 8px 28px var(--green-glow);
}

.hl-orange {
    position: relative;
    display: inline-block;
    padding: 0 14px;
    background: var(--orange);
    color: white;
    border-radius: 10px;
    transform: rotate(1.5deg);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
    box-shadow: 0 4px 16px var(--orange-glow);
}

.hl-orange:hover {
    transform: rotate(0.3deg) scale(1.03);
    box-shadow: 0 8px 28px var(--orange-glow);
}

.hl-green-sm {
    display: inline;
    padding: 2px 10px;
    background: var(--green);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 2px 8px var(--green-glow);
}

.hl-orange-sm {
    display: inline;
    padding: 2px 10px;
    background: var(--orange);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 2px 8px var(--orange-glow);
}

.subheadline {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.1px;
}

.content-section {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.benefit-item:last-child {
    border-bottom: none;
}

.check {
    flex-shrink: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
}

.countdown-wrapper {
    text-align: center;
    padding: 56px 24px;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.countdown-date {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.countdown-item {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white;
    border-radius: 16px;
    padding: 24px 12px 20px;
    min-width: 90px;
    box-shadow: 0 8px 24px var(--green-glow);
    transition: transform 0.3s var(--ease-spring);
}

.countdown-item:hover {
    transform: translateY(-4px) scale(1.05);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    margin-top: 8px;
    display: block;
}

.countdown-item:last-child {
    animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% { box-shadow: 0 8px 24px var(--green-glow); }
    50% { box-shadow: 0 12px 36px var(--green-glow), 0 0 20px var(--green-glow); }
}

.calendar-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--border-strong);
    background: var(--card);
    color: var(--text);
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cal-btn:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cal-btn-emoji {
    font-size: 1.1rem;
}

.floating-card {
    background: var(--card);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: var(--shadow-card);
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    border: 1px solid var(--border);
    border-left: 4px solid var(--green);
    z-index: 10;
    transition: box-shadow 0.5s ease, transform 0.5s var(--ease-out);
}

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

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--green), var(--orange));
    opacity: 0.7;
}

.float-badge {
    position: absolute;
    color: white;
    padding: 8px 18px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 11;
}

.badge-1 {
    top: -14px;
    right: -10px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    transform: rotate(4deg);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-2 {
    top: -14px;
    left: -10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    transform: rotate(-4deg);
    animation: badgeFloat 5s ease-in-out infinite 1s;
}

@keyframes badgeFloat {
    0%, 100% { transform: rotate(var(--badge-rotate, 4deg)) translateY(0); }
    50% { transform: rotate(var(--badge-rotate, 4deg)) translateY(-6px); }
}

.badge-1 { --badge-rotate: 4deg; }
.badge-2 { --badge-rotate: -8deg; }

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.input-row {
    margin-bottom: 16px;
}

.input-row label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-muted);
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1.5px solid var(--border-strong);
    background: var(--bg-warm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    transition: all 0.3s ease;
    outline: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
    color: var(--text-faint);
    font-weight: 400;
}

input[type="text"]:hover,
input[type="email"]:hover {
    border-color: var(--text-muted);
}

input[type="text"]:focus,
input[type="email"]:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px var(--green-glow),
                0 4px 12px rgba(0, 0, 0, 0.04);
}

button._submit {
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    box-shadow: 0 4px 16px var(--orange-glow);
}

button._submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

button._submit span {
    position: relative;
    z-index: 1;
}

button._submit:hover {
    animation: buttonWiggle 0.5s var(--ease-spring);
    box-shadow: 0 12px 32px var(--orange-glow),
                0 4px 12px rgba(0, 0, 0, 0.1);
}

button._submit:hover::before {
    opacity: 1;
}

button._submit:active {
    transform: scale(0.97);
    animation: none;
}

@keyframes buttonWiggle {
    0% { transform: translateY(0) rotate(0deg); }
    20% { transform: translateY(-6px) rotate(-2deg); }
    40% { transform: translateY(-3px) rotate(2deg); }
    60% { transform: translateY(-5px) rotate(-1deg); }
    80% { transform: translateY(-2px) rotate(0.5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.spam-note {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-faint);
    margin-top: 16px;
    letter-spacing: 0.2px;
}

.error-msg {
    color: #E53935;
    font-size: 0.82rem;
    font-weight: 700;
    margin-top: 6px;
    display: none;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

#scroll-animation {
    height: 200vh;
    position: relative;
    background: var(--bg);
}

.animation-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.animation-img {
    width: 80%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    will-change: transform, opacity;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    border-radius: 8px;
}

.mail-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.mail-btn {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mail-btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.success-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    border-radius: 50%;
    font-size: 2.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    box-shadow: 0 12px 28px var(--green-glow);
    animation: successPop 0.6s var(--ease-spring) forwards;
}

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

.success-card {
    text-align: center;
    padding: 56px 44px;
}

.success-card h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.success-card p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--text);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    border: 1.5px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--border-strong);
    transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
    border-color: var(--text-muted);
    color: var(--text);
    transform: translateY(-2px);
}

.footer {
    background: var(--bg);
    padding: 14px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-links span {
    color: var(--text-faint);
}

@media (max-width: 800px) {
    .hero-section {
        padding: 100px 20px 80px;
    }

    h1 {
        font-size: clamp(1.95rem, 9vw, 2.85rem);
        letter-spacing: -1px;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .content-section,
    .countdown-wrapper {
        padding: 36px 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .countdown-grid {
        gap: 10px;
    }

    .countdown-item {
        min-width: 72px;
        padding: 18px 8px 16px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .floating-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .badge-2 {
        left: -4px;
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .badge-1 {
        right: -4px;
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .animation-img {
        width: 92%;
        max-height: 70vh;
    }

    .bg-orb-1 {
        width: 350px;
        height: 350px;
        top: -100px;
        right: -120px;
    }

    .bg-orb-2 {
        width: 300px;
        height: 300px;
    }

    .bg-orb-3 {
        display: none;
    }

    .success-card {
        padding: 40px 24px;
    }

    .success-card h1 {
        font-size: 2rem;
    }

    .calendar-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cal-btn {
        justify-content: center;
        font-size: 0.9rem;
        padding: 14px 20px;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
        font-size: 2rem;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 2rem;
    }

    .floating-card {
        padding: 28px 20px;
    }

    button._submit {
        padding: 16px 20px;
        font-size: 1.1rem;
    }

    .countdown-item {
        min-width: 64px;
        padding: 14px 6px 12px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }
}
