/* TwojaTrasa.pl — publiczna strona główna */
.home-v2 {
    --home-bg: #050a0c;
    --home-surface: #0b1418;
    --home-surface-2: #101d21;
    --home-line: rgba(219, 238, 229, .12);
    --home-text: #f6fbf8;
    --home-muted: #a5b5ae;
    --home-lime: #b8ff2c;
    --home-lime-strong: #9df500;
    --home-cyan: #58e5dc;
    --home-radius: 28px;
    --home-max: 1400px;
    background:
        radial-gradient(circle at 82% 9%, rgba(88,229,220,.08), transparent 25%),
        radial-gradient(circle at 15% 1%, rgba(184,255,44,.08), transparent 27%),
        var(--home-bg);
    color: var(--home-text);
}
.home-v2::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom,#000,transparent 72%);
}
.home-v2 .home-header {
    top: 14px;
    width: min(calc(100% - 28px), var(--home-max));
    min-height: 72px;
    padding: 10px 12px 10px 16px;
    border-color: rgba(207,232,218,.13);
    border-radius: 22px;
    background: rgba(7,15,17,.84);
    box-shadow: 0 20px 60px rgba(0,0,0,.26);
}
.home-v2 .home-brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(184,255,44,.22);
    border-radius: 15px;
    background: rgba(184,255,44,.08);
}
.home-v2 .home-brand-mark .brand-logo { width: 34px; height: 34px; border-radius: 10px; }
.home-v2 .brand strong { font-size: 1rem; letter-spacing: -.02em; }
.home-v2 .brand small { color: #91a59c; font-size: .68rem; font-weight: 750; letter-spacing: .04em; }
.home-v2 .main-nav { gap: 3px; }
.home-v2 .main-nav > a,
.home-v2 .main-nav > .nav-dropdown > a { padding: 11px 13px; border-radius: 11px; color: #b9c7c0; font-size: .82rem; font-weight: 800; }
.home-v2 .main-nav > a:hover,
.home-v2 .main-nav > .nav-dropdown > a:hover { background: rgba(184,255,44,.09); color: #fff; }
.home-main { overflow: hidden; }

/* Hero */
.home-hero {
    position: relative;
    min-height: 860px;
    padding: 152px max(24px,calc((100vw - var(--home-max))/2)) 120px;
    overflow: hidden;
    isolation: isolate;
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 78% 42%,rgba(184,255,44,.10),transparent 20%),
        radial-gradient(circle at 74% 44%,rgba(88,229,220,.09),transparent 34%),
        linear-gradient(180deg,rgba(255,255,255,.018),transparent 72%);
}
.home-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -240px;
    z-index: -2;
    width: 1100px;
    height: 480px;
    border: 1px solid rgba(184,255,44,.10);
    border-radius: 50%;
    transform: translateX(-50%) rotate(-5deg);
    box-shadow: 0 0 140px rgba(184,255,44,.05) inset;
}
.home-orbit { position: absolute; z-index: -2; border: 1px solid rgba(200,231,216,.075); border-radius: 50%; pointer-events: none; }
.home-orbit-one { top: 130px; right: -220px; width: 800px; height: 800px; }
.home-orbit-two { top: 270px; right: -40px; width: 480px; height: 480px; border-color: rgba(184,255,44,.10); }
.home-hero-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(420px,.78fr); gap: clamp(50px,7vw,120px); align-items: center; width: 100%; max-width: var(--home-max); margin: 0 auto; }
.home-hero-copy { max-width: 810px; }
.home-live-pill { display: inline-flex; align-items: center; gap: 9px; min-height: 34px; margin-bottom: 25px; padding: 7px 12px; border: 1px solid rgba(184,255,44,.18); border-radius: 999px; background: rgba(184,255,44,.06); color: #dfffa0; font-size: .69rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.home-live-pill i,
.home-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--home-lime); box-shadow: 0 0 0 5px rgba(184,255,44,.09),0 0 16px rgba(184,255,44,.68); }
.home-hero h1 { max-width: 820px; margin: 0; color: #f8fcfa; font: 700 clamp(4rem,7.2vw,7.6rem)/.89 "Space Grotesk",sans-serif; letter-spacing: -.072em; }
.home-hero h1 em { color: var(--home-lime); font-style: normal; }
.home-hero-copy > p { max-width: 720px; margin: 28px 0 0; color: #b5c4bd; font-size: clamp(1rem,1.4vw,1.18rem); line-height: 1.75; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.home-v2 .btn { min-height: 51px; border-radius: 14px; font-size: .86rem; }
.home-btn-primary { border: 1px solid var(--home-lime)!important; background: var(--home-lime)!important; color: #071006!important; box-shadow: 0 14px 34px rgba(184,255,44,.15); }
.home-btn-primary:hover { background: #c6ff51!important; transform: translateY(-2px); box-shadow: 0 18px 42px rgba(184,255,44,.22); }
.home-btn-ghost { border: 1px solid rgba(220,237,228,.16)!important; background: rgba(255,255,255,.035)!important; color: #edf6f1!important; }
.home-btn-ghost:hover { border-color: rgba(184,255,44,.35)!important; background: rgba(184,255,44,.07)!important; transform: translateY(-2px); }
.home-btn-light { border: 0!important; background: #fff!important; color: #142017!important; }
.home-btn-dark { border: 1px solid rgba(5,11,8,.22)!important; background: #07100b!important; color: #fff!important; }
.home-hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 25px; color: #8fa299; font-size: .75rem; font-weight: 750; }
.home-hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.home-hero-points i { color: var(--home-lime); }

/* Hero journey card */
.home-journey-wrap { position: relative; min-width: 0; padding: 32px 8px; }
.home-journey-glow { position: absolute; inset: 13% 8%; z-index: -1; border-radius: 50%; background: rgba(184,255,44,.12); filter: blur(70px); }
.home-journey-card { position: relative; z-index: 2; padding: 25px; border: 1px solid rgba(211,234,222,.15); border-radius: 30px; background: linear-gradient(150deg,rgba(20,34,36,.94),rgba(7,15,18,.97)); box-shadow: 0 38px 100px rgba(0,0,0,.42); transform: rotate(1.3deg); }
.home-journey-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(130deg,rgba(255,255,255,.07),transparent 30%); }
.home-journey-card header { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--home-line); }
.home-journey-card header small,
.home-journey-card header strong { display: block; }
.home-journey-card header small { margin-bottom: 5px; color: #82978d; font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.home-journey-card header strong { font: 700 1.3rem "Space Grotesk",sans-serif; }
.home-status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 9px; border-radius: 99px; background: rgba(184,255,44,.08); color: #dafeab; font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.home-status i { width: 6px; height: 6px; box-shadow: 0 0 10px rgba(184,255,44,.68); }
.home-route-line { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: start; margin: 28px 7px 25px; }
.home-route-line > i { height: 2px; margin-top: 7px; background: linear-gradient(90deg,var(--home-lime),rgba(88,229,220,.60)); }
.home-route-line > span { display: grid; justify-items: center; gap: 7px; }
.home-route-line b { width: 15px; height: 15px; border: 3px solid var(--home-surface); border-radius: 50%; background: var(--home-lime); box-shadow: 0 0 0 2px var(--home-lime); }
.home-route-line span:not(.is-start):not(.is-end) b { background: var(--home-cyan); box-shadow: 0 0 0 2px var(--home-cyan); }
.home-route-line .is-end b { background: #fff; box-shadow: 0 0 0 2px #fff; }
.home-route-line small { color: #81948a; font-size: .59rem; font-weight: 750; }
.home-journey-options { position: relative; z-index: 1; display: grid; gap: 9px; }
.home-journey-options a { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 13px; padding: 12px; border: 1px solid rgba(211,234,222,.10); border-radius: 17px; background: rgba(255,255,255,.025); color: #eef7f2; }
.home-journey-options a:hover { border-color: rgba(184,255,44,.28); background: rgba(184,255,44,.06); transform: translateX(3px); }
.route-symbol { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 13px; }
.route-map { background: rgba(184,255,44,.12); color: var(--home-lime); }
.route-clock { background: rgba(88,229,220,.11); color: var(--home-cyan); }
.route-plan { background: rgba(142,125,255,.12); color: #b7aaff; }
.home-journey-options small,
.home-journey-options strong { display: block; }
.home-journey-options small { margin-bottom: 2px; color: #81958b; font-size: .62rem; }
.home-journey-options strong { font-size: .82rem; }
.home-journey-options a > i { color: #70847a; font-size: .7rem; }
.home-floating-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; min-width: 145px; padding: 11px 13px; border: 1px solid rgba(216,235,225,.15); border-radius: 17px; background: rgba(12,23,24,.92); box-shadow: 0 18px 45px rgba(0,0,0,.34); backdrop-filter: blur(12px); }
.home-floating-note > i { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: rgba(184,255,44,.12); color: var(--home-lime); }
.home-floating-note small,
.home-floating-note strong { display: block; }
.home-floating-note small { color: #7f9389; font-size: .58rem; }
.home-floating-note strong { margin-top: 2px; font-size: .72rem; }
.home-note-map { left: -35px; bottom: 13px; }
.home-note-community { top: 0; right: -32px; }
.home-note-community > i { background: rgba(88,229,220,.11); color: var(--home-cyan); }

/* Shortcuts */
.home-shortcuts { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; width: min(calc(100% - 48px),var(--home-max)); margin: -50px auto 0; overflow: hidden; border: 1px solid var(--home-line); border-radius: 25px; background: var(--home-line); box-shadow: 0 28px 80px rgba(0,0,0,.26); }
.home-shortcuts a { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px; min-height: 104px; padding: 18px; background: rgba(11,20,24,.98); color: #eaf4ee; }
.home-shortcuts a:hover { background: #111f21; }
.home-shortcuts a > span { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 13px; background: rgba(184,255,44,.09); color: var(--home-lime); }
.home-shortcuts a > div { min-width: 0; }
.home-shortcuts small,
.home-shortcuts strong { display: block; }
.home-shortcuts small { margin-bottom: 4px; overflow: hidden; color: #7f9389; font-size: .61rem; text-overflow: ellipsis; white-space: nowrap; }
.home-shortcuts strong { font-size: .81rem; }
.home-shortcuts a > i { color: #64776e; font-size: .69rem; }

/* Shared sections */
.home-section { width: min(100%,var(--home-max)); margin: 0 auto; padding: 118px 24px; }
.home-section-heading { max-width: 870px; margin-bottom: 43px; }
.home-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; max-width: none; }
.home-heading-row > p { max-width: 540px; margin: 0 0 5px; color: var(--home-muted); line-height: 1.75; }
.home-kicker { display: block; margin-bottom: 14px; color: var(--home-lime); font-size: .68rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.home-section h2,
.home-final-cta h2 { margin: 0; color: #f6fbf8; font: 700 clamp(2.5rem,5vw,5rem)/.98 "Space Grotesk",sans-serif; letter-spacing: -.055em; }
.home-section-heading > p { max-width: 720px; margin: 18px 0 0; color: var(--home-muted); font-size: 1rem; line-height: 1.75; }

/* Map showcase */
.home-map-section { padding-top: 150px; }
.home-map-showcase { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(330px,.65fr); gap: 17px; }
.home-map-preview { position: relative; min-height: 600px; overflow: hidden; border: 1px solid rgba(206,232,218,.14); border-radius: 32px; background: #0a1417; box-shadow: 0 26px 80px rgba(0,0,0,.28); }
.home-map-preview::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,rgba(4,10,12,.12),rgba(4,10,12,.08) 50%,rgba(4,10,12,.58)); }
.home-map-preview img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: center; filter: saturate(.88) contrast(1.04); }
.home-map-topbar { position: absolute; top: 18px; left: 18px; right: 18px; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(7,16,18,.82); backdrop-filter: blur(12px); }
.home-map-topbar span { display: inline-flex; align-items: center; gap: 8px; color: #cfdbd4; font-size: .7rem; font-weight: 800; }
.home-map-topbar span i { color: var(--home-lime); }
.home-map-topbar b { font-size: .68rem; }
.home-map-open { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; display: flex; align-items: center; gap: 12px; max-width: 360px; padding: 15px; border: 1px solid rgba(184,255,44,.28); border-radius: 18px; background: rgba(7,16,18,.90); color: #fff; backdrop-filter: blur(13px); }
.home-map-open > i { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; background: var(--home-lime); color: #071006; }
.home-map-open small,
.home-map-open strong { display: block; }
.home-map-open small { margin-bottom: 3px; color: #8fa298; font-size: .63rem; }
.home-map-open strong { font-size: .84rem; }
.home-map-features { display: grid; gap: 12px; }
.home-map-features article { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 15px; align-content: center; min-height: 190px; padding: 24px; border: 1px solid var(--home-line); border-radius: 26px; background: linear-gradient(145deg,rgba(16,29,32,.83),rgba(8,16,19,.90)); }
.home-map-features article > span { display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid rgba(184,255,44,.20); border-radius: 12px; color: var(--home-lime); font: 700 .65rem "Space Grotesk",sans-serif; }
.home-map-features h3 { margin: 2px 0 8px; font-size: 1.08rem; }
.home-map-features p { margin: 0; color: var(--home-muted); font-size: .78rem; line-height: 1.65; }

/* Feature cards */
.home-discover-section { position: relative; }
.home-discover-section::before { content: ""; position: absolute; inset: 50px 24px; z-index: -1; border-radius: 55px; background: radial-gradient(circle at 50% 0,rgba(184,255,44,.055),transparent 40%); }
.home-feature-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 13px; }
.home-feature-card { position: relative; display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 16px; min-height: 260px; padding: 25px; overflow: hidden; border: 1px solid var(--home-line); border-radius: 27px; background: linear-gradient(150deg,rgba(17,30,33,.88),rgba(7,15,18,.94)); color: #f1f8f4; }
.home-feature-card::before { content: ""; position: absolute; right: -40px; bottom: -50px; width: 150px; height: 150px; border-radius: 50%; background: rgba(184,255,44,.04); transition: transform .25s ease; }
.home-feature-card:hover { border-color: rgba(184,255,44,.28); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.home-feature-card:hover::before { transform: scale(1.35); }
.home-feature-card.is-wide { grid-column: span 2; }
.home-feature-icon { position: relative; z-index: 1; display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; background: rgba(184,255,44,.11); color: var(--home-lime); font-size: 1rem; }
.home-feature-card > div { position: relative; z-index: 1; align-self: center; }
.home-feature-card small { color: #7f958a; font-size: .63rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.home-feature-card h3 { margin: 8px 0 9px; font-size: clamp(1.2rem,2vw,1.7rem); }
.home-feature-card p { max-width: 520px; margin: 0; color: var(--home-muted); font-size: .79rem; line-height: 1.65; }
.home-feature-card > i { position: relative; z-index: 1; align-self: start; color: #71857b; font-size: .72rem; }
.home-feature-community { border-color: rgba(88,101,242,.24); background: linear-gradient(145deg,rgba(54,63,164,.20),rgba(8,15,22,.95)); }
.home-feature-community .home-feature-icon { background: rgba(88,101,242,.19); color: #aeb5ff; }

/* Posts */
.home-posts-section { padding-top: 88px; }
.home-text-link { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; margin-bottom: 7px; color: var(--home-lime); font-size: .78rem; font-weight: 900; }
.home-posts-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
.home-posts-grid .post-card { display: flex; flex-direction: column; min-height: 320px; padding: 27px; border: 1px solid var(--home-line); border-radius: 27px; background: linear-gradient(150deg,rgba(17,30,33,.86),rgba(7,15,18,.93)); box-shadow: none; }
.home-posts-grid .post-card:hover { border-color: rgba(184,255,44,.27); transform: translateY(-4px); }
.home-posts-grid .post-date { width: max-content; padding: 7px 9px; border-radius: 99px; background: rgba(184,255,44,.08); color: #cfff73; font-size: .61rem; }
.home-posts-grid .post-card h3 { margin: 24px 0 12px; font-size: clamp(1.3rem,2vw,1.72rem); line-height: 1.15; }
.home-posts-grid .post-card p { margin: 0; color: var(--home-muted); font-size: .82rem; line-height: 1.7; }
.home-posts-grid .post-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; color: var(--home-lime); font-size: .77rem; font-weight: 900; }
.home-posts-loading { grid-column: 1/-1; display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 240px; color: var(--home-muted); }

/* Community */
.home-community-section { max-width: calc(var(--home-max) + 48px); padding-top: 80px; padding-bottom: 80px; }
.home-community-card { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(350px,.65fr); gap: 60px; padding: clamp(35px,6vw,80px); overflow: hidden; border-radius: 42px; background: radial-gradient(circle at 3% 100%,rgba(255,255,255,.19),transparent 31%),linear-gradient(135deg,#a8ed18,#c8ff54 58%,#78e9d8); color: #0c170c; }
.home-community-copy { align-self: center; max-width: 720px; }
.home-community-copy .home-kicker { color: #29410d; }
.home-community-copy h2 { color: #0b150b; }
.home-community-copy p { max-width: 680px; margin: 21px 0 27px; color: #30422d; line-height: 1.75; }
.home-social-list { display: grid; gap: 9px; align-content: center; }
.home-social-list a { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 13px; border: 1px solid rgba(7,19,8,.13); border-radius: 17px; background: rgba(255,255,255,.42); color: #132012; }
.home-social-list a:hover { background: rgba(255,255,255,.68); transform: translateX(3px); }
.home-social-list a > i:first-child { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: rgba(7,18,8,.09); font-size: 1rem; }
.home-social-list strong,
.home-social-list small { display: block; }
.home-social-list strong { font-size: .78rem; }
.home-social-list small { margin-top: 2px; color: #4c6047; font-size: .63rem; }
.home-social-list a > i:last-child { font-size: .65rem; }

/* Account */
.home-account-section { display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.78fr); gap: clamp(50px,8vw,120px); align-items: center; }
.home-account-copy > p { max-width: 680px; margin: 22px 0; color: var(--home-muted); line-height: 1.75; }
.home-account-copy ul { display: grid; gap: 11px; margin: 27px 0 0; padding: 0; list-style: none; color: #d4e0da; font-size: .82rem; }
.home-account-copy li { display: flex; align-items: center; gap: 10px; }
.home-account-copy li i { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 8px; background: rgba(184,255,44,.10); color: var(--home-lime); font-size: .65rem; }
.home-account-card { position: relative; padding: 28px; overflow: hidden; border: 1px solid rgba(184,255,44,.20); border-radius: 31px; background: radial-gradient(circle at 85% 0,rgba(184,255,44,.14),transparent 31%),linear-gradient(145deg,rgba(17,31,33,.95),rgba(7,15,18,.98)); box-shadow: 0 30px 90px rgba(0,0,0,.30); }
.home-account-card::after { content: "TT"; position: absolute; right: -12px; bottom: -40px; color: rgba(255,255,255,.025); font: 700 9rem "Space Grotesk",sans-serif; letter-spacing: -.1em; }
.home-account-top { position: relative; z-index: 1; display: grid; grid-template-columns: auto minmax(0,1fr); gap: 17px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--home-line); }
.home-account-card .account-avatar { display: grid; width: 66px; height: 66px; place-items: center; overflow: hidden; border: 0; border-radius: 21px; background: var(--home-lime); color: #091207; font-size: 1.35rem; }
.home-account-card .account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.home-account-top small { color: var(--home-lime); font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.home-account-top strong { display: block; margin: 5px 0 4px; overflow-wrap: anywhere; font: 700 1.25rem "Space Grotesk",sans-serif; }
.home-account-top p { margin: 0; color: #8ea198; font-size: .72rem; line-height: 1.5; }
.home-account-actions { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding-top: 20px; }
.home-account-actions [hidden] { display: none!important; }
.home-account-actions .btn { justify-content: center; min-width: 0; }
.home-account-link { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 3px 3px; color: #c8d6cf; font-size: .75rem; font-weight: 850; }
.home-account-link i { color: var(--home-lime); }

/* Final CTA and footer */
.home-final-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; width: min(calc(100% - 48px),var(--home-max)); margin: 20px auto 110px; padding: clamp(32px,5vw,60px); border-radius: 35px; background: linear-gradient(120deg,#b8ff2c,#d8ff82); color: #0a1309; }
.home-final-cta .home-kicker { margin-bottom: 10px; color: #38540f; }
.home-final-cta h2 { color: #0a1309; font-size: clamp(2rem,4vw,4.1rem); }
.home-final-cta p { margin: 11px 0 0; color: #42513d; }
.home-v2 .home-footer { display: grid; grid-template-columns: auto minmax(180px,1fr) auto; align-items: center; gap: 25px; width: min(calc(100% - 28px),var(--home-max)); margin: 0 auto 15px; padding: 24px 26px; border: 1px solid var(--home-line); border-radius: 25px; background: rgba(10,19,22,.85); }
.home-footer-brand { display: flex; align-items: center; gap: 10px; }
.home-footer-brand img { width: 37px; height: 37px; border-radius: 11px; }
.home-footer-brand strong,
.home-footer-brand span { display: block; }
.home-footer-brand strong { font-size: .85rem; }
.home-footer-brand span { margin-top: 2px; color: #7f9289; font-size: .59rem; }
.home-footer > p { margin: 0; color: #82948b; font-size: .68rem; }
.home-v2 .home-footer nav { justify-content: flex-end; }
.home-v2 .home-footer nav > a,
.home-v2 .home-footer .tt-menu-link { padding: 7px 8px; color: #9eafa7; font-size: .67rem; font-weight: 750; }

@media (max-width: 1180px) {
    .home-hero { min-height: 800px; }
    .home-hero-grid { grid-template-columns: minmax(0,1fr) minmax(360px,.75fr); gap: 45px; }
    .home-note-map { left: -15px; }
    .home-note-community { right: -10px; }
    .home-feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .home-feature-card.is-wide { grid-column: span 1; }
    .home-feature-card { min-height: 240px; }
    .home-community-card { gap: 35px; }
}

@media (max-width: 900px) {
    .home-hero { min-height: 0; padding: 132px 20px 100px; }
    .home-hero-grid { grid-template-columns: 1fr; gap: 45px; }
    .home-hero-copy { max-width: 800px; }
    .home-hero h1 { max-width: 760px; }
    .home-journey-wrap { width: min(100%,620px); margin: 0 auto; }
    .home-shortcuts { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .home-heading-row { display: grid; gap: 20px; }
    .home-map-showcase { grid-template-columns: 1fr; }
    .home-map-features { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .home-map-features article { display: block; min-height: 210px; }
    .home-map-features article > span { margin-bottom: 18px; }
    .home-posts-grid { grid-template-columns: 1fr; }
    .home-posts-grid .post-card { min-height: 260px; }
    .home-community-card,
    .home-account-section { grid-template-columns: 1fr; }
    .home-social-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .home-account-card { width: min(100%,620px); }
    .home-v2 .home-footer { grid-template-columns: 1fr auto; }
    .home-footer > p { display: none; }
}

@media (max-width: 760px) {
    .home-v2 .home-header { top: 8px; left: auto; width: calc(100% - 16px); min-height: 64px; margin: 0 auto; padding: 8px 9px; transform: none; border-radius: 18px; }
    .home-v2 .home-brand-mark { width: 41px; height: 41px; border-radius: 13px; }
    .home-v2 .home-brand-mark .brand-logo { width: 30px; height: 30px; }
    .home-v2 .nav-toggle { display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; }
    .home-v2 .main-nav { width: 100%; padding: 8px 0 0; }
    .home-v2 .main-nav.is-open { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
    .home-v2 .main-nav > a,
    .home-v2 .main-nav > .nav-dropdown > a { justify-content: center; width: 100%; min-height: 44px; text-align: center; }
    .home-hero { padding-top: 118px; }
    .home-hero h1 { font-size: clamp(3.25rem,14vw,5.5rem); }
    .home-hero-copy > p { font-size: .96rem; line-height: 1.65; }
    .home-hero-actions { display: grid; grid-template-columns: 1fr; }
    .home-hero-actions .btn { width: 100%; justify-content: center; }
    .home-journey-wrap { padding: 22px 0; }
    .home-journey-card { padding: 18px; border-radius: 24px; transform: none; }
    .home-floating-note { display: none; }
    .home-shortcuts { width: calc(100% - 28px); margin-top: -48px; }
    .home-shortcuts a { min-height: 92px; padding: 13px; }
    .home-shortcuts a > span { width: 38px; height: 38px; }
    .home-shortcuts a > i { display: none; }
    .home-section { padding: 90px 15px; }
    .home-map-section { padding-top: 115px; }
    .home-section-heading { margin-bottom: 30px; }
    .home-section h2 { font-size: clamp(2.4rem,11vw,4.2rem); }
    .home-map-preview,
    .home-map-preview img { min-height: 450px; }
    .home-map-features { grid-template-columns: 1fr; }
    .home-map-features article { display: grid; min-height: 0; }
    .home-map-features article > span { margin-bottom: 0; }
    .home-feature-grid { grid-template-columns: 1fr; }
    .home-feature-card { min-height: 220px; padding: 21px; }
    .home-community-section { padding-inline: 14px; }
    .home-community-card { padding: 31px 21px; border-radius: 30px; }
    .home-social-list { grid-template-columns: 1fr; }
    .home-account-section { gap: 38px; }
    .home-account-actions { grid-template-columns: 1fr; }
    .home-account-link { grid-column: auto; }
    .home-final-cta { display: grid; width: calc(100% - 28px); margin-bottom: 75px; padding: 30px 22px; border-radius: 28px; }
    .home-final-cta .btn { width: 100%; justify-content: center; }
    .home-v2 .home-footer { display: grid; grid-template-columns: 1fr; padding: 20px; }
    .home-v2 .home-footer nav { justify-content: flex-start; }
}

@media (max-width: 520px) {
    .home-v2 .brand small { display: block; }
    .home-v2 .brand strong { font-size: .88rem; }
    .home-hero { padding-inline: 15px; }
    .home-live-pill { font-size: .59rem; }
    .home-hero h1 { font-size: clamp(3rem,15.5vw,4.5rem); letter-spacing: -.065em; }
    .home-hero-points { display: grid; }
    .home-journey-card header strong { font-size: 1.1rem; }
    .home-route-line small { font-size: .51rem; }
    .home-shortcuts { grid-template-columns: 1fr; }
    .home-shortcuts a { min-height: 78px; }
    .home-map-preview,
    .home-map-preview img { min-height: 390px; }
    .home-map-topbar { top: 12px; left: 12px; right: 12px; }
    .home-map-open { left: 12px; right: 12px; bottom: 12px; }
    .home-map-features article { padding: 20px; }
    .home-feature-card { display: grid; grid-template-columns: auto 1fr; min-height: 0; }
    .home-feature-card > i { display: none; }
    .home-posts-grid .post-card { min-height: 280px; padding: 23px; }
    .home-account-card { padding: 21px; border-radius: 25px; }
    .home-account-top { grid-template-columns: 1fr; }
    .home-account-card .account-avatar { width: 58px; height: 58px; }
}

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