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

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f2efea;
    overflow: hidden;
}

.bg {
    position: fixed;
    inset: 0;
    background-color: #f2efea;
    background-image:
        radial-gradient(circle, rgba(106, 205, 115, 0.22) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(99, 149, 184, 0.12) 1px,   transparent 1px);
    background-size: 30px 30px, 15px 15px;
    background-position: 0 0, 7.5px 7.5px;
    opacity: 0;
    animation: bgFade 1.6s ease 0.2s forwards;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(242, 239, 234, 0.6) 100%);
}

.accent-line-left {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #6acd73, #6395b8);
    opacity: 0;
    animation: slideInLeft 0.9s ease 0.8s forwards;
}

.accent-line-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #6acd73, #6395b8);
    opacity: 0;
    animation: slideInTop 0.9s ease 0.8s forwards;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 28px;
    max-width: 1500px;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeUp 0.9s ease 0.4s forwards;
}

.logo-wrap {
    margin-bottom: 20px;
}

.logo-wrap img {
    max-width: 240px;
    margin: 0 auto;
    display: block;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #6acd73, #6395b8);
    margin: 0 auto 36px;
    border-radius: 2px;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 45px;
    letter-spacing: 0.04em;
    color: #4d4d4d;
    line-height: 1;
    margin-bottom: 24px;
}

p {
    font-size: 1rem;
    line-height: 1.85;
    color: #4d4d4d;
    font-weight: 400;
    max-width: 560px;
    margin: 0 auto 20px;
}

.enter-btn {
    display: block;
    position: relative;
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 100px;
    margin: 0 auto;
    margin-top: 20px;
    cursor: pointer;
    color: #4d4d4d;
    transition: all 0.5s;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.18em;
}

.enter-btn span {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.5s;
    border: 1px solid rgba(26, 26, 26, 0.3);
    background-color: rgba(26, 26, 26, 0.05);
}

.enter-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.5s;
    border: 1px solid rgba(26, 26, 26, 0.3);
    background-color: rgba(26, 26, 26, 0.05);
}

.enter-btn:hover::before {
    transform: rotate(-45deg);
    background-color: rgba(26, 26, 26, 0);
}

.enter-btn:hover::after {
    transform: rotate(45deg);
    background-color: rgba(26, 26, 26, 0);
}

.enter-btn img{
    width: 30px;
    height: auto;
    animation: rotateTooth 3s linear infinite;
}

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

.corner-tag {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.35);
    opacity: 0;
    animation: fadeUp 0.9s ease 1.2s forwards;
}

body.exit {
    animation: pageExit 0.6s ease forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bgFade {
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: scaleY(0); transform-origin: top; }
    to   { opacity: 1; transform: scaleY(1); }
}

@keyframes slideInTop {
    from { opacity: 0; transform: scaleX(0); transform-origin: left; }
    to   { opacity: 1; transform: scaleX(1); }
}

@keyframes pageExit {
    to { opacity: 0; transform: scale(1.03); }
}

@media (max-width: 480px) {
    .logo-wrap img {
        max-width: 180px;
    }
}

/* ============================================================
   STICKY CTA BAR
============================================================ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #1a2b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 14px 28px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.sticky-bar.hidden {
    transform: translateY(100%);
}

.sticky-bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-bar-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
}

.sticky-bar-sub {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    color: #6acd73;
    font-weight: 400;
}

.sticky-bar-sub a {
    color: #6acd73;
    text-decoration: none;
    transition: color 0.2s;
}

.sticky-bar-sub a:hover { color: #8ddea4; }

.sticky-bar-sub .bar-divider { color: rgba(255,255,255,0.3); }

.sticky-bar-sub svg {
    width: 14px;
    height: 14px;
    stroke: #6acd73;
    flex-shrink: 0;
}

.sticky-bar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-bar-btn {
    display: inline-block;
    padding: 9px 22px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.sticky-bar-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

.sticky-bar-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color 0.2s;
}

.sticky-bar-close:hover { color: #fff; }

.sticky-bar-close svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 700px) {
    .sticky-bar {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 20px;
        text-align: center;
    }
    .sticky-bar-sub { justify-content: center; }
}
