/* ==========================================================================
   OFFKAY VARIANT 2 LANDING PAGE (MATCHING UPLOADED DESIGN MOCKUP)
   ========================================================================== */

:root {
    --color-black: #0A0A0A;
    --color-black-card: #141414;
    --color-white: #FFFFFF;
    --color-fern: #A5B86A;
    --color-chalk: #F5F2EB;
    --color-border: #E5E5E5;
    --color-muted: #6B6B6B;
    --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--color-black);
    font-family: var(--font-family);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    background-color: var(--color-black);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo Styles */
.nav-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.nav-brand-link:hover .brand-logo-img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: #A3A3A3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--color-white);
}

.btn-fern-pill {
    background-color: var(--color-fern);
    color: var(--color-black);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-fern-pill:hover {
    background-color: #97AA5B;
    transform: translateY(-1px);
}

/* Hero Section (Dark Theme with Fainter, Larger 80px Fern Green Gridline Overlay) */
.hero-section {
    background-color: var(--color-black);
    padding: 60px 0 90px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Fainter & Larger 80px Brand Green Gridline Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(165, 184, 106, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(165, 184, 106, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.opening-tag {
    color: var(--color-fern);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-align: left;
}

.hero-h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 63px;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 640px;
    text-align: left;
}

.hero-desc {
    font-size: 18px;
    color: #A3A3A3;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 540px;
    text-align: left;
}

.hero-bullets {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
    color: #737373;
    padding-top: 0;
    border-top: none;
    text-align: left;
}

.hero-bullets strong {
    color: var(--color-white);
}

.dot-sep {
    color: #404040;
}

/* Waitlist Card Form (White Card) */
.waitlist-card {
    background-color: var(--color-white);
    color: var(--color-black);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    display: block;
    margin-bottom: 6px;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.card-sub {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 24px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.form-field label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-black);
}

.form-input {
    background-color: var(--color-white);
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 14px;
    color: var(--color-black);
    outline: none;
    width: 100%;
}

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

.chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip-btn {
    background-color: #F5F5F5;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    padding: 6px 12px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: #525252;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip-btn.active {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.btn-black-full {
    background-color: var(--color-black);
    color: var(--color-white);
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.2s ease;
}

.btn-black-full:hover {
    background-color: #262626;
}

.form-disclaimer {
    font-size: 11px;
    color: var(--color-muted);
    text-align: center;
    margin-top: 10px;
}

/* Marquee Ticker */
.marquee-ticker {
    background-color: var(--color-fern);
    color: var(--color-black);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content span {
    margin: 0 10px;
}

.sep {
    color: rgba(0, 0, 0, 0.4);
}

/* Section Shared Styling */
.section {
    padding: 90px 0;
}

.section-meta {
    margin-bottom: 48px;
    max-width: 680px;
}

.section-tag-sm {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.tag-fern {
    color: var(--color-fern);
}

.section-title-lg {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-desc-lg {
    font-size: 16px;
    color: var(--color-muted);
}

.text-white { color: var(--color-white); }
.text-muted { color: #A3A3A3; }

/* The Problem Section (Chalk) */
.problem-section {
    background-color: var(--color-chalk);
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
}

.card-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-muted);
    display: block;
    margin-bottom: 16px;
}

.problem-card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.problem-card-desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.5;
}

/* What's Inside Section (White) */
.inside-section {
    background-color: var(--color-white);
}

.cards-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.inside-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.inside-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-black);
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--color-chalk);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--color-black);
}

.inside-card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.inside-card-desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Reputation Section (Dark Theme with Faint Green Gridlines) */
.reputation-section {
    background-color: var(--color-black);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.reputation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(165, 184, 106, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(165, 184, 106, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.reputation-section .container {
    position: relative;
    z-index: 1;
}

.levels-grid-10 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.level-box {
    background-color: #141414;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.level-box:hover,
.level-box.active-level {
    border-color: var(--color-fern);
    background-color: #1C2417;
    transform: translateY(-2px);
}

.lvl-num {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-fern);
    display: block;
    margin-bottom: 6px;
}

.lvl-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-white);
}

/* Before We Go Live Section (Chalk) */
.launch-section {
    background-color: var(--color-chalk);
}

.launch-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
}

.launch-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.launch-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #404040;
}

.check-icon {
    color: var(--color-fern);
    font-weight: 800;
    font-size: 16px;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 48px 0;
    border-top: 1px solid #262626;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-tagline {
    font-size: 13px;
    color: #737373;
    margin-top: 10px;
}

.footer-right {
    font-size: 13px;
    color: #737373;
}

/* Modal Popup */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}

.modal-backdrop.active { display: flex; }

.modal-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 36px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-icon { font-size: 40px; margin-bottom: 12px; }

.spot-highlight { color: var(--color-fern); font-weight: 800; }

.ref-box { text-align: left; margin: 20px 0; }
.ref-box label { font-size: 12px; font-weight: 700; display: block; margin-bottom: 6px; }
.copy-row { display: flex; gap: 8px; }

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    text-decoration: none;
    display: inline-block;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
}

.w-full { width: 100%; }

/* Mobile Queries */
@media (max-width: 992px) {
    .hero-grid, .launch-grid { grid-template-columns: 1fr; }
    .cards-grid-3, .cards-grid-6 { grid-template-columns: 1fr; }
    .levels-grid-10 { grid-template-columns: repeat(2, 1fr); }
    .nav-menu { display: none; }
    .hero-h1 { font-size: 40px; line-height: 44px; }
}
