:root {
    --ink: #11252a;
    --navy: #092c31;
    --deep: #071f25;
    --cream: #f6f3e9;
    --lime: #d7f35b;
    --orange: #ff875b;
    --muted: #8a9a96;
    --line: rgba(255, 255, 255, 0.15);
    --sans: "Noto Sans SC", Arial, sans-serif;
    --display: "Manrope", "Noto Sans SC", Arial, sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--cream);
    background: var(--deep);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}
.page-noise {
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.site-header {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 6vw, 92px);
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    top: 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    text-decoration: none;
}
.brand-mark {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    width: 25px;
    height: 25px;
}
.brand-mark i {
    width: 6px;
    border-radius: 5px 5px 2px 2px;
    background: var(--lime);
    display: block;
}
.brand-mark i:nth-child(1) {
    height: 12px;
}
.brand-mark i:nth-child(2) {
    height: 21px;
}
.brand-mark i:nth-child(3) {
    height: 16px;
    background: var(--orange);
}
.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-copy strong {
    font-size: 17px;
    letter-spacing: 0.12em;
}
.brand-copy small {
    font: 600 7px var(--display);
    letter-spacing: 0.17em;
    opacity: 0.6;
    margin-top: 5px;
}
.main-nav {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 55px;
}
.main-nav a {
    color: #a9bdb5;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: 0.25s;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--cream);
}
.main-nav a.active:after {
    content: "";
    height: 3px;
    width: 3px;
    background: var(--lime);
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    left: 50%;
    box-shadow: 0 0 8px var(--lime);
}
.header-cta {
    font: 700 12px var(--display);
    color: var(--deep);
    background: var(--lime);
    border-radius: 30px;
    padding: 9px 17px;
    text-decoration: none;
    letter-spacing: 0.03em;
}
.header-cta span {
    font-size: 16px;
    margin-left: 7px;
}
.menu-toggle {
    display: none;
    background: 0;
    border: 0;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    margin: 5px;
}
.hero {
    min-height: 320px;
    height: 100vh;
    max-height: 470px;
    position: relative;
    overflow: hidden;
    background: var(--deep);
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(
            90deg,
            transparent 49.9%,
            rgba(215, 243, 91, 0.18) 50%,
            transparent 50.1%
        ),
        linear-gradient(rgba(215, 243, 91, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 243, 91, 0.12) 1px, transparent 1px);
    background-size:
        100% 100%,
        80px 80px,
        80px 80px;
    mask-image: linear-gradient(90deg, transparent 30%, #000 70%);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6vw;
}
.eyebrow,
.section-kicker {
    color: var(--lime);
    font: 700 11px var(--display);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    margin-right: 10px;
    box-shadow: 0 0 12px var(--orange);
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1 {
    font-size: clamp(52px, 7vw, 95px);
    line-height: 1.08;
    letter-spacing: -0.06em;
    margin: 0;
    /*max-width: 1100px;*/
    text-align: center;
    font-weight: 900;
}
h1 em,
h2 em {
    font-style: normal;
    color: var(--lime);
}
.hero-intro {
    font-size: 17px;
    color: #a2b5af;
    line-height: 1.9;
    margin-bottom: 34px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}
.button {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    padding: 13px 21px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition:
        transform 0.25s,
        background 0.25s;
}
.button:hover {
    transform: translateY(-3px);
}
.button-primary {
    color: var(--deep);
    background: var(--lime);
    font-weight: 700;
}
.button-primary span {
    font-size: 19px;
    line-height: 1;
}
.button-ghost {
    color: var(--cream);
    border: 1px solid #52706d;
    padding: 12px 20px;
}
.button-ghost:hover {
    border-color: var(--lime);
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #78908b;
    font: 600 10px var(--display);
    letter-spacing: 0.14em;
    margin-top: 75px;
}
.hero-meta span:first-child {
    color: var(--lime);
}
.hero-meta i {
    height: 1px;
    width: 48px;
    background: #65827d;
}
.hero-art {
    position: absolute;
    z-index: 1;
    right: 4%;
    top: 11%;
    width: min(52vw, 700px);
    height: 78vh;
    min-height: 500px;
}
.orbit {
    position: absolute;
    border: 1px solid rgba(215, 243, 91, 0.33);
    border-radius: 50%;
    transform: rotate(-28deg);
}
.orbit-one {
    inset: 14% 6% 10%;
    border-left-color: transparent;
    border-bottom-color: transparent;
}
.orbit-two {
    inset: 27% 15% 20%;
    border-color: rgba(255, 135, 91, 0.27);
    transform: rotate(46deg);
}
.monster-shadow {
    position: absolute;
    bottom: 13%;
    left: 25%;
    width: 54%;
    height: 9%;
    border-radius: 50%;
    background: #061c1e;
    filter: blur(21px);
}
.monster {
    position: absolute;
    width: 46%;
    height: 62%;
    left: 28%;
    top: 19%;
    filter: drop-shadow(0 25px 28px rgba(0, 0, 0, 0.3));
    animation: float 5s ease-in-out infinite;
}
.monster-body {
    position: absolute;
    inset: 18% 8% 7%;
    background: linear-gradient(145deg, #9cc34e, #3f8056 57%, #23534d);
    border-radius: 54% 49% 48% 45% / 48% 52% 45% 52%;
    transform: rotate(-7deg);
    box-shadow:
        inset 15px 14px 18px #cbe76f99,
        inset -18px -15px 30px #183e43;
}
.monster-highlight {
    position: absolute;
    right: 19%;
    top: 14%;
    width: 24%;
    height: 28%;
    border-radius: 50%;
    background: #d9f583;
    opacity: 0.5;
    filter: blur(2px);
}
.monster-ear {
    position: absolute;
    top: 13%;
    height: 24%;
    width: 26%;
    z-index: -1;
    background: #4f925a;
    border-radius: 80% 15% 60% 25%;
    box-shadow: inset 7px 4px 10px #aed25d;
}
.ear-left {
    left: 7%;
    transform: rotate(-36deg);
}
.ear-right {
    right: 5%;
    transform: scaleX(-1) rotate(-36deg);
}
.monster-eye {
    position: absolute;
    z-index: 2;
    top: 42%;
    width: 18%;
    height: 17%;
    background: #e7f7a1;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #44745266;
}
.eye-left {
    left: 25%;
}
.eye-right {
    right: 21%;
}
.monster-eye b {
    display: block;
    width: 35%;
    height: 68%;
    margin: 15% auto;
    background: #12373a;
    border-radius: 50%;
}
.monster-mouth {
    position: absolute;
    z-index: 2;
    left: 42%;
    top: 61%;
    height: 11%;
    width: 17%;
    border-bottom: 3px solid #183f40;
    border-radius: 0 0 50% 50%;
}
.monster-foot {
    position: absolute;
    bottom: 0;
    height: 18%;
    width: 22%;
    background: #527f4d;
    border-radius: 44% 43% 35% 35%;
    z-index: -1;
}
.foot-left {
    left: 22%;
    transform: rotate(13deg);
}
.foot-right {
    right: 16%;
    transform: rotate(-8deg);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-14px) rotate(-2deg);
    }
}
.spark {
    position: absolute;
    color: var(--lime);
    font-size: 25px;
    animation: twinkle 3s infinite;
}
.spark-one {
    left: 17%;
    top: 22%;
}
.spark-two {
    right: 8%;
    top: 60%;
    color: var(--orange);
    font-size: 15px;
    animation-delay: 1s;
}
@keyframes twinkle {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}
.art-tag {
    position: absolute;
    background: #0b3436cc;
    border: 1px solid #5a888069;
    backdrop-filter: blur(7px);
    padding: 10px 14px;
}
.art-tag small {
    display: block;
    color: #89a49b;
    font: 600 9px var(--display);
    letter-spacing: 0.15em;
}
.art-tag strong {
    display: block;
    color: var(--cream);
    font-size: 12px;
    margin-top: 2px;
}
.tag-top {
    right: 6%;
    top: 21%;
    display: flex;
    gap: 12px;
    align-items: center;
}
.tag-line {
    display: block;
    width: 21px;
    height: 21px;
    border: 1px solid var(--lime);
    border-radius: 50%;
}
.tag-line:after {
    content: "";
    display: block;
    height: 7px;
    width: 1px;
    background: var(--lime);
    margin: 21px 0 0 20px;
}
.tag-bottom {
    left: 5%;
    bottom: 18%;
    display: flex;
    align-items: center;
    gap: 12px;
}
.tag-icon {
    font-size: 25px;
    color: var(--orange);
}
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 6vw;
    display: flex;
    gap: 16px;
    align-items: center;
    color: #74918b;
    text-decoration: none;
    font: 600 9px var(--display);
    letter-spacing: 0.18em;
}
.scroll-hint b {
    font-size: 17px;
    color: var(--lime);
    font-weight: 400;
}
.game-section {
    background: var(--cream);
    color: var(--ink);
    padding: 120px 6vw 105px;
    position: relative;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}
.section-kicker {
    color: #668179;
    margin-bottom: 20px;
}
.game-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 18px;
    font: 700 19px/1.4 var(--display);
    letter-spacing: 0.01em;
    color: var(--ink);
}
.game-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--lime);
    font: 700 11px var(--display);
    letter-spacing: 0.14em;
    white-space: nowrap;
}
.section-heading h2,
.about-copy h2,
.contact-inner h2 {
    font-size: clamp(36px, 4vw, 61px);
    line-height: 1.2;
    letter-spacing: -0.06em;
    margin: 0;
    font-weight: 900;
}
.section-heading h2 em,
.about-copy h2 em {
    color: #477b66;
}
.section-desc {
    color: #73827d;
    font-size: 14px;
    margin: 0 5% 6px 0;
    line-height: 1.9;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 17px;
}
.feature-card {
    min-height: 360px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.card-main {
    background: #d7f35b;
}
.card-orange {
    background: var(--orange);
}
.card-dark {
    background: #123a3a;
    color: var(--cream);
}
.card-number {
    font: 600 11px var(--display);
    opacity: 0.65;
    letter-spacing: 0.1em;
}
.card-icon {
    position: absolute;
    right: 27px;
    top: 15px;
    font-family: Arial;
    font-size: 80px;
    line-height: 1;
    opacity: 0.17;
}
.icon-diamond {
    font-size: 115px;
    top: 0;
}
.icon-cross {
    font-size: 90px;
}
.icon-cross i {
    font-style: normal;
    font-size: 40px;
    position: absolute;
    left: 25px;
    top: 16px;
}
.feature-card h3 {
    position: absolute;
    bottom: 77px;
    font-size: 22px;
    letter-spacing: -0.04em;
    margin: 0;
}
.feature-card p {
    position: absolute;
    bottom: 27px;
    left: 28px;
    right: 25px;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.72;
}
.feature-card a {
    position: absolute;
    right: 28px;
    bottom: 31px;
    color: inherit;
    text-decoration: none;
    font: 600 11px var(--display);
    letter-spacing: 0.03em;
}
.feature-card a span {
    font-size: 17px;
    margin-left: 8px;
}
.card-main a,
.card-orange a {
    bottom: 29px;
}
.card-main p,
.card-orange p {
    padding-right: 70px;
}
.quote-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 65px;
    color: #739087;
}
.quote-strip p {
    font-size: 16px;
    margin: 0;
}
.quote-strip strong {
    color: var(--ink);
}
.quote-mark {
    font: 900 45px Georgia;
    color: #a4bd52;
    line-height: 0.5;
}
.quote-right {
    align-self: flex-end;
}
.about-section {
    background: #e9e6da;
    color: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}
.about-image {
    position: relative;
    overflow: hidden;
    background: #1d4b45;
    min-height: 580px;
}
.image-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}
.orb-green {
    width: 410px;
    height: 410px;
    background: radial-gradient(
        circle at 35% 30%,
        #dcf47c,
        #80b35c 55%,
        #3c7154
    );
    top: 19%;
    left: 21%;
    box-shadow: -50px 45px 0 -12px #254e4a;
}
.orb-pink {
    width: 180px;
    height: 180px;
    background: radial-gradient(
        circle at 35% 33%,
        #ffbd86,
        #f37866 65%,
        #9e4e5b
    );
    bottom: 13%;
    right: 16%;
    opacity: 0.9;
}
.about-symbol {
    position: absolute;
    top: 47%;
    left: 48%;
    color: #f4f2d7;
    font-size: 94px;
    opacity: 0.8;
    animation: spin 20s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.vertical-label {
    position: absolute;
    bottom: 39px;
    left: 39px;
    color: #b6d2a6;
    font: 600 10px var(--display);
    letter-spacing: 0.25em;
    line-height: 1.8;
}
.about-copy {
    padding: 125px 11vw 80px 8vw;
}
.about-copy > p:not(.section-kicker) {
    max-width: 430px;
    color: #65746f;
    font-size: 15px;
    line-height: 2;
    margin: 29px 0 0;
}
.about-copy > p + p {
    margin-top: 9px !important;
}
.text-link {
    display: inline-block;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    margin-top: 31px;
    border-bottom: 1px solid #829890;
    padding-bottom: 6px;
}
.text-link span {
    margin-left: 25px;
    color: #4e8c69;
    font-size: 18px;
}
.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 75px;
    padding-top: 27px;
    border-top: 1px solid #c3c8b9;
}
.about-stats div {
    display: flex;
    flex-direction: column;
}
.about-stats strong {
    font: 800 26px var(--display);
    letter-spacing: -0.06em;
}
.about-stats small {
    font-size: 11px;
    color: #83918b;
    margin-top: 2px;
}
.contact-section {
    min-height: 480px;
    padding: 105px 6vw;
    position: relative;
    overflow: hidden;
    background: #123a3a;
}
.contact-inner {
    position: relative;
    z-index: 1;
}
.contact-inner h2 {
    font-size: clamp(42px, 5vw, 70px);
    margin-bottom: 20px;
}
.contact-inner h2 em {
    color: var(--lime);
}
.contact-inner > p:not(.section-kicker) {
    color: #9eb5ad;
    font-size: 15px;
    margin-bottom: 28px;
}
.contact-section .button {
    gap: 38px;
}
.contact-decoration {
    position: absolute;
    right: 13%;
    top: 8%;
    width: 290px;
    height: 290px;
    border: 1px solid #70938a4a;
    border-radius: 50%;
}
.contact-decoration:before,
.contact-decoration:after {
    content: "";
    position: absolute;
    inset: 30px;
    border: 1px solid #70938a38;
    border-radius: 50%;
}
.contact-decoration:after {
    inset: 65px;
    border-color: #d7f35b55;
}
.contact-decoration span {
    position: absolute;
    right: 9px;
    top: 42%;
    font-size: 35px;
    color: var(--lime);
}
.contact-decoration i,
.contact-decoration b {
    position: absolute;
    background: var(--orange);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    top: 21%;
    left: 22%;
}
.contact-decoration b {
    background: var(--lime);
    top: auto;
    left: auto;
    right: 17%;
    bottom: 19%;
}
.site-footer {
    min-height: 100px;
    padding: 30px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #08282e;
    color: #9ab0a9;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-size: 14px;
}
.footer-brand .brand-mark {
    transform: scale(0.75);
    transform-origin: left;
}
.footer-copy {
    font-size: 11px;
    line-height: 2;
    text-align: center;
    color: #759088;
}
.footer-copy a {
    color: #9ebeb3;
    text-underline-offset: 3px;
}
.footer-social a {
    color: #9eb0a9;
    text-decoration: none;
    font: 600 11px var(--display);
}
@media (max-width: 800px) {
    .site-header {
        height: 70px;
    }
    .main-nav,
    .header-cta {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .main-nav.is-open {
        display: flex;
        position: absolute;
        top: 67px;
        left: 18px;
        right: 18px;
        margin: 0;
        padding: 15px 20px;
        flex-direction: column;
        gap: 4px;
        background: #10383bcc;
        border: 1px solid #557a7266;
        backdrop-filter: blur(12px);
        border-radius: 4px;
    }
    .main-nav.is-open a {
        padding: 7px 0;
    }
    .main-nav.is-open a.active:after {
        display: none;
    }
    .hero {
        min-height: 720px;
        height: auto;
        padding-bottom: 70px;
    }
    .hero-content {
        padding: 0 24px;
        min-height: 720px;
        height: auto;
    }
    .hero-art {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 390px;
        min-height: 0;
        margin-top: -5px;
    }
    .monster {
        height: 65%;
        width: 47%;
        left: 27%;
        top: 14%;
    }
    .art-tag {
        transform: scale(0.82);
        transform-origin: center;
    }
    .tag-top {
        right: 0;
    }
    .tag-bottom {
        left: 0;
        bottom: 6%;
    }
    .scroll-hint {
        left: 24px;
        bottom: 21px;
    }
    .hero-grid {
        mask-image: linear-gradient(90deg, transparent, #000);
    }
    .desktop-break {
        display: none;
    }
    .section-heading {
        display: block;
    }
    .game-title {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .section-desc {
        margin-top: 25px;
    }
    .game-section {
        padding: 80px 24px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }
    .feature-card {
        min-height: 285px;
    }
    .feature-card h3 {
        bottom: 78px;
    }
    .quote-strip {
        margin-top: 43px;
    }
    .quote-strip p {
        text-align: center;
        font-size: 14px;
    }
    .about-section {
        grid-template-columns: 1fr;
    }
    .about-image {
        min-height: 410px;
    }
    .about-copy {
        padding: 76px 24px 75px;
    }
    .about-stats {
        gap: 25px;
        margin-top: 55px;
    }
    .about-stats strong {
        font-size: 21px;
    }
    .contact-section {
        padding: 80px 24px;
        min-height: 430px;
    }
    .contact-decoration {
        right: -105px;
        top: 37%;
        width: 280px;
        height: 280px;
    }
    .site-footer {
        padding: 25px 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .footer-copy {
        text-align: left;
        grid-column: 1/-1;
        grid-row: 2;
        order: 3;
    }
    .footer-social {
        text-align: right;
    }
    .footer-brand {
        font-size: 13px;
    }
}
@media (max-width: 400px) {
    h1 {
        font-size: 48px;
    }
    .hero-art {
        height: 350px;
    }
    .about-stats {
        gap: 16px;
    }
    .about-stats small {
        font-size: 10px;
    }
    .button {
        gap: 15px;
    }
    .hero-actions {
        flex-wrap: wrap;
    }
}
