@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Teko:wght@500;600;700&display=swap");

:root {
    --bg: #07090b;
    --bg-soft: #0c1014;
    --panel: rgba(11, 15, 20, 0.78);
    --panel-solid: #11161c;
    --line: rgba(244, 185, 95, 0.25);
    --line-strong: rgba(244, 185, 95, 0.56);
    --text: #f4f2ec;
    --muted: #aeb4bd;
    --accent: #f4b95f;
    --accent-strong: #ffd686;
    --accent-ink: #281604;
    --danger: #d85b33;
    --max: 1200px;
    --shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
    --radius: 24px;
    --hero-image: url("/assets/media/hero-dayz.jpg");
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(7, 9, 11, 0.84), rgba(7, 9, 11, 0.98)),
        radial-gradient(circle at top right, rgba(244, 185, 95, 0.18), transparent 30%),
        linear-gradient(180deg, #090c10 0%, #060809 100%);
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.22;
    mask-image: radial-gradient(circle at 50% 10%, #000 20%, transparent 80%);
    z-index: -1;
}

.site-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(7, 9, 11, 0.25), rgba(7, 9, 11, 0.82)),
        radial-gradient(circle at 10% 10%, rgba(255, 214, 134, 0.12), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(216, 91, 51, 0.12), transparent 28%),
        var(--hero-image) center top / cover no-repeat;
    filter: saturate(0.82) contrast(1.02);
}

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

button,
.button {
    font: inherit;
}

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

.narrow {
    width: min(calc(100% - 40px), 860px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(8, 11, 14, 0.84), rgba(8, 11, 14, 0.46));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    gap: 6px;
}

.brand-copy strong,
h1,
h2,
h3,
.footer-title {
    font-family: "Unbounded", "Segoe UI", sans-serif;
}

.brand-copy strong {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
}

.brand-copy span {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.site-nav > a:not(.button) {
    position: relative;
    padding: 6px 0;
    color: var(--muted);
}

.site-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"] {
    color: var(--text);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 14, 18, 0.92);
    border-radius: 14px;
    color: var(--text);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
    display: block;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button:hover,
.copy-chip:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    color: var(--accent-ink);
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(244, 185, 95, 0.28);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 14, 18, 0.72);
    color: var(--text);
}

.button-ghost,
.button-inline {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
}

.hero {
    padding: 110px 0 72px;
}

.hero-home {
    min-height: calc(100svh - 76px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 420px);
    gap: 30px;
    align-items: end;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

h1,
h2,
h3 {
    line-height: 1.06;
    margin: 0;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 6.4rem);
    max-width: 9ch;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.hero-lead,
.section-heading p,
.footer-copy,
.server-strip p,
.info-panel p {
    color: var(--muted);
}

.hero-lead {
    max-width: 54ch;
    margin: 22px 0 0;
    font-size: 1.05rem;
}

.hero-actions,
.section-actions,
.panel-actions,
.strip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 28px;
}

.hero-facts {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-facts li,
.hero-panel,
.server-strip,
.info-panel,
.step-card,
.link-panel,
.final-cta-inner {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(11, 15, 20, 0.82), rgba(8, 11, 14, 0.74));
    box-shadow: var(--shadow);
}

.hero-facts li {
    padding: 18px;
    border-radius: 22px;
    display: grid;
    gap: 6px;
}

.hero-facts strong {
    font-family: "Unbounded", "Segoe UI", sans-serif;
    font-size: 1.45rem;
    color: var(--accent-strong);
}

.hero-panel {
    padding: 22px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
}

.hero-panel::before,
.final-cta-inner::before {
    content: "";
    position: absolute;
    inset: auto auto -20% -10%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(244, 185, 95, 0.16), transparent 68%);
    pointer-events: none;
}

.panel-kicker {
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.status-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-row:last-of-type {
    border-bottom: 0;
}

.status-row h2 {
    font-size: 1.1rem;
}

.status-row p,
.link-panel small,
.server-label,
.meta-ribbon,
.step-index {
    color: var(--muted);
}

.copy-chip {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(14, 18, 23, 0.92);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.copy-chip.is-copied,
.button-inline.is-copied {
    border-color: rgba(90, 191, 122, 0.6);
    background: rgba(27, 57, 35, 0.7);
}

.panel-actions {
    margin-top: 16px;
}

.panel-actions a {
    color: var(--accent-strong);
}

.section {
    padding: 84px 0;
}

.section-contrast {
    background:
        linear-gradient(180deg, rgba(9, 12, 15, 0.68), rgba(7, 9, 12, 0.94)),
        radial-gradient(circle at 80% 20%, rgba(244, 185, 95, 0.1), transparent 30%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading {
    display: grid;
    gap: 14px;
    max-width: 760px;
    margin-bottom: 30px;
}

.server-strip {
    border-radius: 28px;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.8fr) auto;
    gap: 22px;
    margin-top: 18px;
}

.strip-actions {
    display: grid;
    gap: 10px;
    align-content: start;
}

.strip-actions .button {
    width: 100%;
    white-space: nowrap;
}

.server-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    margin: 0 0 10px;
}

.feature-list,
.server-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.feature-list li,
.server-links li {
    position: relative;
    padding-left: 18px;
}

.feature-list li::before,
.server-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
}

.split-grid,
.community-grid,
.faq-layout {
    display: grid;
    gap: 28px;
}

.split-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.reason-grid,
.link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reason-grid article,
.link-panel {
    padding: 22px;
    border-radius: 22px;
}

.link-panel {
    display: grid;
    gap: 10px;
    min-height: 100%;
}

.link-panel span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.start-layout {
    display: grid;
    gap: 28px;
}

.step-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 14px;
    color: var(--muted);
}

.step-stack {
    display: grid;
    gap: 18px;
}

.step-card,
.info-panel,
.final-cta-inner {
    border-radius: 28px;
}

.step-card,
.info-panel {
    padding: 26px;
}

.step-index {
    margin: 0 0 12px;
    font-family: "Unbounded", "Segoe UI", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 18px 20px;
    background: rgba(10, 13, 18, 0.72);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.final-cta {
    padding-bottom: 96px;
}

.final-cta-inner {
    position: relative;
    padding: 34px;
    overflow: hidden;
}

.site-footer {
    padding: 28px 0 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(7, 9, 11, 0.68);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.footer-title {
    margin: 0 0 8px;
    font-size: 1rem;
}

.footer-copy {
    margin: 0;
    max-width: 48ch;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--accent-strong);
}

.page-inner {
    padding-top: 28px;
}

.page-hero {
    padding: 82px 0 28px;
}

.meta-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 24px;
}

.info-panel h2 {
    margin-bottom: 14px;
}

[data-reveal] {
    opacity: 1;
    transform: none;
}

[data-reveal].is-visible {
    animation: reveal-up 0.65s ease both;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        animation: none;
    }

    .button,
    .copy-chip {
        transition: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .server-strip,
    .split-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .reason-grid,
    .link-grid {
        grid-template-columns: 1fr;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        padding: 18px;
        border-radius: 22px;
        background: rgba(8, 11, 14, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav .button {
        width: 100%;
    }

    .header-row {
        min-height: 72px;
    }

    .hero,
    .section,
    .page-hero {
        padding-top: 72px;
    }
}

@media (max-width: 640px) {
    .container,
    .narrow {
        width: min(calc(100% - 28px), var(--max));
    }

    .hero {
        padding-bottom: 46px;
    }

    .section,
    .final-cta {
        padding: 64px 0;
    }

    .hero-panel,
    .server-strip,
    .step-card,
    .info-panel,
    .final-cta-inner {
        border-radius: 22px;
        padding: 20px;
    }

    h1 {
        max-width: none;
    }
}

/* AlterEgo redesign layer */

:root {
    --bg: #050607;
    --bg-soft: #0b0d10;
    --panel: rgba(14, 17, 19, 0.84);
    --panel-solid: #101316;
    --line: rgba(231, 128, 42, 0.18);
    --line-strong: rgba(231, 128, 42, 0.5);
    --text: #f3eee7;
    --muted: #b2aba0;
    --accent: #e7802a;
    --accent-strong: #ffb15f;
    --accent-ink: #1d1004;
    --danger: #bb5135;
    --max: 1260px;
    --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
    --radius: 30px;
}

body {
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 10%, rgba(231, 128, 42, 0.08), transparent 26%),
        radial-gradient(circle at 88% 14%, rgba(255, 177, 95, 0.09), transparent 24%),
        linear-gradient(180deg, #07090a 0%, #040506 100%);
    letter-spacing: 0.01em;
}

body::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.16;
}

.site-background {
    background:
        linear-gradient(180deg, rgba(5, 6, 7, 0.58), rgba(5, 6, 7, 0.95)),
        radial-gradient(circle at 80% 8%, rgba(231, 128, 42, 0.18), transparent 24%),
        url("/assets/media/hero-dayz.jpg") center top / cover no-repeat;
    filter: saturate(0.9) contrast(1.04);
    transform: translateY(calc(var(--scroll-depth, 0) * -26px));
    transition: transform 0.18s linear;
}

.site-header {
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.9), rgba(7, 8, 10, 0.56));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brand-copy strong,
h1,
h2,
h3,
.footer-title,
.display-title,
.status-row h2,
.briefing-row h2 {
    font-family: "Teko", "Segoe UI", sans-serif;
    letter-spacing: 0.02em;
}

.brand-copy strong {
    font-size: 1.35rem;
    letter-spacing: 0.06em;
}

.brand-copy span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

.brand-mark {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.button {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 600;
}

.button-primary {
    background: linear-gradient(135deg, #ffba6b 0%, #e7802a 100%);
    box-shadow: 0 18px 40px rgba(231, 128, 42, 0.24);
}

.button-secondary {
    background: rgba(15, 17, 20, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-ghost,
.button-inline,
.copy-chip,
.briefing-link {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(16, 18, 21, 0.68);
    color: var(--text);
}

.button-inline,
.briefing-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
}

.eyebrow {
    color: var(--accent-strong);
    font-size: 0.76rem;
    letter-spacing: 0.22em;
}

.section-heading {
    max-width: 860px;
    margin-bottom: 34px;
}

.section-heading p,
.hero-lead,
.footer-copy,
.server-strip p,
.info-panel p,
.feature-list,
.faq-list p,
.compare-row span,
.compare-row strong,
.briefing-row p,
.showcase-card figcaption,
.crest-card p,
.ecosystem-note p {
    color: var(--muted);
}

.hero {
    padding: 126px 0 84px;
}

.hero-home {
    position: relative;
    min-height: calc(100svh - 76px);
    overflow: clip;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 6, 7, 0.92) 0%, rgba(5, 6, 7, 0.64) 48%, rgba(5, 6, 7, 0.78) 100%),
        url("/assets/media/project-shot-02.jpg") right center / min(54vw, 860px) auto no-repeat;
    opacity: 0.46;
    pointer-events: none;
}

.hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.88fr);
    gap: 30px;
    align-items: start;
}

.display-title {
    font-size: clamp(4.4rem, 11vw, 8.8rem);
    line-height: 0.88;
    max-width: 8ch;
}

.hero-copy {
    max-width: 660px;
}

.hero-lead {
    max-width: 60ch;
    margin-top: 18px;
    font-size: 1.02rem;
}

.hero-pills {
    list-style: none;
    padding: 0;
    margin: 34px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-pills li,
.briefing-panel,
.server-card,
.system-card,
.step-card,
.link-panel,
.final-cta-inner,
.showcase-card,
.crest-card,
.ecosystem-note,
.compare-table,
.info-panel,
.faq-list details {
    background: linear-gradient(180deg, rgba(15, 18, 20, 0.88), rgba(10, 12, 14, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.hero-pills li {
    padding: 18px 16px;
    border-radius: 22px;
    display: grid;
    gap: 4px;
}

.hero-pills strong {
    font-family: "Teko", "Segoe UI", sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--accent-strong);
}

.hero-visual {
    display: grid;
    gap: 18px;
}

.briefing-panel {
    position: relative;
    padding: 24px;
    border-radius: 30px;
    overflow: hidden;
}

.briefing-panel::before,
.final-cta-inner::before {
    content: "";
    position: absolute;
    inset: auto auto -24% -14%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(231, 128, 42, 0.18), transparent 68%);
    pointer-events: none;
}

.briefing-top {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
}

.briefing-top strong {
    font-family: "Teko", "Segoe UI", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.briefing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.briefing-row:last-of-type {
    border-bottom: 0;
}

.briefing-row-upcoming {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.briefing-row h2 {
    margin-top: 6px;
    font-size: 1.9rem;
    line-height: 0.95;
}

.status-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(231, 128, 42, 0.14);
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.status-tag-muted {
    background: rgba(255, 255, 255, 0.08);
    color: #d2cbc2;
}

.media-column,
.media-row {
    display: grid;
    gap: 18px;
}

.media-row {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.86fr);
}

.showcase-card,
.crest-card {
    border-radius: 26px;
    overflow: hidden;
}

.showcase-card img,
.crest-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.showcase-card img {
    aspect-ratio: 16 / 10;
}

.showcase-card-main img {
    aspect-ratio: 16 / 9;
}

.showcase-card figcaption,
.crest-card p {
    margin: 0;
    padding: 16px 18px 18px;
    font-size: 0.94rem;
}

.crest-card {
    display: grid;
    align-content: start;
}

.crest-card img {
    max-width: 78%;
    margin: 22px auto 0;
    aspect-ratio: 1;
    object-fit: contain;
}

.section-band {
    padding-top: 34px;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.band-grid article,
.system-card,
.ecosystem-note {
    padding: 24px;
    border-radius: 26px;
}

.band-number,
.step-index {
    margin: 0 0 10px;
    font-family: "Teko", "Segoe UI", sans-serif;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--accent-strong);
}

.server-grid,
.systems-grid,
.start-grid {
    display: grid;
    gap: 18px;
}

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

.server-card {
    padding: 26px;
    border-radius: 30px;
    display: grid;
    gap: 18px;
    align-content: start;
}

.server-card-wide {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.server-card-upcoming {
    border-color: rgba(255, 177, 95, 0.16);
}

.card-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.server-label {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

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

.system-card h3,
.step-card h3,
.server-card h3 {
    margin-bottom: 8px;
}

.compare-table {
    border-radius: 30px;
    overflow: hidden;
}

.compare-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.5fr) 120px 140px;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    align-items: center;
}

.compare-row:last-child {
    border-bottom: 0;
}

.compare-row-head {
    background: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--accent-strong);
}

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

.step-card,
.link-panel,
.final-cta-inner {
    border-radius: 28px;
}

.step-card,
.link-panel,
.final-cta-inner {
    padding: 24px;
}

.community-layout,
.faq-layout,
.compare-layout {
    display: grid;
    gap: 30px;
}

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

.link-panel {
    display: grid;
    gap: 10px;
}

.ecosystem-note a,
.panel-actions a {
    color: var(--accent-strong);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 18px 20px;
    border-radius: 20px;
}

.final-cta {
    padding-bottom: 104px;
}

.final-cta-inner {
    position: relative;
    overflow: hidden;
}

.footer-links {
    gap: 14px 20px;
}

@media (max-width: 1180px) {
    .hero-shell,
    .systems-grid,
    .start-grid,
    .link-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-shell,
    .server-grid,
    .band-grid {
        grid-template-columns: 1fr;
    }

    .server-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .media-row,
    .compare-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .display-title {
        max-width: none;
        font-size: clamp(3.8rem, 18vw, 6.2rem);
    }

    .hero-pills,
    .systems-grid,
    .start-grid,
    .link-grid,
    .band-grid {
        grid-template-columns: 1fr;
    }

    .briefing-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .brand-mark {
        width: 92px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 104px;
    }

    .showcase-card,
    .crest-card,
    .server-card,
    .step-card,
    .link-panel,
    .briefing-panel,
    .final-cta-inner,
    .ecosystem-note {
        border-radius: 22px;
    }

    .server-card,
    .step-card,
    .link-panel,
    .briefing-panel,
    .final-cta-inner,
    .ecosystem-note {
        padding: 20px;
    }
}
