*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #060e09;
    --surface: #0a1510;
    --surface2: #0f1d14;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #0d6140;
    --accent-light: #12a86e;
    --accent-glow: #1eff9c;
    --accent2: #0a4a30;
    --accent3: #f59e0b;
    --text: #e4ede8;
    --muted: #5e7a6a;
    --font-display: "Instrument Serif", serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- NOISE OVERLAY ---- */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
    background: rgba(6, 14, 9, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.3px;
    color: var(--text);
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 6px;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
}

.nav-cta:hover {
    opacity: 0.85;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 5% 5rem;
    position: relative;
    overflow: hidden;
}

/* grid background */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 97, 64, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 97, 64, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

/* glow orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(13, 97, 64, 0.15);
    top: -100px;
    left: -150px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(10, 74, 48, 0.18);
    bottom: -50px;
    right: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(30, 255, 156, 0.05);
    top: 40%;
    left: 60%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 97, 64, 0.15);
    border: 1px solid rgba(13, 97, 64, 0.4);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(
        135deg,
        var(--accent-light),
        var(--accent-glow)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0;
}

.hero-sub {
    max-width: 560px;
    margin: 1.5rem auto 0;
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(13, 97, 64, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

/* ---- TIMER MOCKUP ---- */
.hero-mockup {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    width: 100%;
    max-width: 880px;
    animation: fadeUp 0.8s ease 0.4s both;
}

.mockup-window {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) {
    background: #ff5f57;
}

.mockup-dot:nth-child(2) {
    background: #febc2e;
}

.mockup-dot:nth-child(3) {
    background: #28c840;
}

.mockup-title {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    font-family: var(--font-body);
    font-weight: 500;
}

.mockup-body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.room-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    transition: border-color 0.2s;
}

.room-card.active {
    border-color: rgba(13, 97, 64, 0.6);
    background: rgba(13, 97, 64, 0.07);
}

.room-card.active .timer {
    color: var(--accent);
}

.room-card.warning {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.04);
}

.room-card.warning .timer {
    color: var(--accent3);
}

.room-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.room-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.timer {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--muted);
}

.timer-status {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted);
    margin-right: 4px;
    vertical-align: middle;
}

.active .status-dot {
    background: var(--accent-glow);
    animation: pulse 1.5s ease infinite;
}

.warning .status-dot {
    background: var(--accent3);
}

/* ---- STATS BAR ---- */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 0 5%;
    animation: fadeUp 0.7s ease 0.5s both;
}

.stat-item {
    flex: 1;
    min-width: 160px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text), var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number span {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.3rem;
    font-weight: 300;
}

/* ---- SECTION COMMON ---- */
section {
    padding: 6rem 5%;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 520px;
    font-weight: 300;
    line-height: 1.7;
}

/* ---- FEATURES ---- */
.features {
    background: var(--surface);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header .section-sub {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.feat-card {
    background: var(--surface);
    padding: 2rem 1.8rem;
    transition: background 0.2s;
}

.feat-card:hover {
    background: var(--surface2);
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.feat-card:nth-child(1) .feat-icon {
    background: rgba(0, 229, 255, 0.1);
}

.feat-card:nth-child(2) .feat-icon {
    background: rgba(124, 58, 237, 0.12);
}

.feat-card:nth-child(3) .feat-icon {
    background: rgba(245, 158, 11, 0.1);
}

.feat-card:nth-child(4) .feat-icon {
    background: rgba(16, 185, 129, 0.1);
}

.feat-card:nth-child(5) .feat-icon {
    background: rgba(239, 68, 68, 0.1);
}

.feat-card:nth-child(6) .feat-icon {
    background: rgba(0, 229, 255, 0.1);
}

.feat-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.feat-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    font-weight: 300;
}

/* ---- VENUES ---- */
.venues-section {
    background: var(--bg);
}

.venues-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.venue-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.venue-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1rem;
    border-left: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.venue-item:hover,
.venue-item.sel {
    border-left-color: var(--accent-light);
    background: rgba(13, 97, 64, 0.07);
}

.venue-emoji {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.venue-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
}

.venue-desc {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 300;
}

.venue-preview {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.venue-preview-head {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.venue-preview-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
}

.venue-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
}

.venue-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s ease infinite;
}

.venue-preview-body {
    padding: 1.5rem;
}

.big-timer {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: -1.5px;
    text-align: center;
    padding: 1.2rem 0;
}

.venue-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--muted);
}

.venue-info-val {
    color: var(--text);
    font-weight: 500;
}

.venue-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.btn-sm {
    flex: 1;
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
}

.btn-sm-accent {
    background: var(--accent);
    color: #fff;
}

.btn-sm-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
}

/* ---- PRICING ---- */
.pricing-section {
    background: var(--surface);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.pricing-header .section-sub {
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    position: relative;
    transition: border-color 0.2s;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card.popular {
    border-color: var(--accent);
    background: rgba(13, 97, 64, 0.06);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
}

.price-plan {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

.price-amount {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0.8rem 0 0.3rem;
}

.price-amount sub {
    font-size: 1rem;
    vertical-align: middle;
    font-weight: 400;
    color: var(--muted);
}

.price-period {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.price-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 300;
}

.price-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 800;
    flex-shrink: 0;
}

.price-features li.off::before {
    content: "×";
    color: rgba(255, 255, 255, 0.15);
}

.price-features li.off {
    opacity: 0.4;
}

.btn-plan {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-plan-accent {
    background: var(--accent);
    color: #fff;
}

.btn-plan-accent:hover {
    box-shadow: 0 0 25px rgba(13, 97, 64, 0.5);
    transform: translateY(-1px);
}

.btn-plan-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-plan-ghost:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

/* ---- TESTIMONIALS ---- */
.testi-section {
    background: var(--bg);
}

.testi-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.testi-stars {
    color: var(--accent3);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-body);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testi-biz {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ---- CTA ---- */
.cta-section {
    padding: 6rem 5%;
    text-align: center;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 60% at 50% 50%,
        rgba(13, 97, 64, 0.12) 0%,
        transparent 70%
    );
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 400;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    margin-bottom: 1.2rem;
}

.cta-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-note {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    color: var(--muted);
    position: relative;
    z-index: 1;
}

/* ---- FOOTER ---- */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 3rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
}

.footer-brand span {
    color: var(--accent);
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
    }

    .venues-layout {
        grid-template-columns: 1fr;
    }

    .stat-item {
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
