@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Lato:wght@400;600;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-dark: #BB860B;
    --beige: #F7EAD4;
    --beige-light: #F3EFEA;
    --beige-soft: #EED9B3;
    --white: #FFFFFF;
    --brown: #6B4E2E;
    --brown-muted: #8B6E3C;
    --black: #1A140F;
    --black-deep: #0D0B08;

    --font-heading: 'Cinzel', 'Trajan Pro', serif;
    --font-body: 'Lato', 'Open Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black-deep);
    color: var(--brown);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= TOP NAV ================= */
.topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: linear-gradient(to bottom, rgba(13,11,8,0.85), rgba(13,11,8,0));
    backdrop-filter: blur(2px);
}

.topnav .nav-links {
    display: flex;
    gap: 28px;
}

.topnav .nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--beige-soft);
    font-weight: 600;
    transition: color .2s;
}
.topnav .nav-links a:hover,
.topnav .nav-links a.active { color: var(--gold); }

.topnav .logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--gold);
    text-shadow: 0 0 18px rgba(212,175,55,.5);
}

.topnav .nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--beige-soft);
}

.topnav .nav-right a:hover { color: var(--gold); }

.btn-register {
    border: 1px solid var(--gold);
    padding: 8px 18px;
    border-radius: 3px;
    color: var(--gold) !important;
    font-weight: 700;
    transition: all .2s;
}
.btn-register:hover { background: var(--gold); color: var(--black) !important; }

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 1180px;
    padding-top: 90px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero::before {
    /* fades the background smoothly into the dark footer color at the bottom
       and softly darkens the very top for the nav bar's readability */
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13,11,8,.35) 0%, rgba(13,11,8,0) 14%, rgba(13,11,8,0) 62%, rgba(13,11,8,.55) 84%, rgba(13,11,8,1) 100%);
    pointer-events: none;
}

.hero-character {
    position: relative;
    width: 620px;
    max-width: 60vw;
    margin-top: 10px;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

.hero-tagline {
    position: absolute;
    left: 40px;
    top: 400px;
    z-index: 3;
    max-width: 320px;
    padding: 30px 34px;
    border-radius: 50%/40%;
    background: radial-gradient(ellipse at center, rgba(13,11,8,.42) 0%, rgba(13,11,8,.22) 55%, rgba(13,11,8,0) 80%);
}

.hero-tagline h1 { text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.hero-tagline p.sub { text-shadow: 0 1px 8px rgba(0,0,0,.5); }

.hero-tagline h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--gold-dark);
    text-shadow: 0 2px 20px rgba(255,255,255,.5);
}

.hero-tagline p.sub {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--brown);
    margin-top: 10px;
    text-transform: uppercase;
}

.btn-ghost {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(247,234,212,.55);
    border: 1px solid var(--gold);
    color: var(--brown);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all .2s;
}
.btn-ghost:hover { background: var(--gold); color: var(--white); }

/* ================= REGISTER PANEL ================= */
.register-panel {
    position: absolute;
    right: 60px;
    top: 350px;
    z-index: 4;
    width: 330px;
    background: rgba(247, 238, 224, .96);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 30px 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.register-panel h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--brown);
    margin-bottom: 18px;
}

.field { margin-bottom: 14px; }

.field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--brown-muted);
    margin-bottom: 6px;
    letter-spacing: .5px;
}

.field .input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.field .input-wrap svg.icon-left {
    position: absolute;
    left: 12px;
    width: 15px;
    height: 15px;
    color: var(--brown-muted);
}

.field input {
    width: 100%;
    padding: 11px 14px 11px 36px;
    border: 1px solid #d8c7a8;
    border-radius: 4px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--brown);
    outline: none;
    transition: border-color .2s;
}
.field input:focus { border-color: var(--gold); }
.field input::placeholder { color: #b7a688; }

.toggle-pass {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--brown-muted);
    display: flex;
}
.toggle-pass svg { width: 16px; height: 16px; }

.btn-create {
    width: 100%;
    margin-top: 6px;
    padding: 13px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black-deep);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .15s, box-shadow .15s;
}
.btn-create:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(212,175,55,.4); }

.panel-divider {
    text-align: center;
    font-size: 11px;
    color: var(--brown-muted);
    margin: 14px 0 10px;
    letter-spacing: 1px;
}

.panel-login-link {
    display: block;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold-dark);
    font-weight: 700;
}
.panel-login-link:hover { text-decoration: underline; }

.form-msg {
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
    text-align: center;
}
.form-msg.error { background: #f6d6d6; color: #a12c2c; border: 1px solid #d99; }
.form-msg.success { background: #d9f2e0; color: #1e7a44; border: 1px solid #9cd9b0; }

/* ================= CHOOSE PATH ================= */
.path-section {
    position: relative;
    z-index: 3;
    margin-top: -60px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.path-card {
    background: rgba(247, 238, 224, .9);
    border: 1px solid var(--gold);
    border-radius: 14px;
    padding: 34px 60px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.path-card > h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--brown-muted);
    margin-bottom: 22px;
}

.path-grid {
    display: flex;
    gap: 46px;
}

.path-item { display: flex; flex-direction: column; align-items: center; text-align: center; }

.path-icon {
    width: 74px; height: 74px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(187,134,11,.4);
    margin-bottom: 10px;
    transition: transform .2s;
}
.path-item:hover .path-icon { transform: scale(1.08) translateY(-2px); }
.path-icon img { width: 100%; height: 100%; object-fit: contain; }

.path-item .p-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brown);
}
.path-item .p-desc {
    font-size: 10px;
    letter-spacing: .5px;
    color: var(--brown-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

.btn-play {
    margin-top: 30px;
    padding: 15px 46px;
    border: none;
    border-radius: 26px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black-deep);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 2px;
    box-shadow: 0 10px 26px rgba(187,134,11,.45);
    transition: transform .15s;
}
.btn-play:hover { transform: translateY(-2px); }

/* ================= FEATURE CARDS ================= */
.features {
    background: var(--black-deep);
    padding: 70px 0 60px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.feature-card {
    position: relative;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #3a2f22;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: background-size .5s ease, border-color .4s ease, box-shadow .4s ease;
}
.feature-card:hover {
    background-size: 118%;
    border-color: var(--gold);
    box-shadow: 0 14px 34px rgba(0,0,0,.5), 0 0 24px rgba(212,175,55,.35);
}
.feature-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,11,8,0) 40%, rgba(13,11,8,.92) 100%);
}
.feature-card .fc-text {
    position: relative;
    z-index: 2;
    padding: 18px;
}
.feature-card h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.feature-card:hover h4 {
    text-shadow: 0 0 12px rgba(212,175,55,.7);
}
.feature-card p {
    color: var(--beige-soft);
    font-size: 12px;
    line-height: 1.4;
}

/* ================= AUTH PAGES (login / account) ================= */
.auth-hero {
    position: relative;
    min-height: 640px;
    padding-top: 90px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,11,8,.4) 0%, rgba(13,11,8,.15) 30%, rgba(13,11,8,.6) 82%, rgba(13,11,8,1) 100%);
    pointer-events: none;
}

.auth-card {
    position: relative;
    z-index: 2;
    width: 380px;
    max-width: 90vw;
    background: rgba(247, 238, 224, .96);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 36px 34px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.auth-card h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--brown);
    margin-bottom: 22px;
}

.auth-card .field-note {
    font-size: 11px;
    color: var(--brown-muted);
    margin-top: -8px;
    margin-bottom: 14px;
}

/* ================= FALLING FX (petals + snow) ================= */
.fx-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.petal, .snowflake {
    position: absolute;
    top: -6%;
    animation: fx-fall linear infinite, fx-sway ease-in-out infinite;
}

.petal {
    border-radius: 50% 0 50% 50%;
    background: linear-gradient(135deg, #f9d3e0, var(--gold));
    opacity: .85;
}

.snowflake {
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 4px rgba(255,255,255,.8);
    opacity: .75;
}

@keyframes fx-fall {
    to { transform: translateY(112vh) rotate(340deg); }
}

@keyframes fx-sway {
    0%, 100% { margin-left: 0; }
    50% { margin-left: 36px; }
}

/* ================= RANKING PAGE ================= */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: -40px auto 50px;
    position: relative;
    z-index: 3;
    max-width: 1000px;
}

.stat-box {
    background: rgba(247, 238, 224, .96);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 18px 10px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.stat-box .stat-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--brown-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.stat-box .stat-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--brown);
}

.stat-box .stat-value.online { color: #1e7a44; }
.stat-box .stat-value.offline { color: #a12c2c; }

.rank-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}

.rank-card {
    background: rgba(247, 238, 224, .96);
    border: 1px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,.3);
}

.rank-card h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--brown);
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid #dcc9a0;
    background: rgba(212,175,55,.15);
}

.rank-list { list-style: none; }

.rank-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid #e7d9bb;
    transition: background .2s;
}
.rank-row:last-child { border-bottom: none; }
.rank-row:hover { background: rgba(212,175,55,.14); }

.rank-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--gold-dark);
    width: 18px;
    flex-shrink: 0;
}

.rank-icon {
    width: 30px; height: 30px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.rank-icon.round { border-radius: 50%; }

.rank-info { flex: 1; min-width: 0; }

.rank-name {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brown);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-name .vip-badge { width: 14px; height: 14px; flex-shrink: 0; }

.rank-sub {
    font-size: 10px;
    color: var(--brown-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.rank-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.rank-empty {
    padding: 20px 16px;
    text-align: center;
    font-size: 12px;
    color: var(--brown-muted);
}

@media (max-width: 900px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .rank-section { grid-template-columns: 1fr; }
}

/* ================= RANKING PAGE ================= */
.topranking tr td { border-bottom: 1px solid #241d14; }
.topranking tr:last-child td { border-bottom: none; }

.rk-tab-btn {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 10px 26px;
    border-radius: 24px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--beige-soft);
    transition: all .2s;
}
.rk-tab-btn:hover { background: rgba(212,175,55,.15); }
.rk-tab-btn.active {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black-deep);
    font-weight: 700;
}

.rk-list {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(247, 238, 224, .96);
    border: 1px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
}

.rk-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-bottom: 1px solid #e6d7bb;
    transition: background .2s;
}
.rk-row:last-child { border-bottom: none; }
.rk-row:hover { background: rgba(212,175,55,.14); }

.rk-num {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brown-muted);
    width: 34px;
    flex-shrink: 0;
}

.rk-icon { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; }
.rk-face { width: 34px; height: 34px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }

.rk-name {
    flex: 1;
    font-weight: 700;
    color: var(--brown);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rk-vip { width: 18px; height: 18px; object-fit: contain; }

.rk-title {
    font-size: 12px;
    color: var(--brown-muted);
    font-family: var(--font-heading);
    letter-spacing: .5px;
    margin-right: 10px;
}

.rk-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-dark);
    white-space: nowrap;
}

.rk-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--brown-muted);
    font-size: 13px;
}

@media (max-width: 560px) {
    .rk-title { display: none; }
}
/* ================= NAV SERVER STATUS PILL ================= */
.nav-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: .8px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,.4);
    background: rgba(0,0,0,.25);
    color: var(--beige-soft);
}
.nav-status-pill .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-on  { background: #24e07a; box-shadow: 0 0 8px #24e07a, 0 0 2px #24e07a; }
.dot-off { background: #ff4d4d; box-shadow: 0 0 8px #ff4d4d, 0 0 2px #ff4d4d; }

@media (max-width: 1100px) {
    .nav-status-pill { display: none; }
}
/* ================= MUSIC TOGGLE BUTTON ================= */
.music-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: linear-gradient(180deg, rgba(26,20,15,.92), rgba(13,11,8,.92));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,.5);
    transition: transform .2s, box-shadow .2s;
}
.music-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 26px rgba(212,175,55,.4);
}
.music-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}
.music-toggle .bar {
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
    display: inline-block;
    margin: 0 1px;
    animation: music-bounce 1s ease-in-out infinite;
}
.music-toggle:not(.playing) .bar { animation-play-state: paused; height: 4px !important; }
.music-toggle .bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.music-toggle .bar:nth-child(2) { height: 16px; animation-delay: .15s; }
.music-toggle .bar:nth-child(3) { height: 8px;  animation-delay: .3s; }
@keyframes music-bounce {
    0%, 100% { transform: scaleY(.4); }
    50% { transform: scaleY(1); }
}

@media (max-width: 560px) {
    .music-toggle { bottom: 16px; right: 16px; width: 46px; height: 46px; }
}

/* ================= FOOTER ================= */
footer {
    background: var(--black-deep);
    border-top: 1px solid #2a2118;
    padding: 26px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold);
}

.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a {
    font-size: 12px;
    color: var(--beige-soft);
    opacity: .8;
}
.footer-links a:hover { color: var(--gold); opacity: 1; }

.footer-copy {
    font-size: 11px;
    color: #8a7d6a;
}

.footer-social { display: flex; gap: 14px; }
.footer-social a {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid #4a3a2a;
    display: flex; align-items: center; justify-content: center;
    color: var(--beige-soft);
    transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 14px; height: 14px; }
<!-- ================= FEATURE CARDS ================= -->
<section class="features">
    <div class="container features-grid">

        <div class="feature-card" style="background-image:url('images/feature-monsterzone.jpg');">
            <div class="fc-text">
                <h4>Monster Zone</h4>
                <p>Hunt endless monsters that drop CP bags &amp; rare loot</p>
            </div>
        </div>

        <div class="feature-card" style="background-image:url('images/feature-guildwar.jpg');">
            <div class="fc-text">
                <h4>Guild War Arena</h4>
                <p>Fight for the pole and dominate in Guild Wars</p>
            </div>
        </div>

        <div class="feature-card" style="background-image:url('images/feature-dailyquest.jpg');">
            <div class="fc-text">
                <h4>Daily Quests</h4>
                <p>Complete daily tasks for rewards, Conquer-style</p>
            </div>
        </div>

        <div class="feature-card" style="background-image:url('images/feature-snowbanshee.jpg');">
            <div class="fc-text">
                <h4>Snow Banshee</h4>
                <p>Defeat the Snow Banshee for Silver, DP &amp; CPs</p>
            </div>
        </div>

    </div>
</section>
/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .hero { min-height: auto; padding-bottom: 60px; }
    .hero-tagline { position: static; margin-top: 20px; text-align: center; max-width: 100%; padding: 0 24px; }
    .register-panel { position: static; margin: 20px auto 0; }
    .hero-character { width: 80%; margin: 0 auto; }
    .path-card { padding: 30px 24px; }
    .path-grid { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .topnav .nav-links { display: none; }
}

@media (max-width: 560px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .hero-tagline h1 { font-size: 38px; }
}