:root {
    --orange: #ff6800;
    --orange-light: #ff8a32;
    --black: #060606;
    --panel: rgba(17,17,17,.82);
    --line: rgba(255,255,255,.10);
    --muted: #9a9a9a;
    --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: Inter, Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.ambient { position: fixed; z-index: -4; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.ambient-one { width: 460px; height: 460px; background: #ff5f00; opacity: .20; top: -250px; left: -210px; }
.ambient-two { width: 410px; height: 410px; background: #7d2700; opacity: .16; right: -220px; bottom: -230px; }
.grid-overlay {
    position: fixed; inset: 0; z-index: -3; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.95) 58%, transparent 100%);
}
.signal-line { position: fixed; z-index: -2; height: 1px; width: 65vw; background: linear-gradient(90deg, transparent, rgba(255,104,0,.38), transparent); opacity: .55; }
.signal-line-top { top: 12%; left: -12%; transform: rotate(-7deg); }
.signal-line-bottom { bottom: 14%; right: -14%; transform: rotate(8deg); }

.reveal { opacity: 0; transform: translateY(16px); animation: reveal .72s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal-1 { animation-delay: .08s; }.reveal-2 { animation-delay: .18s; }.reveal-3 { animation-delay: .28s; }
.reveal-4 { animation-delay: .38s; }.reveal-5 { animation-delay: .48s; }.reveal-6 { animation-delay: .58s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.home-shell { width: min(100%, 1180px); min-height: 100vh; margin: 0 auto; padding: 38px 26px 22px; display: grid; grid-template-rows: 1fr auto; }
.hero { width: min(100%, 890px); margin: auto; text-align: center; padding: 34px 24px; }
.top-label { display: inline-flex; align-items: center; gap: 12px; color: var(--orange-light); font-size: .71rem; font-weight: 900; letter-spacing: .24em; }
.top-label::before, .top-label::after { content: ""; width: 44px; height: 1px; background: linear-gradient(90deg, transparent, var(--orange)); }
.top-label::after { transform: scaleX(-1); }
.hero-logo img { width: min(100%, 470px); height: auto; display: block; margin: 30px auto 18px; filter: drop-shadow(0 0 28px rgba(255,104,0,.10)); }
.status-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px; border: 1px solid rgba(255,104,0,.25); border-radius: 999px; background: rgba(255,104,0,.07); color: #ffc29a; font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.status-dot, .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 16px var(--orange); }
.pulse-dot { animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; transform: scale(.75); } }
.hero h1 { max-width: 790px; margin: 26px auto 15px; font-size: clamp(2.35rem, 6vw, 5rem); line-height: .99; letter-spacing: -.055em; }
.home-lead { max-width: 680px; margin: 0 auto; color: #c5c5c5; font-size: clamp(1rem, 2vw, 1.16rem); line-height: 1.75; }
.service-line { margin: 26px auto 29px; display: flex; justify-content: center; align-items: center; gap: 13px; flex-wrap: wrap; color: #e4e4e4; font-size: .84rem; font-weight: 800; letter-spacing: .04em; }
.service-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.primary-button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 59px; padding: 0 27px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: white; text-decoration: none; font-weight: 900; box-shadow: 0 14px 38px rgba(255,104,0,.22); transition: transform .24s ease, box-shadow .24s ease; }
.primary-button:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 20px 48px rgba(255,104,0,.34); }
.primary-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .22s ease; }
.primary-button:hover svg { transform: translateX(4px); }
.redirect-box { width: min(100%, 490px); margin: 22px auto 0; padding: 13px 16px 15px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(10,10,10,.54); }
.redirect-copy { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 7px; color: #858585; font-size: .78rem; }
.redirect-copy strong { color: var(--orange-light); font-size: 1.05rem; }
.progress-track { height: 3px; margin-top: 11px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.07); }
.progress-track span { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange), var(--orange-light)); box-shadow: 0 0 12px rgba(255,104,0,.5); }
.site-footer { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; padding-top: 28px; color: #6e6e6e; font-size: .78rem; }
.site-footer > div { display: flex; flex-direction: column; gap: 4px; }
.site-footer strong { color: #bdbdbd; letter-spacing: .06em; }
.footer-meta { text-align: right; }

.links-shell { width: min(100%, 860px); margin: 0 auto; padding: 44px 22px 36px; }
.links-header { text-align: center; margin-bottom: 30px; }
.links-logo { display: inline-block; }
.links-logo img { width: min(100%, 330px); height: auto; display: block; margin: 0 auto 22px; filter: drop-shadow(0 0 24px rgba(255,104,0,.10)); }
.eyebrow { display: block; margin-bottom: 12px; color: var(--orange-light); font-size: .73rem; font-weight: 900; letter-spacing: .24em; }
.links-header h1 { margin: 0; font-size: clamp(2.1rem, 6vw, 3.7rem); letter-spacing: -.05em; line-height: 1.02; }
.links-header p { max-width: 590px; margin: 15px auto 0; color: var(--muted); line-height: 1.65; }
.links-grid { display: grid; gap: 13px; }
.link-card { position: relative; min-height: 96px; padding: 16px 18px; display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 17px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(22,22,22,.95), rgba(12,12,12,.95)); text-decoration: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.03); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease; }
.link-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 50%, rgba(255,104,0,.11), transparent 30%); opacity: 0; transition: opacity .24s ease; pointer-events: none; }
.link-card:hover { transform: translateY(-3px); border-color: rgba(255,104,0,.48); background: linear-gradient(145deg, rgba(30,23,18,.98), rgba(13,13,13,.98)); box-shadow: 0 16px 40px rgba(0,0,0,.28), 0 0 26px rgba(255,104,0,.07); }
.link-card:hover::before { opacity: 1; }
.link-card.featured { border-color: rgba(255,104,0,.42); background: linear-gradient(145deg, rgba(47,25,12,.94), rgba(15,15,15,.97)); }
.link-icon { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: rgba(255,104,0,.11); color: var(--orange-light); box-shadow: inset 0 0 0 1px rgba(255,104,0,.06), 0 0 0 rgba(255,104,0,0); transition: transform .24s ease, box-shadow .24s ease; }
.link-card:hover .link-icon { transform: scale(1.04); box-shadow: inset 0 0 0 1px rgba(255,104,0,.12), 0 0 22px rgba(255,104,0,.15); }
.link-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.link-icon .fill-dot { fill: currentColor; stroke: none; }
.link-content { position: relative; z-index: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.link-content small { color: var(--orange-light); font-size: .65rem; font-weight: 900; letter-spacing: .17em; }
.link-content strong { font-size: 1.12rem; }
.link-content em { color: #8f8f8f; font-size: .82rem; font-style: normal; }
.link-arrow { position: relative; z-index: 1; color: #767676; font-size: 1.35rem; transition: transform .24s ease, color .24s ease; }
.link-card:hover .link-arrow { color: var(--orange-light); transform: translate(4px,-2px); }
.link-card.disabled { opacity: .49; cursor: default; }
.link-card.disabled:hover { transform: none; border-color: var(--line); background: linear-gradient(145deg, rgba(22,22,22,.95), rgba(12,12,12,.95)); box-shadow: inset 0 1px 0 rgba(255,255,255,.03); }
.coming-soon { position: relative; z-index: 1; padding: 6px 9px; border: 1px solid var(--line); border-radius: 8px; color: #999; font-size: .61rem; font-weight: 900; letter-spacing: .09em; }
.links-footer { padding: 36px 10px 0; display: flex; flex-direction: column; align-items: center; gap: 5px; color: #717171; font-size: .78rem; text-align: center; }
.links-footer strong { color: #c0c0c0; letter-spacing: .12em; }
.links-footer small { margin-top: 4px; }

@media (max-width: 640px) {
    .home-shell { padding: 20px 14px 16px; }
    .hero { padding: 24px 4px; }
    .top-label::before, .top-label::after { width: 22px; }
    .hero-logo img { width: 300px; margin-top: 24px; }
    .hero h1 { margin-top: 23px; }
    .site-footer { flex-direction: column; align-items: center; text-align: center; }
    .footer-meta { text-align: center; }
    .links-shell { padding-top: 30px; }
    .links-logo img { width: 255px; }
    .link-card { grid-template-columns: 51px 1fr auto; gap: 13px; padding: 14px; min-height: 88px; }
    .link-icon { width: 50px; height: 50px; border-radius: 14px; }
    .link-content em { font-size: .76rem; }
    .coming-soon { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
