/* Wrap Street — Static site styles */

:root {
    --brand-navy: #04122e;
    --brand-navy-2: #071b45;
    --brand-ink: #0a0f1c;
    --brand-lime: #b4ff29;
    --brand-lime-2: #d3ff5c;
    --brand-silver: #c7cdd6;
    --brand-white: #ffffff;

    --font-display: "Anton", "Impact", sans-serif;
    --font-body: "Manrope", system-ui, -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", monospace;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--brand-navy);
    color: var(--brand-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--brand-lime);
    color: var(--brand-navy);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* Grain overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* --------- LAYOUT --------- */
.container-x {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section {
    position: relative;
    width: 100%;
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .section {
        padding: 9rem 3rem;
    }
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}
.grid-3 {
    grid-template-columns: 1fr;
}
.grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-10 {
    gap: 2.5rem;
}

/* --------- TYPOGRAPHY --------- */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brand-lime);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--brand-lime);
    display: inline-block;
}

.display-h1 {
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 10vw, 10rem);
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
}

.display-h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.display-h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 0.75rem;
}

.text-lime {
    color: var(--brand-lime);
}
.mono {
    font-family: var(--font-mono);
}
.chapter-num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(199, 205, 214, 0.6);
    text-transform: uppercase;
}
.lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 600px;
    line-height: 1.7;
}

/* --------- BUTTONS --------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    background: var(--brand-lime);
    color: var(--brand-navy);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--brand-lime-2);
}
.btn-primary .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-navy);
    animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    color: var(--brand-white);
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.35s ease;
    background: transparent;
    cursor: pointer;
}
.btn-ghost:hover {
    border-color: var(--brand-lime);
    color: var(--brand-lime);
    transform: translateY(-2px);
}

/* --------- NAVBAR --------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 10px 24px;
    transition: all 0.35s ease;
}

.navbar.scrolled {
    backdrop-filter: blur(18px) saturate(1.4);
    background: rgba(4, 18, 46, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand-logo img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
    mix-blend-mode: screen;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    border-radius: 999px;
    transition: color 0.35s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--brand-lime);
}

.nav-cta {
    margin-left: 12px;
    padding: 12px 22px !important;
    font-size: 12px !important;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: white;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
}
.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--brand-lime);
    display: inline-block;
}

@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--brand-navy);
    padding: 120px 24px 24px;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.mobile-menu.open {
    transform: translateY(0);
}
.mobile-menu a:not(.btn-primary) {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 1.05;
    padding: 8px 0;
}

/* --------- HERO --------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        radial-gradient(
            1200px 600px at 80% 10%,
            rgba(180, 255, 41, 0.1),
            transparent 60%
        ),
        var(--brand-navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) contrast(1.05) saturate(1.05);
    animation: heroZoom 24s ease-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 18, 46, 0.35) 0%,
        rgba(4, 18, 46, 0.55) 40%,
        var(--brand-navy) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 8rem 1.5rem 6rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 10rem 3rem 6rem;
    }
}

.hero-status {
    position: absolute;
    top: 8rem;
    left: 1.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.8;
}
.hero-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-lime);
    box-shadow: 0 0 12px var(--brand-lime);
}

.hero-index {
    position: absolute;
    top: 8rem;
    right: 3rem;
    z-index: 3;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    opacity: 0.6;
}
@media (min-width: 900px) {
    .hero-index {
        display: flex;
    }
    .hero-status {
        left: 3rem;
    }
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Reveal animations (line by line) */
.reveal-line {
    display: block;
    overflow: hidden;
}
.reveal-line span {
    display: inline-block;
    transform: translateY(110%) rotate(3deg);
    animation: reveal 1s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}
.reveal-line.d1 span {
    animation-delay: 0.2s;
}
.reveal-line.d2 span {
    animation-delay: 0.35s;
}
.reveal-line.d3 span {
    animation-delay: 0.5s;
}
.reveal-line.d4 span {
    animation-delay: 0.65s;
}
@keyframes reveal {
    to {
        transform: translateY(0) rotate(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.9s cubic-bezier(0.2, 0.9, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.fade-up.in {
    opacity: 1;
    transform: translateY(0);
}

/* --------- MARQUEE --------- */
.marquee {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(
        180deg,
        rgba(180, 255, 41, 0.03),
        transparent
    );
}
.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}
.marquee-item {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(3rem, 9vw, 7.5rem);
    line-height: 1;
    margin: 0 2rem;
    display: inline-flex;
    align-items: center;
    gap: 2rem;
}
.marquee-item.outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--brand-lime);
}
.marquee-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-lime);
    display: inline-block;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* --------- CARDS / SECTIONS --------- */
.card {
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0)
    );
    transition: border-color 0.35s ease;
}
.card:hover {
    border-color: rgba(180, 255, 41, 0.35);
}

.spot-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--brand-navy-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 1.5rem;
}
.stat .k {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: var(--brand-lime);
    line-height: 1;
}
.stat .v {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Service row */
.svc-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
    .svc-row {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .svc-row.reverse .svc-media {
        order: 2;
    }
}
.svc-media {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
}
.svc-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 18, 46, 0.15) 0%,
        rgba(4, 18, 46, 0.55) 100%
    );
}
.svc-media .tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    background: var(--brand-lime);
    color: var(--brand-navy);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.25em;
    padding: 6px 14px;
    border-radius: 999px;
}
.svc-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}
.svc-copy .row-head {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.svc-copy .row-head .line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}
.svc-copy .lede {
    color: var(--brand-lime);
    font-size: 1.15rem;
    margin: 0 0 1rem;
}
.svc-copy p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 32rem;
}

/* CTA panel */
.cta-panel {
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(
            600px 300px at 20% 20%,
            rgba(180, 255, 41, 0.16),
            transparent 60%
        ),
        linear-gradient(135deg, #071b45, #04122e);
}
@media (min-width: 768px) {
    .cta-panel {
        padding: 5rem 4rem;
    }
}

/* --------- CHIPS (service area) --------- */
.chip {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 8px 8px 0;
}

/* --------- FOOTER --------- */
.footer {
    background: var(--brand-ink);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6rem 1.5rem 2.5rem;
}
@media (min-width: 768px) {
    .footer {
        padding: 6rem 3rem 2.5rem;
    }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}
.footer-logo img {
    height: 140px;
    width: auto;
    margin-bottom: 2rem;
    mix-blend-mode: screen;
}
.footer-hours {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 12px;
    opacity: 0.8;
    padding: 3px 0;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}
.social-pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.2em;
    transition: color 0.3s;
}
.social-pill:hover {
    color: var(--brand-lime);
}
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
}

/* --------- CONTACT-SPECIFIC --------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 7fr 5fr;
    }
}
.info-card {
    background: rgba(7, 27, 69, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}
.form-wrap {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1rem;
}
.form-wrap iframe {
    width: 100%;
    height: 880px;
    border: none;
    border-radius: 6px;
    display: block;
}
.map-wrap {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.9);
}
.map-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--brand-lime);
    color: var(--brand-navy);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.2em;
    padding: 8px 16px;
    border-radius: 999px;
}

/* Utilities */
.mt-6 {
    margin-top: 1.5rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-10 {
    margin-top: 2.5rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.mb-16 {
    margin-bottom: 4rem;
}
.text-center {
    text-align: center;
}
