
:root {
    --cream:  #fdf6ed;
    --black:  #1a1208;
    --gold:   #FFD700;
    --accent: #c63717;
    --blue:   #0085cf;
    --muted:  #554433;
    --white:  #ffffff;
    --border: rgba(0,0,0,0.07);
}

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

body {
    background-color: var(--cream);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.03) 39px, rgba(0,0,0,0.03) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.03) 39px, rgba(0,0,0,0.03) 40px);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}



/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 18px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(253,246,237,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-cta {
    background: var(--black) !important;
    color: var(--cream) !important;
    padding: 9px 22px;
    border-radius: 100px;
    font-weight: 700 !important;
    font-size: 13px !important;
}

.nav-cta:hover { opacity: 0.8 !important; color: var(--cream) !important; }

/* HERO */
.hero {
    min-height: calc(100vh - 42.5px);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 48px 80px;
    overflow: hidden;
}

.hero-map {
    position: absolute;
    inset: 0;
    background-image: url('/map-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.75;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 28px;
}

.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink 2s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: var(--black);
}

h1 em {
    font-style: italic;
    color: var(--accent);
    position: relative;
}

h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.35;
}

.hero-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--black);
}

.pill i { font-size: 11px; }
.pill.gold { background: var(--gold); border-color: transparent; color: black; }
.pill.accent { background: var(--accent); border-color: transparent; color: white; }
.pill.blue { background: var(--blue); color: white; border-color: transparent; }
.pill.dark { background: var(--black); color: var(--cream); border-color: transparent; }

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--cream);
    padding: 15px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.hero-cta-arrow {
    background: var(--accent);
    color: var(--white);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* PHONE */
.hero-phone {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-outer {
    width: 270px;
    height: 568px;
    background: #181818;
    border-radius: 32px;
    padding: 12px;
    box-shadow:
        0 0 0 1px #3a3a3a,
        0 0 0 3px #111,
        0 40px 80px rgba(0,0,0,0.2),
        0 20px 40px rgba(0,0,0,0.12);
    position: relative;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.phone-outer::before {
    content: '';
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 68px; height: 20px;
    background: #181818;
    border-radius: 0 0 13px 13px;
    z-index: 10;
}

.phone-screen {
    width: 100%; height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #b8c8a0;
}

.reel-preview {
    width: 100%; height: 100%;
    background: linear-gradient(170deg, #c4d4a8 0%, #98b880 35%, #7aa068 100%);
    display: flex;
    flex-direction: column;
    padding: 20px 13px 14px;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.reel-preview::before {
    content: '';
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 26px, rgba(255,255,255,0.07) 26px, rgba(255,255,255,0.07) 27px),
        repeating-linear-gradient(90deg, transparent, transparent 26px, rgba(255,255,255,0.07) 26px, rgba(255,255,255,0.07) 27px);
    pointer-events: none;
}

.reel-badge {
    background: rgba(255,255,255,0.97);
    border-radius: 7px;
    border-left: 4px solid var(--accent);
    padding: 7px 9px;
    font-size: 10px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative; z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.reel-item {
    background: rgba(255,255,255,0.94);
    border-radius: 7px;
    border-left: 4px solid var(--blue);
    padding: 6px 9px;
    font-size: 9.5px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; z-index: 1;
    box-shadow: 0 1px 5px rgba(0,0,0,0.08);
}

.reel-item.top { border-left-color: var(--accent); background: #fffdf0; }
.reel-star { color: var(--blue); font-size: 10px; font-weight: 800; }
.reel-item.top .reel-star { color: #c49000; }

.reel-photo {
    margin-top: auto;
    height: 115px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4a5a3a, #2a3a4a);
    position: relative; z-index: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    opacity: 0.85;
}

.reel-cta-bar {
    background: rgba(255,255,255,0.95);
    border-radius: 7px;
    border-left: 4px solid var(--blue);
    padding: 6px 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.reel-cta-left { font-size: 8px; font-weight: 600; color: #666; }
.reel-cta-center { font-size: 11px; font-weight: 900; color: #1a1a1a; }
.reel-cta-right { font-size: 8px; font-weight: 800; color: var(--blue); text-align: right; line-height: 1.3; }

/* TAG STRIP */
.tag-strip {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 13px 0;
    background: rgba(0,0,0,0.025);
}

.tag-track {
    display: flex;
    animation: scroll 35s linear infinite;
    white-space: nowrap;
}

.tag-track span {
    padding: 0 22px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-right: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag-track span.gold { color: var(--accent); }
.tag-track span.blue { color: var(--blue); }

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* SECTIONS */
.section {
    padding: 96px 48px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 30px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 4vw, 50px);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 14px;
}

.section-sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 52px;
    line-height: 1.75;
}


/* SECTION BACKGROUNDS -- full width */
.section-alt {
    background-color: #f0e8d8;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.025) 39px, rgba(0,0,0,0.025) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.025) 39px, rgba(0,0,0,0.025) 40px);
}

.section-dark {
    background-color: var(--accent);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.06) 39px, rgba(0,0,0,0.06) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.06) 39px, rgba(0,0,0,0.06) 40px);
    color: var(--cream);
}

.section-dark h2 { color: var(--white); }
.section-dark .section-label { color: var(--gold); }
.section-dark .section-sub { color: rgba(253,246,237,1); }
.section-dark .price-name { color: rgba(253,246,237,1); }
.section-dark .price-period { color: rgba(253,246,237,1); }
.section-dark .price-features li { color: rgba(253,246,237,1); }
.section-dark .price-card { background: rgba(205,79,58,1); border-color: rgba(255,255,255,0.15); color: var(--cream); position: relative; z-index: 1; }
.section-dark .price-card:hover { background: rgba(215,89,68,1); }
.section-dark .price-card.featured { background: var(--gold); color: var(--black); border-color: transparent; }
.section-dark .price-card.featured .price-name { color: rgba(26,18,8,0.5); }
.section-dark .price-card.featured .price-period { color: rgba(26,18,8,1); }
.section-dark .price-card.featured .price-features li { color: rgba(26,18,8,0.75); }
.section-dark .price-btn { border-color: rgba(255,255,255,0.3); color: var(--white); }
.section-dark .price-card.featured .price-btn { background: var(--black); color: white; border-color: transparent; }
.section-dark .price-badge { background: var(--gold); color: var(--black); }

/* TWO MODES */
.modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 52px;
}

.mode-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.mode-card.auto { border-top: 4px solid var(--blue); }
.mode-card.custom { border-top: 4px solid var(--accent); }

.mode-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mode-card.auto .mode-tag { color: var(--blue); }
.mode-card.custom .mode-tag { color: var(--accent); }

.mode-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.mode-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mode-example {
    background: var(--cream);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    border-left: 3px solid var(--border);
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: rgba(85,68,51,0.8);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -3px;
}

.step-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.step-icon.gold { background: #fde8d8; color: var(--accent); }
.step-icon.blue { background: #EBF5FC; color: var(--blue); }
.step-icon.green { background: #F0FFF4; color: #22c55e; }

.step h3 {
    font-family: 'Syne', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.step p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* CATEGORIES */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.cat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    transition: all 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.cat-card:hover {
    background: #fffbf0;
    border-color: rgba(198,55,23,0.25);
    transform: translateY(-1px);
}

.cat-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: #fde8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 15px;
    flex-shrink: 0;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.price-daily {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-dark .price-card .price-daily { color: var(--gold); }
.section-dark .price-card.featured .price-daily { color: var(--black); }

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.price-card.featured {
    background: var(--gold);
    border-color: transparent;
    color: var(--black);
}

.price-badge {
    position: absolute;
    top: -12px; left: 28px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 1px;
}

.price-name {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--muted);
}

.price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 4px;
}

.price-amount sup { font-size: 22px; letter-spacing: 0; vertical-align: super; }

.price-period {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.price-features li {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
}

.price-features li i {
    font-size: 12px;
    width: 14px;
}

.price-btn {
    display: block;
    text-align: center;
    padding: 17px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 21px;
    text-decoration: none;
    border: 1.5px solid var(--border);
    color: var(--black);
    transition: all 0.2s;
}

.price-card.featured .price-btn {
    background: var(--accent);
    color: white;
    border-color: transparent;
}

.price-btn:hover { opacity: 0.8; }

/* DIVIDER */
hr { border: none; border-top: 1px solid var(--border); margin: 0 48px; }

/* FOOTER */
footer {
    background-color: var(--accent);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.06) 39px, rgba(0,0,0,0.06) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.06) 39px, rgba(0,0,0,0.06) 40px);
    border-top: none;
}

footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
}

.footer-logo span { color: var(--gold); }

.footer-by {
    font-size: 14px;
    color: rgba(253,246,237,1);
    margin-top: 4px;
    font-family: 'DM Mono', monospace;
}

.footer-by a { color: rgba(253,246,237,1); text-decoration: none; }
.footer-by a:hover { color: var(--white); }

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(253,246,237,1);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

        /* RESPONSIVE -- mobile */
@media (max-width: 768px) {

    nav {
        padding: 14px 20px;
    }

    .nav-links a:not(.nav-cta) { display: none; }

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 20px 60px;
        text-align: center;
    }

    .hero-map { opacity: 0.5; }

    .hero-eyebrow { margin: 0 auto 24px; }

    h1 { letter-spacing: -2px; }

    .hero-sub { margin: 0 auto 28px; }

    .hero-pills { justify-content: center; }

    .hero-phone { display: none; }

    .tag-strip { display: none; }

    .section { padding: 64px 20px; }

    .section-label { font-size: 18px; }

    h2 { letter-spacing: -1.5px; }

    .modes { grid-template-columns: 1fr; }

    .steps { grid-template-columns: 1fr; }

    .cat-grid { grid-template-columns: 1fr; }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .section-dark .price-card.featured {
        margin-top: 10px;
    }
    footer .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 32px 20px;
    }

    .footer-links { justify-content: center; flex-wrap: wrap; }
}