:root {
    --forest-950: #102d23;
    --forest-900: #173d2e;
    --forest-800: #24543e;
    --forest-700: #35674d;
    --leaf: #78945b;
    --gold: #d9ad42;
    --gold-soft: #f1d98d;
    --cream: #f4eedf;
    --paper: #fbf7ec;
    --paper-light: #fffdf7;
    --ink: #26332a;
    --muted: #637067;
    --clay: #b96342;
    --line: rgba(46, 66, 51, .18);
    --shadow: 0 20px 50px rgba(30, 45, 34, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(41, 61, 45, .025) 1px, transparent 1px) 0 0 / 56px 56px,
        var(--paper);
    font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
    line-height: 1.65;
}
main { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.skip-link {
    position: fixed;
    left: 12px;
    top: -80px;
    z-index: 100;
    padding: 10px 16px;
    border-radius: 0 0 8px 8px;
    color: #fff;
    background: var(--forest-900);
}
.skip-link:focus { top: 0; }

.landing-header {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 9px max(24px, calc((100vw - 1220px) / 2));
    border-bottom: 1px solid rgba(45, 65, 50, .13);
    background: rgba(251, 247, 236, .93);
    backdrop-filter: blur(12px);
}
.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.landing-brand img {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 4px 5px rgba(34, 52, 39, .16));
}
.landing-brand span { display: grid; line-height: 1.12; }
.landing-brand strong {
    color: var(--forest-900);
    font-family: Georgia, "Noto Serif TC", serif;
    font-size: 19px;
    letter-spacing: .07em;
}
.landing-brand small {
    margin-top: 4px;
    color: #8c794d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
}
.landing-header nav,
.landing-footer nav {
    display: flex;
    align-items: center;
    gap: 23px;
    font-size: 13px;
    font-weight: 800;
}
.landing-header nav > a:not(.nav-play):hover { color: var(--clay); }
.nav-login {
    padding-left: 22px;
    border-left: 1px solid var(--line);
}
.nav-play {
    padding: 9px 16px;
    border: 1px solid #173d2e;
    border-radius: 8px;
    color: #fff;
    background: var(--forest-800);
    box-shadow: 0 3px 0 var(--forest-950);
}

.landing-hero {
    position: relative;
    width: min(1220px, calc(100% - 48px));
    min-height: 690px;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 62px;
    margin: 0 auto;
    padding: 76px 0 92px;
}
.landing-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -250px;
    top: 60px;
    border: 1px solid rgba(183, 139, 47, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(218, 176, 73, .05), 0 0 0 84px rgba(218, 176, 73, .035);
    pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; }
.hero-status,
.section-label,
.chapter-label {
    margin: 0;
    color: var(--clay);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}
.hero-status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
}
.hero-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #76925a;
    box-shadow: 0 0 0 4px rgba(118, 146, 90, .14);
}
.hero-copy h1 {
    max-width: 610px;
    margin: 0;
    color: var(--forest-950);
    font-family: Georgia, "Noto Serif TC", serif;
    font-size: clamp(43px, 4.1vw, 62px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.035em;
}
.hero-copy h1 span { display: block; }
.hero-lead {
    max-width: 555px;
    margin: 25px 0 29px;
    color: #536158;
    font-size: 17px;
    line-height: 1.9;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}
.landing-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease;
}
.landing-button:hover { transform: translateY(-2px); }
.landing-button.primary {
    color: #fff;
    background: var(--forest-800);
    box-shadow: 0 4px 0 var(--forest-950), 0 11px 24px rgba(23, 61, 46, .14);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 0 5px;
    border-bottom: 1px solid #958456;
    color: #59645b;
    font-size: 13px;
    font-weight: 800;
}
.text-link:hover { color: var(--clay); }
.hero-plain-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 31px 0 0;
    color: #69746b;
    font-size: 11px;
    font-weight: 800;
}
.hero-plain-facts span {
    padding: 0 12px;
    border-right: 1px solid #c8bfa8;
}
.hero-plain-facts span:first-child { padding-left: 0; }
.hero-plain-facts span:last-child { border-right: 0; }

.hero-game-frame {
    position: relative;
    margin: 0 5px 0 0;
    border: 3px solid var(--forest-950);
    border-radius: 13px;
    background: #0f2c22;
    box-shadow: var(--shadow), 13px 13px 0 #dfbd63;
    overflow: visible;
}
.hero-game-frame::after {
    content: "";
    position: absolute;
    inset: 33px 0 0;
    border-radius: 0 0 9px 9px;
    box-shadow: inset 0 0 0 1px rgba(255, 245, 208, .22);
    pointer-events: none;
}
.frame-bar {
    height: 33px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 11px;
    color: #d9ceac;
    background: var(--forest-950);
    border-radius: 8px 8px 0 0;
}
.frame-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dcb45b;
}
.frame-bar span:nth-child(2) { opacity: .65; }
.frame-bar span:nth-child(3) { opacity: .35; }
.frame-bar b {
    margin-left: 5px;
    font-size: 9px;
    letter-spacing: .07em;
}
.hero-game-frame > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 0 0 9px 9px;
}
.hero-game-frame figcaption {
    position: absolute;
    left: -22px;
    bottom: -25px;
    z-index: 2;
    max-width: 270px;
    padding: 13px 17px 14px;
    border: 1px solid #c9b16d;
    border-radius: 3px;
    color: #475349;
    background: #fff7d9;
    box-shadow: 0 8px 18px rgba(20, 40, 29, .15);
    transform: rotate(-1.3deg);
}
.hero-game-frame figcaption small,
.hero-game-frame figcaption strong { display: block; }
.hero-game-frame figcaption small {
    margin-bottom: 2px;
    color: #9c7144;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}
.hero-game-frame figcaption strong {
    color: var(--forest-900);
    font-size: 13px;
}

.landing-overview {
    width: min(1120px, calc(100% - 48px));
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: start;
    gap: 85px;
    margin: 18px auto 40px;
    padding: 94px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.overview-heading h2,
.chapter-copy h2,
.first-round h2,
.landing-cta h2 {
    margin: 10px 0 0;
    color: var(--forest-950);
    font-family: Georgia, "Noto Serif TC", serif;
    font-size: clamp(34px, 3.5vw, 49px);
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -.02em;
}
.overview-copy > p {
    margin: 0 0 17px;
    color: #59675e;
    font-size: 15px;
    line-height: 1.9;
}
.farmer-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    margin-top: 27px;
    padding: 14px 0 2px;
    border-top: 1px solid #c6ad6d;
    color: #617066;
    font-style: normal;
    font-size: 12px;
}
.farmer-note strong {
    color: #9a693c;
    white-space: nowrap;
}

.feature-stories {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}
.feature-chapter {
    min-height: 570px;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: clamp(45px, 7vw, 88px);
    padding: 92px 0;
    border-bottom: 1px solid var(--line);
}
.feature-kitchen { grid-template-columns: 1.12fr .88fr; }
.feature-automation { grid-template-columns: .9fr 1.1fr; }
.chapter-copy > p:not(.chapter-label, .chapter-footnote) {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}
.chapter-list {
    display: grid;
    gap: 0;
    margin: 28px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}
.chapter-list li {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.chapter-list strong {
    color: var(--forest-800);
    font-size: 12px;
}
.chapter-list span {
    color: #657168;
    font-size: 12px;
}
.chapter-media { min-width: 0; }
.building-collage {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(43, 73, 45, .24);
    border-radius: 8px 28px 8px 28px;
    background:
        radial-gradient(circle at 50% 47%, #abc77f 0 21%, transparent 22%),
        linear-gradient(145deg, #c7d9a4, #789763);
    box-shadow: 15px 15px 0 #e8d9ad, 0 18px 34px rgba(28, 53, 39, .12);
    overflow: hidden;
}
.building-collage::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .26;
    background: url("ui-art/grass-texture-v4.png") center / 270px repeat;
}
.terrain-tile {
    position: absolute;
    width: 240px;
    aspect-ratio: 1.15;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    background: rgba(232, 218, 137, .32);
}
.tile-one { left: -42px; bottom: 16px; }
.tile-two { right: -48px; top: 13px; }
.building-main {
    position: relative;
    z-index: 2;
    width: 270px;
    height: auto;
    filter: drop-shadow(0 18px 8px rgba(33, 52, 34, .3));
}
.building-side {
    position: absolute;
    right: 27px;
    top: 20px;
    z-index: 3;
    width: 118px;
    height: auto;
    filter: drop-shadow(0 10px 5px rgba(33, 52, 34, .25));
}
.bonus-callout {
    position: absolute;
    left: 22px;
    bottom: 21px;
    z-index: 4;
    padding: 12px 15px;
    border: 1px solid rgba(79, 89, 55, .25);
    border-radius: 5px;
    background: rgba(255, 249, 225, .94);
    box-shadow: 0 8px 18px rgba(32, 50, 31, .14);
}
.bonus-callout span,
.bonus-callout small {
    display: block;
    color: #6f796c;
    font-size: 9px;
}
.bonus-callout strong {
    display: block;
    color: var(--forest-800);
    font-size: 18px;
}
.feature-screenshot {
    position: relative;
    aspect-ratio: 1.45;
    margin: 0;
    border: 3px solid #244737;
    border-radius: 8px 22px 8px 22px;
    background: #244737;
    box-shadow: -14px 14px 0 #ded3b2, 0 18px 34px rgba(28, 53, 39, .14);
    overflow: hidden;
}
.feature-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.feature-screenshot figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 9px;
    border-radius: 4px;
    color: #fff9e8;
    background: rgba(18, 47, 36, .9);
    font-size: 9px;
    font-weight: 800;
}
.formula-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-top: 25px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 10px;
}
.formula-note span {
    padding: 5px 8px;
    border: 1px solid #d6cab0;
    border-radius: 4px;
    background: #fffdf7;
}
.formula-note b,
.formula-note i {
    color: #9d7640;
    font-style: normal;
}
.formula-note strong { color: var(--clay); }
.chapter-footnote {
    margin: 13px 0 0;
    color: #758078;
    font-size: 11px;
}
.market-shot { box-shadow: 14px 14px 0 #e5d3a6, 0 18px 34px rgba(28, 53, 39, .14); }
.market-shot img { object-position: left top; }

.landing-automation-preview {
    position: relative;
    min-height: 470px;
    margin: 0;
    padding: 28px;
    border: 3px solid #183d2f;
    border-radius: 24px 8px 24px 8px;
    color: #f9f2d8;
    background:
        radial-gradient(circle at 92% 9%, rgba(222, 184, 91, .2), transparent 30%),
        linear-gradient(145deg, #173f30, #285d43);
    box-shadow: 14px 14px 0 #dfc47d, 0 18px 34px rgba(28, 53, 39, .16);
    overflow: hidden;
}
.landing-automation-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    background: url("ui-art/grass-texture-v4.png") center / 280px repeat;
    pointer-events: none;
}
.landing-automation-preview > * { position: relative; z-index: 1; }
.automation-preview-heading {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}
.automation-preview-heading img {
    width: 105px;
    height: 105px;
    object-fit: contain;
    border: 1px solid rgba(244, 215, 127, .62);
    border-radius: 50%;
    background: radial-gradient(circle, #fff4c5, #a5bd7f);
    filter: drop-shadow(0 8px 7px rgba(6, 24, 16, .32));
}
.automation-preview-heading span,
.automation-preview-heading small,
.automation-preview-heading strong,
.automation-preview-heading em { display: block; }
.automation-preview-heading small {
    color: #e8c969;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}
.automation-preview-heading strong {
    margin-top: 3px;
    color: #fff4c8;
    font-family: Georgia, "Noto Serif TC", serif;
    font-size: 27px;
}
.automation-preview-heading em {
    margin-top: 4px;
    color: #cbd9ce;
    font-size: 10px;
    font-style: normal;
}
.automation-preview-plots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}
.automation-preview-plots article {
    padding: 13px 14px;
    border: 1px solid rgba(244, 224, 164, .32);
    border-radius: 8px;
    background: rgba(255, 250, 224, .1);
}
.automation-preview-plots article::before {
    content: "";
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-right: 7px;
    border-radius: 50%;
    background: #efca68;
    box-shadow: 0 0 0 3px rgba(239, 202, 104, .12);
}
.automation-preview-plots article.ready::before { background: #f1b057; }
.automation-preview-plots article.working::before { background: #8ac39a; }
.automation-preview-plots span { color: #d5dfd5; font-size: 9px; }
.automation-preview-plots strong,
.automation-preview-plots small { display: block; }
.automation-preview-plots strong { margin-top: 4px; color: #fff5cc; font-size: 15px; }
.automation-preview-plots small { margin-top: 1px; color: #b9cbbf; font-size: 8px; }
.automation-preview-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    margin: 18px 0;
    text-align: center;
}
.automation-preview-flow span {
    padding: 9px 6px;
    border: 1px solid rgba(235, 210, 137, .28);
    border-radius: 999px;
    color: #f7e9b9;
    background: rgba(13, 47, 34, .5);
    font-size: 9px;
    font-weight: 900;
}
.automation-preview-flow i { color: #dfbd63; font-size: 12px; font-style: normal; }
.automation-preview-events {
    overflow: hidden;
    border: 1px solid rgba(235, 210, 137, .3);
    border-radius: 8px;
    background: rgba(10, 37, 27, .42);
}
.automation-preview-events p {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 9px 11px;
    border-bottom: 1px solid rgba(236, 219, 164, .13);
    color: #d5e1d7;
    font-size: 9px;
}
.automation-preview-events p:last-child { border-bottom: 0; }
.automation-preview-events b {
    padding: 3px 6px;
    border-radius: 999px;
    text-align: center;
    font-size: 8px;
}
.automation-preview-events .harvest { color: #2e5c3c; background: #dceecf; }
.automation-preview-events .production { color: #335d69; background: #dcebee; }
.landing-automation-preview figcaption {
    margin-top: 13px;
    color: #aebfb3;
    font-size: 8px;
    text-align: center;
}

.first-round {
    width: min(1120px, calc(100% - 48px));
    display: grid;
    grid-template-columns: .77fr 1.23fr;
    gap: 70px;
    margin: 105px auto;
    padding: 62px;
    border-radius: 6px 30px 6px 30px;
    color: #f8f1dc;
    background:
        linear-gradient(115deg, rgba(16, 45, 35, .98), rgba(36, 84, 62, .96)),
        url("ui-art/green-valley-region-v1.png") center / cover;
    box-shadow: var(--shadow);
}
.first-round .section-label { color: var(--gold-soft); }
.first-round h2 {
    color: #fff8df;
    font-size: clamp(33px, 3.1vw, 44px);
}
.first-round-intro > p:last-child {
    margin: 18px 0 0;
    color: #c9d4cb;
    font-size: 13px;
    line-height: 1.8;
}
.first-round ol {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 244, 203, .22);
    list-style: none;
}
.first-round li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 244, 203, .18);
}
.first-round li > span {
    color: var(--gold-soft);
    font-family: Georgia, serif;
    font-size: 12px;
}
.first-round li strong {
    color: #fff;
    font-size: 14px;
}
.first-round li p {
    margin: 3px 0 0;
    color: #becbc1;
    font-size: 11px;
}
.first-round-help {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 244, 203, .24);
    font-style: normal;
    font-size: 12px;
}
.first-round-help strong { color: #f4d77f; }
.first-round-help span { color: #d0d9d1; }

.landing-cta {
    width: min(1120px, calc(100% - 48px));
    display: grid;
    grid-template-columns: 88px 1fr auto;
    align-items: center;
    gap: 30px;
    margin: 0 auto 100px;
    padding: 40px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.landing-cta > img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    filter: drop-shadow(0 7px 7px rgba(34, 52, 39, .18));
}
.landing-cta h2 {
    margin-top: 0;
    font-size: clamp(35px, 3.5vw, 48px);
}
.cta-copy > p:last-child {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}
.landing-cta-actions {
    display: grid;
    gap: 9px;
}
.landing-button.light {
    color: #fff;
    background: var(--forest-800);
    box-shadow: 0 4px 0 var(--forest-950);
    white-space: nowrap;
}
.landing-button.discord {
    gap: 9px;
    color: #fff;
    background: #5865f2;
    box-shadow: 0 4px 0 #3942a5;
    white-space: nowrap;
}
.landing-button.discord img {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 7px;
}

.landing-footer {
    min-height: 116px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 27px max(24px, calc((100vw - 1220px) / 2));
    color: #d9dfd9;
    background: var(--forest-950);
}
.landing-footer .landing-brand img {
    width: 40px;
    height: 40px;
}
.landing-footer .landing-brand strong {
    color: #fff3ce;
    font-size: 15px;
}
.landing-footer p {
    margin: 0;
    color: #b9c5bc;
    font-size: 11px;
    text-align: center;
}
.landing-footer nav {
    justify-content: flex-end;
    gap: 15px;
    font-size: 11px;
}
.landing-footer a:hover { color: #f3d384; }

@media (max-width: 980px) {
    .landing-header nav > a:not(.nav-play, .nav-login, .nav-guide) { display: none; }
    .landing-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 56px;
        padding-top: 62px;
    }
    .hero-copy { max-width: 760px; }
    .hero-game-frame { max-width: 780px; }
    .landing-overview { gap: 50px; }
    .feature-chapter,
    .feature-kitchen {
        grid-template-columns: 1fr;
        gap: 43px;
    }
    .feature-kitchen .chapter-copy { order: -1; }
    .chapter-copy { max-width: 720px; }
    .first-round {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .first-round-help { grid-column: auto; }
    .landing-cta { grid-template-columns: 76px 1fr; }
    .landing-cta > img {
        width: 76px;
        height: 76px;
    }
    .landing-cta-actions {
        grid-column: 2;
        justify-self: start;
        grid-template-columns: repeat(2, auto);
    }
}

@media (max-width: 680px) {
    .landing-header {
        min-height: 64px;
        padding: 8px 14px;
    }
    .landing-header .landing-brand img {
        width: 43px;
        height: 43px;
    }
    .landing-brand strong { font-size: 16px; }
    .landing-brand small { font-size: 7px; }
    .landing-header nav { gap: 8px; }
    .nav-login { display: none; }
    .nav-play {
        max-width: 122px;
        padding: 8px 10px;
        font-size: 11px;
        line-height: 1.25;
        text-align: center;
    }
    .landing-hero {
        width: min(100% - 28px, 1220px);
        gap: 43px;
        padding: 48px 0 75px;
    }
    .hero-status { font-size: 10px; }
    .hero-copy h1 {
        font-size: clamp(37px, 10.7vw, 46px);
        line-height: 1.21;
    }
    .hero-lead {
        margin: 20px 0 24px;
        font-size: 14px;
        line-height: 1.82;
    }
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
    .landing-button {
        min-height: 45px;
        padding: 0 15px;
        font-size: 12px;
    }
    .hero-plain-facts { margin-top: 25px; }
    .hero-plain-facts span { padding: 0 8px; }
    .hero-game-frame {
        margin: 0 5px 0 0;
        border-width: 2px;
        border-radius: 9px;
        box-shadow: 7px 8px 0 #dfbd63;
    }
    .frame-bar {
        height: 28px;
        border-radius: 6px 6px 0 0;
    }
    .frame-bar b { font-size: 8px; }
    .hero-game-frame figcaption {
        position: static;
        max-width: none;
        border: 0;
        border-top: 1px solid #c9b16d;
        box-shadow: none;
        transform: none;
    }
    .hero-game-frame::after { display: none; }
    .landing-overview,
    .feature-stories,
    .first-round,
    .landing-cta {
        width: min(100% - 28px, 1120px);
    }
    .landing-overview {
        grid-template-columns: 1fr;
        gap: 29px;
        margin-top: 0;
        padding: 66px 0;
    }
    .overview-heading h2,
    .chapter-copy h2,
    .first-round h2 {
        font-size: 31px;
    }
    .overview-copy > p,
    .chapter-copy > p:not(.chapter-label, .chapter-footnote) {
        font-size: 14px;
    }
    .farmer-note {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .feature-chapter {
        min-height: 0;
        gap: 31px;
        padding: 65px 0;
    }
    .chapter-list li {
        grid-template-columns: 80px 1fr;
        gap: 9px;
    }
    .building-collage {
        min-height: 315px;
        border-radius: 6px 18px 6px 18px;
        box-shadow: 8px 9px 0 #e8d9ad;
    }
    .building-main { width: 210px; }
    .building-side {
        right: 14px;
        width: 88px;
    }
    .bonus-callout {
        left: 13px;
        bottom: 13px;
        padding: 9px 11px;
    }
    .feature-screenshot {
        aspect-ratio: 1 / 1.02;
        border-radius: 6px 15px 6px 15px;
        box-shadow: -7px 8px 0 #ded3b2;
    }
    .feature-kitchen .feature-screenshot img { object-position: 64% top; }
    .market-shot {
        box-shadow: 7px 8px 0 #e5d3a6;
    }
    .market-shot img { object-position: 35% top; }
    .landing-automation-preview {
        min-height: 0;
        padding: 21px 17px;
        border-radius: 16px 6px 16px 6px;
        box-shadow: 7px 8px 0 #dfc47d;
    }
    .automation-preview-heading { grid-template-columns: 78px minmax(0, 1fr); gap: 12px; }
    .automation-preview-heading img { width: 78px; height: 78px; }
    .automation-preview-heading strong { font-size: 21px; }
    .automation-preview-plots { grid-template-columns: 1fr; }
    .automation-preview-flow { gap: 4px; }
    .automation-preview-flow span { padding: 8px 3px; font-size: 8px; }
    .formula-note strong {
        flex-basis: 100%;
        margin-top: 2px;
    }
    .first-round {
        margin: 74px auto;
        padding: 33px 21px;
        border-radius: 5px 20px 5px 20px;
    }
    .first-round-help {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .landing-cta {
        grid-template-columns: 62px 1fr;
        gap: 17px;
        margin-bottom: 70px;
        padding: 32px 0;
    }
    .landing-cta > img {
        width: 62px;
        height: 62px;
        border-radius: 13px;
    }
    .landing-cta h2 { font-size: 35px; }
    .cta-copy > p:last-child { font-size: 11px; }
    .landing-cta-actions {
        grid-column: 1 / -1;
        width: 100%;
        grid-template-columns: 1fr;
    }
    .landing-cta-actions .landing-button { width: 100%; }
    .landing-footer {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        padding: 30px 18px;
        text-align: center;
    }
    .landing-footer nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
