:root {
    --primary: #22c55e;
    --bg: #050807;
    --bg-soft: #0c1110;
    --card: #101715;
    --ink: #effff3;
    --muted: #8ea596;
    --line: #22362b;
    --ring: rgba(34, 197, 94, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background:
            radial-gradient(900px 400px at 80% -10%, rgba(34,197,94,0.2), transparent 65%),
            radial-gradient(600px 300px at 10% 0%, rgba(34,197,94,0.12), transparent 70%),
            var(--bg);
    overflow-x: hidden;
}

.layout{
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
a{
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
}

a:not(.btn-primary):not(.btn-secondary):hover {
    color: var(--primary);
    transition: color 180ms ease;
}

figure{
    margin: 0;
}

.container {
    max-width: 820px;
    margin: 0 auto;
    #margin-left: 50px;
    padding: 3rem 1.5rem;
    font-size: 1.0rem
}

.display { font-family: 'Oswald', system-ui, sans-serif; letter-spacing: 0.02em; }

.noise::before {
    content: none;
}

.ticker-line {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(34,197,94,0.08), rgba(34,197,94,0.02), rgba(34,197,94,0.08));
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: move 24s linear infinite;
    will-change: transform;
    contain: content;
    transform: translate3d(0, 0, 0);
}

.ticker-set {
    display: flex;
    flex-shrink: 0;
    gap: 2rem;
    white-space: nowrap;
    color: #9fc6ab;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.65rem 0;
    padding-right: 2rem;
}

@keyframes move {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }
}

.orb {
    position: absolute;
    border: 1px solid rgba(34,197,94,0.35);
    border-radius: 999px;
    filter: blur(0.2px);
    animation: bob 10s ease-in-out infinite;
    display: none;
}

.orb.one { width: 280px; height: 280px; top: 8%; left: -70px; }
.orb.two { width: 180px; height: 180px; top: 58%; right: 6%; animation-delay: 2s; }
.orb.three { width: 420px; height: 420px; top: -90px; right: -120px; animation-delay: 4s; }

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

nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 8, 7, 0.92);
    border-bottom: 1px solid var(--line);
}

.menu-toggle {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.55rem;
    border: 1px solid #2b4436;
    background: rgba(14, 24, 19, 0.88);
    color: #d9f4e4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    border-color: var(--primary);
    color: #f2fff6;
    background: rgba(34, 197, 94, 0.14);
}

.mobile-menu {
    border-top: 1px solid #274032;
    background: rgba(8, 13, 11, 0.96);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease;
}

.mobile-menu.open {
    max-height: 420px;
    opacity: 1;
}

.mobile-menu a {
    display: block;
    padding: 0.85rem 0;
    color: #ffffff;
    border-bottom: 1px dashed #263d31;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.btn-primary,
.btn-secondary {
    border-radius: 0.65rem;
    font-weight: 700;
    transition: 220ms ease;
}

.btn-primary {
    background: var(--primary);
    color: #031007;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.35);
}

.btn-primary:hover {
    color: #031007;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px -8px rgba(34,197,94,0.65);
}

.btn-secondary {
    border: 1px solid #2e473a;
    color: #dff5e7;
    background: rgba(14, 22, 18, 0.7);
}

.btn-secondary:hover {
    color: #dff5e7;
    border-color: var(--primary);
    background: rgba(34,197,94,0.1);
    transform: translateY(-2px);
}

.hero-grid {
    background-image:
            linear-gradient(to right, rgba(34,197,94,0.06) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(34,197,94,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1920&q=80'); */
    background-image: url('../assets/stock-bg.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: grayscale(0%);
    pointer-events: none;
}

.glass {
    background: linear-gradient(135deg, rgba(20, 30, 26, 0.8), rgba(16, 24, 20, 0.65));
    border: 1px solid #2a3e33;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.feature {
    border-radius: 1rem;
    border: 1px solid #263c31;
    background: linear-gradient(165deg, #0f1714, #101b17);
    transition: 260ms ease;
}

.feature-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #8cf0ae;
    flex: 0 0 auto;
}

.feature:hover {
    transform: translateY(-6px);
    border-color: #3a5a48;
    box-shadow: 0 18px 36px -18px var(--ring);
}

.section-title { line-height: 0.95; }

.shot {
    border-radius: 1rem;
    border: 3px solid #3a4a42;
    background: #1a2420;
    overflow: hidden;
    box-shadow: 0 18px 35px -24px rgba(0,0,0,0.85);
    transition: 260ms ease;
}

.shot:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: #4a6154;
    box-shadow: 0 24px 45px -24px rgba(0,0,0,0.95);
}

.shot.dark-ss {
    border-color: #252f2a;
    background: #0a0f0c;
}

.shot.dark-ss:hover {
    border-color: #344039;
}

.shot img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
}

.shot.dark-ss img {
    filter: invert(90%) hue-rotate(180deg) brightness(0.8) contrast(1.2);
}

.media-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.media-slider::-webkit-scrollbar { height: 8px; }
.media-slider::-webkit-scrollbar-thumb {
    background: #2b4638;
    border-radius: 999px;
}

.slide {
    flex: 0 0 82%;
    scroll-snap-align: center;
}

.slider-wrap {
    position: relative;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    border: 1px solid #355947;
    background: rgba(8, 14, 11, 0.82);
    color: #c8eed6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: 180ms ease;
    cursor: pointer;
}

.slider-btn:hover {
    border-color: var(--primary);
    background: rgba(34, 197, 94, 0.2);
    color: #f1fff5;
}

.slider-btn.prev { left: 0.35rem; }
.slider-btn.next { right: 0.35rem; }

@media (max-width: 640px) {
    .slide { flex-basis: 88%; }
    .slider-btn {
        width: 2rem;
        height: 2rem;
    }
    .slider-btn.prev { left: 0.2rem; }
    .slider-btn.next { right: 0.2rem; }
}

@media (min-width: 1024px) {
    .media-slider {
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .media-slider.grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .media-slider.grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .slide {
        flex: initial;
    }
    .slider-btn {
        display: none;
    }
}

.pin {
    color: #0d1a13;
    background: var(--primary);
    font-weight: 800;
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    display: inline-block;
}

.cta {
    border-radius: 1.25rem;
    border: 1px solid #335846;
    background:
            radial-gradient(350px 180px at 100% 0%, rgba(34,197,94,0.18), transparent),
            linear-gradient(140deg, #0f1915 10%, #13231c 75%);
    overflow: hidden;
    position: relative;
}

.cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px dashed rgba(34,197,94,0.4);
    top: -70px;
    right: -70px;
    animation: spin 16s linear infinite;
    will-change: transform;
}

@keyframes spin { to { transform: rotate(360deg); } }

.reveal { opacity: 1; transform: translateY(0); }
.d1, .d2, .d3, .d4 { }

@keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
}

.footer-shell {
    background:
            radial-gradient(500px 220px at 0% 0%, rgba(34,197,94,0.12), transparent 65%),
            linear-gradient(180deg, #0b110f 0%, #0a0f0d 100%);
    border-top: 1px solid #2a4134;
}

.footer-brand {
    border: 1px solid #294234;
    background: linear-gradient(145deg, rgba(17,26,22,0.92), rgba(12,19,16,0.9));
    border-radius: 0.9rem;
}

.footer-links a {
    color: #b8d1c2;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: #f3fff7;
}

.footer-note {
    border-top: 1px solid #243a2f;
    color: #89a293;
}

/* Utility Classes */
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-90 { max-width: 90%; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-6 { padding-top: .5rem; padding-bottom: .4rem; padding-left: 1.5rem; padding-right: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.p-5 { padding: 1.25rem; }
.p-1 { padding: 0.25rem; }
.pt-20 { padding-top: 5rem; }
.pb-16 { padding-bottom: 4rem; }
.pt-5 { padding-top: 1.25rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-12 { margin-top: 3rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-3 { margin-bottom: 0.75rem; }
.w-9 { width: 2.25rem; }
.h-9 { height: 2.25rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-fit { width: fit-content; }
.w-auto { width: auto; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-items-end { justify-items: end; }
.justify-between { justify-content: space-between; }
.gap-2\.5 { gap: 0.625rem; }
.gap-4 { gap: 1rem; }
.gap-2 { gap: 0.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-3 { gap: 0.75rem; }
.flex-col { flex-direction: column; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-\[3\.1rem\] { font-size: 3.1rem; line-height: 1; }
.text-\[6\.2rem\] { font-size: 6.2rem; line-height: 1; }
.text-\[\#d4ebdc\] { color: #d4ebdc; }
.text-\[\#b4c9bc\] { color: #b4c9bc; }
.text-\[\#8ab49a\] { color: #8ab49a; }
.text-\[\#9eb4a6\] { color: #9eb4a6; }
.text-\[\#9cb4a5\] { color: #9cb4a5; }
.text-\[\#9eb3a6\] { color: #9eb3a6; }
.text-\[\#9fd1b1\] { color: #9fd1b1; }
.text-\[\#b5ccb9\] { color: #b5ccb9; }
.text-\[\#93ad9f\] { color: #93ad9f; }
.tracking-\[0\.12em\] { letter-spacing: 0.12em; }
.tracking-wide { letter-spacing: 0.025em; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.rounded-md { border-radius: 0.375rem; }
.rounded-2xl { border-radius: 1rem; }
.bg-white { background-color: #fff; }
.text-white { color: #fff; }
.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.space-y-16 > * + * { margin-top: 4rem; }
.hover\:text-white:hover { color: #fff; }
.hover\:text-\[#22c55e\]:hover { color: #22c55e; }

@media (max-width: 640px) {
    .sm\:inline { display: inline; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:inline-flex { display: inline-flex; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-\[6\.2rem\] { font-size: 6.2rem; line-height: 1; }
    .md\:pt-28 { padding-top: 7rem; }
    .md\:pb-24 { padding-bottom: 6rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:p-6 { padding: 1.5rem; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:col-span-3 { grid-column: span 3 / span 3; }
    .md\:justify-items-end { justify-items: end; }
}

@media (min-width: 1024px) {
    .lg\:grid { display: grid; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
    .xl\:block { display: block; }
}

@media (max-width: 768px) {
    .section-title { line-height: 1.02; }
    .orb,
    .ticker-track {
        animation: none;
    }
    .text-5xl { font-size: 2.5rem; }
    .text-4xl { font-size: 2rem; }
}