@font-face {
    font-family: "SM";
    src: url("../sm.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --page-bg: #000000;
    --paper: #111111;
    --text-main: #f6efe8;
    --text-muted: #c29a79;
    --line-soft: rgba(255, 136, 51, 0.18);
    --accent: #ff7a1a;
    --accent-soft: #ffb06a;
    --accent-deep: #5b2200;
    --font-sans: "Google Sans Flex", "Open Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --font-serif: "SM", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-size: 14px;
    font-family: var(--font-sans);
    background: var(--page-bg);
    color: var(--text-main);
}

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

button {
    font: inherit;
}

.page-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 26px 28px 34px;
    background: var(--page-bg);
    border-radius: 0;
    box-shadow: none;
}

.site-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-size: 1.42rem;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.header-tools {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.nav-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 20px 34px;
}

.nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.9;
}

.nav-list-strong {
    font-family: var(--font-sans);
    color: var(--text-main);
    font-weight: 500;
}

.nav-link {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--accent-soft);
}

.menu-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    font-family: var(--font-sans);
    border: 1px solid rgba(255, 138, 61, 0.22);
    border-radius: 999px;
    background: rgba(255, 122, 26, 0.06);
    color: var(--text-main);
    font-size: 0.78rem;
    cursor: pointer;
}

.hero-section {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 70px 0 60px;
}

.eyebrow {
    margin: 0 0 18px;
    font-family: var(--font-sans);
    color: var(--accent-soft);
    font-size: 0.5rem;
    font-weight: 450;
    letter-spacing: -0.04em;
}

.hero-section h1 {
    margin: 0;
    max-width: 900px;
    font-family: var(--font-serif);
    font-size: clamp(2.85rem, 5.8vw, 5.1rem);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -0.015em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

.page-intro {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 70px 0 34px;
}

.page-intro .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-intro h1 {
    margin: 0;
    max-width: 960px;
    font-family: var(--font-serif);
    font-size: clamp(2.85rem, 5.4vw, 4.9rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.015em;
}

.page-lead {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.page-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.secondary-link {
    color: var(--accent-soft);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
}

.metric-card {
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 138, 61, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 122, 26, 0.1), rgba(255, 122, 26, 0.02));
}

.metric-card strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.42rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.metric-card span {
    display: block;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.inner-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
    gap: 12px;
}

.content-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.inner-card {
    padding: 22px;
    border: 1px solid rgba(255, 138, 61, 0.14);
    border-radius: 8px;
    background: #0d0d0d;
}

.inner-card:nth-child(3) {
    grid-column: 1 / -1;
}

.card-kicker,
.panel-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: var(--accent-soft);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.inner-card h2,
.inner-panel h2,
.detail-card h3,
.cta-band h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.inner-card h2,
.inner-panel h2,
.cta-band h2 {
    font-size: 1.9rem;
    line-height: 1.04;
}

.detail-card h3 {
    font-size: 1.38rem;
    line-height: 1.1;
}

.inner-card p,
.inner-panel p,
.detail-card p,
.cta-band p {
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.inner-panel {
    padding: 24px;
    border: 1px solid rgba(255, 138, 61, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 122, 26, 0.08), rgba(17, 17, 17, 0.94));
}

.panel-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.panel-list li {
    padding: 0 0 12px;
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 138, 61, 0.12);
}

.panel-list li + li {
    margin-top: 12px;
}

.detail-section {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.detail-card {
    padding: 22px;
    border: 1px solid rgba(255, 138, 61, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.01);
}

.cta-band {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 138, 61, 0.16);
    border-radius: 8px;
    background: linear-gradient(115deg, rgba(38, 17, 5, 0.64) 0%, rgba(122, 47, 0, 0.4) 38%, rgba(255, 122, 26, 0.14) 100%);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 9px 16px;
    font-family: var(--font-sans);
    border: 1px solid rgba(255, 138, 61, 0.22);
    border-radius: 999px;
    background: rgba(255, 122, 26, 0.06);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
}

.support-copy {
    margin: 0;
    display: grid;
    gap: 3px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.support-copy strong {
    font-family: var(--font-serif);
    color: var(--accent-soft);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.showcase-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 0.95fr 1.55fr;
    gap: 12px;
}

.showcase-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 8px;
    background: #101010;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    min-width: 44px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 170, 102, 0.45);
    background: rgba(255, 122, 26, 0.14);
    color: rgba(255, 231, 214, 0.96);
    font-size: 0.85rem;
    text-align: center;
    backdrop-filter: blur(18px);
}

.photo-card {
    background: #170d07;
}

.card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) brightness(0.82);
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 7, 3, 0.08) 10%, rgba(119, 53, 8, 0.2) 62%, rgba(4, 3, 2, 0.88) 100%);
}

.card-content {
    position: absolute;
    inset: auto 20px 22px 20px;
    z-index: 2;
}

.avatar-row {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.avatar-row img {
    width: 34px;
    height: 34px;
    border: 2px solid rgba(255, 214, 183, 0.8);
    border-radius: 50%;
    object-fit: cover;
}

.avatar-row img + img {
    margin-left: -10px;
}

.card-copy h2 {
    margin: 0 0 14px;
    max-width: 220px;
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 194, 145, 0.96);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-card {
    padding: 74px 18px 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
        linear-gradient(140deg, #3c1200 0%, #a83f00 45%, #ff7a1a 100%);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.28) 0 1px,
            rgba(255, 255, 255, 0) 1px 8px
        );
    opacity: 0.42;
    mix-blend-mode: screen;
}

.feature-visual {
    position: absolute;
    inset: 24px 0 auto 0;
    height: 150px;
    transform: perspective(420px) rotateX(12deg);
}

.feature-block {
    position: absolute;
    filter: blur(0.2px);
}

.feature-block-large {
    top: 18px;
    left: 40%;
    width: 130px;
    height: 140px;
    background: linear-gradient(180deg, rgba(255, 212, 182, 0.76), rgba(255, 255, 255, 0.16));
    clip-path: polygon(18% 0, 100% 12%, 100% 100%, 0 85%, 0 20%);
}

.feature-block-small {
    top: 32px;
    left: 18%;
    width: 95px;
    height: 84px;
    background: linear-gradient(180deg, rgba(255, 193, 109, 0.72), rgba(255, 255, 255, 0.12));
    clip-path: polygon(0 8%, 94% 0, 100% 82%, 10% 100%);
}

.feature-list {
    position: absolute;
    inset: auto 18px 20px 18px;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #fff1e4;
}

.feature-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 213, 176, 0.24);
    font-size: 0.88rem;
}

.stat-card {
    display: flex;
    align-items: flex-end;
    padding: 28px 28px 24px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 18%),
        linear-gradient(115deg, #261105 0%, #7a2f00 28%, #cc5200 58%, #ff7a1a 82%, #ffb15d 100%);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.4) 0 1px,
            rgba(255, 255, 255, 0) 1px 10px
        );
    opacity: 0.6;
    mix-blend-mode: soft-light;
}

.stat-card::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 70px;
    width: 220px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 54, 9, 0.8) 0%, rgba(255, 145, 61, 0.26) 40%, rgba(255, 255, 255, 0) 72%);
    filter: blur(10px);
}

.stat-copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    color: #ffffff;
}

.stat-copy strong {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.stat-copy p {
    margin: 0 0 6px;
    max-width: 320px;
    font-size: 0.92rem;
    line-height: 1.2;
}

.decor {
    position: absolute;
    border: 1px solid rgba(255, 138, 61, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.decor-left {
    top: 24px;
    left: 230px;
    width: 320px;
    height: 320px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-18deg);
}

.decor-right {
    right: -170px;
    top: 84px;
    width: 520px;
    height: 520px;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(12deg);
}

.spark {
    position: absolute;
    width: 26px;
    height: 26px;
    opacity: 0.3;
    pointer-events: none;
}

.spark::before,
.spark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255, 148, 74, 0.22);
    transform: translate(-50%, -50%);
}

.spark::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.spark-one {
    top: 86px;
    left: 160px;
}

.spark-two {
    top: 260px;
    right: 188px;
}

.spark-three {
    top: 440px;
    right: 64px;
}

@media (max-width: 1180px) {
    .site-header,
    .hero-actions,
    .stat-copy,
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inner-grid,
    .detail-section {
        grid-template-columns: 1fr;
    }

    .stat-card {
        grid-column: 1 / -1;
        min-height: 320px;
    }
}

@media (max-width: 860px) {
    .page-shell {
        margin: 0;
        border-radius: 0;
        padding: 22px 18px 26px;
    }

    .header-tools {
        width: 100%;
        flex-direction: column;
        gap: 18px;
    }

    .nav-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .menu-button {
        align-self: flex-start;
    }

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

    .content-stack,
    .metric-strip {
        grid-template-columns: 1fr;
    }

    .inner-card:nth-child(3) {
        grid-column: auto;
    }

    .showcase-card,
    .stat-card {
        min-height: 340px;
    }

    .hero-section {
        padding-top: 56px;
    }

    .page-intro {
        padding-top: 56px;
    }

    .page-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 580px) {
    .brand {
        font-size: 1.08rem;
    }

    .eyebrow {
        font-size: 0.35rem;
    }

    .hero-section h1 {
        font-size: clamp(2rem, 10.5vw, 3.1rem);
    }

    .page-intro h1 {
        font-size: clamp(2rem, 10vw, 3.1rem);
    }

    .support-copy strong {
        font-size: 1.1rem;
    }

    .inner-card h2,
    .inner-panel h2,
    .cta-band h2 {
        font-size: 1.45rem;
    }

    .detail-card h3,
    .metric-card strong {
        font-size: 1.16rem;
    }

    .nav-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-list li,
    .stat-copy p {
        font-size: 0.82rem;
    }
}
