:root {
    color-scheme: dark;
    --bg: #070706;
    --surface: #0f0d0b;
    --surface-2: #15110e;
    --text: #f8f7f5;
    --muted: #93877d;
    --muted-2: #6f655d;
    --orange: #f97316;
    --orange-2: #ff9a3d;
    --line: rgba(249, 115, 22, 0.22);
    --line-strong: rgba(249, 115, 22, 0.52);
    --white-line: rgba(255, 255, 255, 0.13);
    --radius: 22px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
        var(--bg);
    background-size: 44px 44px;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input { font: inherit; }

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle at 50% -10%, rgba(249,115,22,.09), transparent 34%),
        radial-gradient(circle at 12% 38%, rgba(249,115,22,.04), transparent 30%),
        linear-gradient(180deg, transparent, rgba(0,0,0,.48));
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.ambient {
    position: fixed;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
    opacity: .09;
    z-index: -1;
    background: var(--orange);
}
.ambient--one { left: -280px; top: 25vh; }
.ambient--two { right: -330px; top: 60vh; }

.page-shell {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.topbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand__text {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .17em;
}
.brand__text b { color: var(--orange); }

.verified {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--muted);
    background: rgba(13,11,9,.76);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
}
.verified__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 14px rgba(249,115,22,.7);
}

.hero {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 30px;
    background:
        radial-gradient(circle at 76% 15%, rgba(249,115,22,.11), transparent 31%),
        linear-gradient(135deg, rgba(20,16,13,.98), rgba(8,8,7,.98));
    box-shadow: 0 36px 90px rgba(0,0,0,.36), inset 0 1px rgba(255,255,255,.03);
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.hero::before {
    width: 360px;
    height: 360px;
    right: -100px;
    top: -160px;
    border: 1px solid rgba(249,115,22,.11);
    border-radius: 50%;
    box-shadow: 0 0 0 48px rgba(249,115,22,.025), 0 0 0 96px rgba(249,115,22,.015);
}
.hero::after {
    left: 0;
    right: 0;
    bottom: 45px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,.42), transparent);
}
.hero__noise {
    position: absolute;
    inset: 0;
    opacity: .16;
    background: repeating-linear-gradient(90deg, transparent 0 79px, rgba(249,115,22,.025) 80px);
}
.hero__content {
    position: relative;
    z-index: 2;
    min-height: 223px;
    padding: 0px 38px 20px;
    display: flex;
    align-items: center;
    gap: 26px;
}
.hero__logo-wrap {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    padding: 7px;
    border-radius: 20px;
    border: 1px solid var(--line-strong);
    background: rgba(249,115,22,.05);
    box-shadow: 0 18px 45px rgba(0,0,0,.4), 0 0 45px rgba(249,115,22,.07);
    transform: rotate(-2deg);
}
.hero__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}
.eyebrow {
    margin: 0 0 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .22em;
}
.eyebrow span {
    width: 23px;
    height: 1px;
    background: var(--orange);
    box-shadow: 0 0 10px rgba(249,115,22,.7);
}

.directory > .eyebrow {
    width: 100%;
    margin: 0 0 12px;
    display: block;
}

.directory-line {
    position: relative;
    width: 100%;
    height: 12px;
    margin: 0 0 12px;
    overflow: hidden;
}

.directory-line span {
    position: absolute;
    top: 50%;
    left: 0;

    display: block;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(249, 115, 22, 0.12) 0%,
        rgba(249, 115, 22, 0.65) 18%,
        #f97316 50%,
        rgba(249, 115, 22, 0.65) 82%,
        rgba(249, 115, 22, 0.12) 100%
    );

    box-shadow:
        0 0 5px rgba(249, 115, 22, 0.55),
        0 0 14px rgba(249, 115, 22, 0.22);

    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;

    animation:
        directory-line-open 1.1s cubic-bezier(.22, 1, .36, 1) forwards,
        directory-line-glow 3.6s ease-in-out 1.1s infinite;
}

@keyframes directory-line-open {
    from {
        transform: translateY(-50%) scaleX(0);
        opacity: 0;
    }

    to {
        transform: translateY(-50%) scaleX(1);
        opacity: 1;
    }
}

@keyframes directory-line-glow {
    0%,
    100% {
        opacity: 0.72;
        box-shadow:
            0 0 5px rgba(249, 115, 22, 0.4),
            0 0 12px rgba(249, 115, 22, 0.16);
    }

    50% {
        opacity: 1;
        box-shadow:
            0 0 7px rgba(249, 115, 22, 0.75),
            0 0 20px rgba(249, 115, 22, 0.3);
    }
}

.directory-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -25%;

    width: 22%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 185, 110, 0.2),
        rgba(255, 210, 160, 0.95),
        rgba(249, 115, 22, 0.35),
        transparent
    );

    filter: blur(1px);
    transform: translateY(-50%);
    animation: directory-line-scan 4.5s ease-in-out 1.3s infinite;
}

@keyframes directory-line-scan {
    0% {
        left: -25%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    58%,
    100% {
        left: 105%;
        opacity: 0;
    }
}

/* .directory > .eyebrow span {
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 50%, var(--orange) 100%);
    box-shadow: 0 0 10px rgba(249,115,22,.7), 0 0 22px rgba(249,115,22,.18);
} */

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 5.6vw, 70px);
    line-height: .84;
    letter-spacing: -.075em;
    font-weight: 950;
    text-transform: uppercase;
}
.hero h1 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1.5px rgba(249,115,22,.82);
    text-shadow: 0 0 30px rgba(249,115,22,.05);
}
.hero__lead {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}
.hero__meta {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    height: 46px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted-2);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 9px;
    letter-spacing: .14em;
}

.directory { padding: 15px 0 64px; }
.section-head {
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}
.section-head h2 {
    margin: 0;
    font-size: clamp(25px, 3.2vw, 38px);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 950;
}
.section-head__note {
    margin: 0 0 2px;
    color: var(--muted-2);
    font-size: 11px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}
.access-card {
    min-height: 104px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 16px 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    background:
        linear-gradient(130deg, rgba(249,115,22,.025), transparent 42%),
        linear-gradient(180deg, rgba(21,17,14,.94), rgba(12,11,9,.96));
    box-shadow: inset 0 1px rgba(255,255,255,.025), 0 15px 45px rgba(0,0,0,.13);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s, background .35s;
}
.access-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(249,115,22,.13), transparent 35%);
    transition: opacity .35s;
}
.access-card::after {
    content: "";
    position: absolute;
    width: 58px;
    height: 58px;
    right: -30px;
    top: -30px;
    border: 1px solid rgba(249,115,22,.25);
    transform: rotate(45deg);
    transition: transform .35s, border-color .35s;
}
.access-card:hover,
.access-card:focus-visible {
    outline: none;
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(249,115,22,.05), inset 0 1px rgba(255,255,255,.045);
    background: linear-gradient(130deg, rgba(249,115,22,.06), transparent 45%), linear-gradient(180deg, #17120f, #0e0c0a);
}
.access-card:hover::before,
.access-card:focus-visible::before { opacity: 1; }
.access-card:hover::after,
.access-card:focus-visible::after { transform: rotate(45deg) translate(-7px, 7px); border-color: rgba(249,115,22,.6); }
.access-card__scan {
    position: absolute;
    top: 0;
    left: -40%;
    width: 32%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
}
.access-card:hover .access-card__scan,
.access-card:focus-visible .access-card__scan {
    opacity: 1;
    animation: scan 1.15s ease forwards;
}
@keyframes scan { to { left: 112%; } }
.access-card__top,
.access-card__bottom,
.access-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.access-card__index {
    color: var(--orange);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}
.access-card__status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted-2);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .17em;
}
.access-card__status i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px rgba(249,115,22,.75);
}
.access-card__body { margin: 8px 0 7px; }
.access-card h3 {
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: clamp(17px, 1.65vw, 23px);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 950;
    text-transform: uppercase;
}
.access-card__arrow {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--orange);
    font-size: 16px;
    transition: transform .35s, background .35s, border-color .35s;
}
.access-card:hover .access-card__arrow,
.access-card:focus-visible .access-card__arrow {
    transform: translate(3px, -3px);
    border-color: var(--line-strong);
    background: rgba(249,115,22,.08);
}
.access-card__bottom {
    padding-top: 7px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.access-card__host {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--muted);
    font-size: 11px;
}
.access-card__open {
    flex: 0 0 auto;
    color: var(--muted-2);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
}


.footer {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.065);
    color: var(--muted-2);
    font-size: 9px;
    letter-spacing: .1em;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 780px) {
    .page-shell { width: min(calc(100% - 24px), var(--max)); }
    .topbar { min-height: 64px; }
    .brand__text { display: inline; font-size: 11px; }
    .verified { padding: 0 12px; letter-spacing: .11em; }
    .hero { min-height: 350px; border-radius: 23px; }
    .hero__content {
        min-height: 304px;
        padding: 22px 20px 18px;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }
    .hero__logo-wrap { width: 68px; height: 68px; flex-basis: 68px; border-radius: 17px; }
    .hero__logo { border-radius: 14px; }
    .hero h1 { font-size: clamp(40px, 12vw, 58px); }
    .hero__meta { padding: 0 16px; }
    .hero__meta span:nth-child(2) { display: none; }
    .directory { padding: 34px 0 50px; }
    .section-head { align-items: flex-start; flex-direction: column; gap: 12px; }
    .section-head__note { display: none; }
    .links-grid { grid-template-columns: 1fr; }
    .access-card { min-height: 100px; padding: 12px 15px 11px; }
    .footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
}

@media (max-width: 430px) {
    .verified { font-size: 8px; }
    .hero { min-height: 334px; }
    .hero__content { min-height: 288px; }
    .hero h1 { font-size: 39px; }
    .hero__lead { font-size: 13px; }
    .access-card__open { 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; }
    [data-reveal] { opacity: 1; transform: none; }
}
