/* =============================
   RESET & BASE
============================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Space Mono', 'Courier New', monospace;
    line-height: 1.7;
    color: #1a1a1a;
    background: #cfc5ae;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}

/* =============================
   NAVBAR
============================= */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 999;
    padding: 0.9rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #cfc5ae;
    border-bottom: 2px solid #b5a892;
    transition: box-shadow 0.3s;
}
.navbar.scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.navbar .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.navbar .logo span { color: #e8612c; }
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #e8612c;
    transition: width 0.2s;
}
.nav-links a:hover { color: #e8612c; }
.nav-links a:hover::after { width: 100%; }

/* =============================
   HERO
============================= */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    background: #cfc5ae;
    position: relative;
    padding: 7rem 2.5rem 4rem;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b5a892' fill-opacity='0.3'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    animation: heroFadeIn 0.8s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
    display: inline-block;
    background: #e8612c;
    color: #fff;
    padding: 0.25rem 0.9rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.hero h1 .accent { color: #e8612c; }
.hero p {
    font-size: 0.92rem;
    color: #5a4e3c;
    margin-bottom: 2.2rem;
    max-width: 520px;
    line-height: 1.9;
}

/* Decorative orbs (subtle warm blobs) */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
    animation: floatOrb 12s ease-in-out infinite alternate;
    pointer-events: none;
}
.orb1 { width: 380px; height: 380px; background: #e8612c; top: -80px; right: 5%; animation-duration: 14s; }
.orb2 { width: 300px; height: 300px; background: #b5a892; bottom: 0;  left: 10%; animation-duration: 10s; }
.orb3 { width: 200px; height: 200px; background: #e8612c; top: 40%; left: 40%; animation-duration: 16s; }
@keyframes floatOrb {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(30px,40px) scale(1.1); }
}

/* =============================
   BUTTON
============================= */
.btn {
    display: inline-block;
    background: #e8612c;
    color: #fff;
    padding: 0.9rem 2.4rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid #e8612c;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
}
.btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }

/* =============================
   SECTIONS COMMON
============================= */
section { padding: 5rem 2.5rem; }
.section-tag {
    display: inline-block;
    background: #e8612c;
    color: #fff;
    padding: 0.2rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
section h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.section-sub {
    text-align: center;
    color: #6b5e4c;
    font-size: 0.85rem;
    margin-bottom: 3rem;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* =============================
   PLANS SECTION
============================= */
#plans { background: #bfb49e; }
.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card — Stasis-style: image on top, info below */
.plan-card {
    background: #f5f0e8;
    border: 2px solid #1a1a1a;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0 #1a1a1a;
}

/* Icon banner — mimics the image area in project cards */
.plan-card .icon-area {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 2px solid #1a1a1a;
}
.plan-card.normal .icon-area  { background: #d4edda; }
.plan-card.anger .icon-area   { background: #fddede; }
.plan-card.drama .icon-area   { background: #ede0f5; }
.plan-card.breakup .icon-area { background: #ddeeff; }
.plan-card.moveon .icon-area  { background: #d4f5ef; }

.plan-card .card-body { padding: 1.1rem 1.2rem 0.5rem; }
.plan-card .price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8612c;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.plan-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.45rem;
}
.plan-card p {
    font-size: 0.78rem;
    color: #6b5e4c;
    line-height: 1.6;
}
.plan-card .card-footer {
    padding: 0.8rem 1.2rem;
    border-top: 1px solid #d4c9b6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.plan-card .card-footer .btn {
    font-size: 0.68rem;
    padding: 0.4rem 1rem;
}
.plan-card .entry-count {
    display: none; /* hide label to reduce spacing */
    font-size: 0.7rem;
    color: #9a8a78;
}

/* =============================
   REVIEWS SECTION
============================= */
#reviews { background: #cfc5ae; }
.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.review-card {
    background: #f5f0e8;
    border: 2px solid #1a1a1a;
    border-radius: 0;
    width: 280px;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}
.review-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0 #1a1a1a;
}
.review-card .review-top {
    padding: 1.3rem 1.3rem 1rem;
    border-bottom: 1px solid #d4c9b6;
}
.review-card .avatar {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    margin-bottom: 0.8rem;
    background: #e8e0d0;
    border: 2px solid #1a1a1a;
    text-align: center;
}
.review-card p {
    font-size: 0.82rem;
    color: #3a3028;
    font-style: italic;
    line-height: 1.7;
}
.review-card .review-bottom {
    padding: 0.75rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-card .name {
    font-size: 0.72rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stars {
    color: #e8612c;
    font-size: 0.82rem;
    letter-spacing: 1px;
}

/* =============================
   TRUST SECTION
============================= */
#trust {
    background: #1a1a1a;
    text-align: center;
}
#trust h2 { color: #f5f0e8; }
#trust .section-sub { color: #9a8a78; }
.trust-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}
.badge {
    background: transparent;
    border: 2px solid #f5f0e8;
    padding: 1rem 1.8rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 0.78rem;
    color: #f5f0e8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.badge:hover {
    background: #e8612c;
    border-color: #e8612c;
    transform: translateY(-3px);
}

/* =============================
   FOOTER
============================= */
footer {
    background: #f5f0e8;
    color: #1a1a1a;
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: 2px solid #1a1a1a;
}
.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
}
.footer-logo span { color: #e8612c; }
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.2rem;
}
.footer-links a {
    color: #6b5e4c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-links a:hover { color: #e8612c; }
footer p { font-size: 0.72rem; color: #9a8a78; letter-spacing: 0.5px; }

/* SESSION DETAIL MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #f5f0e8;
    padding: 2rem;
    border: 2px solid #1a1a1a;
    width: 90%;
    max-width: 420px;
    text-align: left;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 0.4rem;
    right: 0.6rem;
    font-size: 1.4rem;
    cursor: pointer;
}
.modal-content h3 {
    margin-top: 0;
}
.modal-action {
    margin-top: 1.5rem;
    text-align: center;
}
.modal-action .btn {
    background: #e8612c;
    color: #fff;
    padding: 0.7rem 1.8rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.modal-action .btn:hover {
    background: #1a1a1a;
}

/* discord dm payment link styling */
.dm-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a8017; /* deep green */
    background: #d4f5df;
    padding: 0.4rem 0.8rem;
    border: 2px solid #1a8017;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.dm-link:hover {
    background: #1a8017;
    color: #fff;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
    .hero { text-align: center; padding: 6rem 1.5rem 3rem; justify-content: center; }
    .hero p { margin-inline: auto; }
    .hero h1 { font-size: 1.8rem; }
    .nav-links { display: none; }
    .plans-container { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
    .reviews-container, .trust-container { flex-direction: column; align-items: center; }
    section { padding: 3.5rem 1.2rem; }
}

