:root {
    --ink: #101828;
    --ink-soft: #475467;
    --muted: #667085;
    --line: #e4e9f1;
    --line-soft: #edf1f6;
    --paper: #ffffff;
    --canvas: #f7f9fc;
    --blue: #2d6bff;
    --blue-dark: #1b4fd7;
    --blue-soft: #eaf0ff;
    --mint: #0eaf82;
    --mint-soft: #e6f8f2;
    --amber: #f59e0b;
    --amber-soft: #fff4dc;
    --red: #dc3d50;
    --green: #079669;
    --navy: #0b1830;
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;
    --shadow: 0 18px 55px rgba(24, 39, 75, .09);
    --shadow-hover: 0 24px 70px rgba(24, 39, 75, .14);
    --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--canvas);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; transform: translateY(-150%); padding: 10px 16px; color: white; background: var(--navy); border-radius: 10px; }
.skip-link:focus { transform: translateY(0); }

.market-tape { height: 40px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; overflow: hidden; color: #dce7f8; background: #08162b; border-bottom: 1px solid rgba(255,255,255,.08); }
.market-tape-label { z-index: 2; height: 100%; display: flex; align-items: center; gap: 8px; padding: 0 18px 0 max(18px, calc((100vw - var(--shell)) / 2)); color: white; background: #08162b; font-size: 10px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.market-tape-label i { width: 7px; height: 7px; background: #35d6a5; border-radius: 50%; box-shadow: 0 0 0 4px rgba(53,214,165,.11); animation: pulse 1.8s infinite; }
.market-tape-viewport { position: relative; min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 24px, black calc(100% - 24px), transparent); }
.market-tape-loading { padding-left: 28px; color: #91a2bd; font-size: 10px; font-weight: 600; }
.market-tape-track { width: max-content; display: flex; animation: tape-scroll 38s linear infinite; will-change: transform; }
.market-tape-viewport:hover .market-tape-track { animation-play-state: paused; }
.market-tape-group { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.market-tape-item { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; font-size: 11px; font-variant-numeric: tabular-nums; }
.market-tape-item strong { color: white; font-size: 10px; font-weight: 780; letter-spacing: .02em; }
.market-tape-price { color: #dce7f8; font-weight: 680; }
.market-tape-change { font-size: 10px; font-weight: 760; }
.market-tape-change.up { color: #45d5a9; }
.market-tape-change.down { color: #ff7686; }
.market-tape-note { z-index: 2; height: 100%; display: flex; align-items: center; padding: 0 max(18px, calc((100vw - var(--shell)) / 2)) 0 18px; color: #7f91ad; background: #08162b; font-size: 9px; white-space: nowrap; }

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(228, 233, 241, .82);
    background: rgba(247, 249, 252, .86);
    backdrop-filter: blur(18px);
}
.nav-shell { height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 21px; font-weight: 790; letter-spacing: -.5px; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 11px; box-shadow: 0 9px 22px rgba(45, 107, 255, .25); }
.brand-mark svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav > a, .nav-dropdown > button { position: relative; padding: 10px 0; border: 0; background: transparent; color: var(--ink-soft); font-size: 14px; font-weight: 620; cursor: pointer; }
.main-nav > a::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; content: ""; transform: scaleX(0); background: var(--blue); border-radius: 2px; transition: transform .22s ease; }
.main-nav > a:hover, .main-nav > a.is-active, .nav-dropdown > button:hover { color: var(--ink); }
.main-nav > a:hover::after, .main-nav > a.is-active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: flex; align-items: center; gap: 5px; }
.nav-dropdown-panel { position: absolute; top: calc(100% + 10px); left: 50%; min-width: 190px; padding: 8px; transform: translate(-50%, 8px); visibility: hidden; opacity: 0; border: 1px solid var(--line); background: white; border-radius: 14px; box-shadow: var(--shadow); transition: .2s ease; }
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel, .nav-dropdown.is-open .nav-dropdown-panel { transform: translate(-50%, 0); visibility: visible; opacity: 1; }
.nav-dropdown-panel a { display: block; padding: 10px 12px; color: var(--ink-soft); border-radius: 9px; font-size: 14px; font-weight: 600; }
.nav-dropdown-panel a:hover { color: var(--blue-dark); background: var(--blue-soft); }
.menu-toggle { display: none; width: 42px; height: 42px; margin-left: auto; padding: 10px; border: 1px solid var(--line); background: white; border-radius: 12px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--ink); border-radius: 2px; }

.hero { position: relative; min-height: 700px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 50% 0%, white 0, rgba(255,255,255,.35) 38%, transparent 70%); }
.hero::before { position: absolute; inset: 0; content: ""; opacity: .4; background-image: linear-gradient(rgba(28, 59, 112, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(28, 59, 112, .055) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.hero-glow { position: absolute; width: 500px; height: 500px; filter: blur(1px); border-radius: 50%; opacity: .48; }
.hero-glow-one { top: -280px; right: -160px; background: radial-gradient(circle, rgba(94, 150, 255, .36), transparent 70%); }
.hero-glow-two { bottom: -330px; left: -180px; background: radial-gradient(circle, rgba(58, 210, 169, .22), transparent 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 78px; padding-block: 80px 96px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--blue-dark); font-size: 12px; font-weight: 780; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.hero h1 { max-width: 680px; margin: 22px 0 24px; font-size: clamp(48px, 5.6vw, 76px); font-weight: 770; line-height: 1.04; letter-spacing: -.055em; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p { max-width: 590px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 50px; padding: 0 21px; border: 1px solid transparent; border-radius: 13px; font-size: 14px; font-weight: 720; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 12px 30px rgba(45, 107, 255, .25); }
.button-primary:hover { box-shadow: 0 16px 38px rgba(45, 107, 255, .32); }
.button-quiet { border-color: var(--line); background: rgba(255,255,255,.72); }
.button-quiet:hover { border-color: #c6d0df; background: white; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: var(--muted); font-size: 12px; font-weight: 600; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row span:not(:first-child)::before { content: "•"; margin-right: 10px; color: #c5cedb; }
.status-dot { width: 8px; height: 8px; background: #12b981; border-radius: 50%; box-shadow: 0 0 0 4px rgba(18,185,129,.11); }

.market-visual { position: relative; padding: 26px; border: 1px solid rgba(210, 219, 233, .9); background: rgba(255,255,255,.86); border-radius: var(--radius-lg); box-shadow: 0 30px 90px rgba(26, 50, 89, .14); backdrop-filter: blur(16px); }
.market-visual::before { position: absolute; z-index: -1; inset: 24px -24px -24px 24px; content: ""; background: linear-gradient(145deg, rgba(45,107,255,.12), rgba(14,175,130,.06)); border-radius: var(--radius-lg); }
.visual-topline { display: flex; align-items: flex-start; justify-content: space-between; }
.visual-topline > div { display: flex; flex-direction: column; gap: 2px; }
.visual-kicker { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.visual-topline strong { font-size: 20px; letter-spacing: -.02em; }
.overview-updated { margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 650; }
.overview-primary { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; }
.overview-asset { display: flex; align-items: center; gap: 11px; }
.overview-symbol { position: relative; overflow: hidden; width: 40px; height: 40px; display: grid; place-items: center; color: #b66d00; background: var(--amber-soft); border-radius: 13px; font-size: 21px; font-weight: 800; }
.overview-symbol img { position: absolute; inset: 2px; width: calc(100% - 4px); height: calc(100% - 4px); object-fit: contain; border-radius: 11px; }
.overview-asset > span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.overview-asset strong { font-size: 14px; }
.overview-asset small { color: var(--muted); font-size: 9px; font-weight: 650; letter-spacing: .04em; }
.overview-quote { display: flex; align-items: center; gap: 10px; }
.overview-quote > strong { font-size: 22px; font-weight: 780; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.visual-chart { height: 170px; margin: 15px -5px 0; }
.visual-chart svg { width: 100%; height: 100%; }
.visual-chart .area { fill: url(#overview-area); }
.visual-chart .line { fill: none; stroke: var(--blue); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 5px 5px rgba(45,107,255,.2)); }
.overview-chart { position: relative; }
.overview-chart .chart-grid { fill: none; stroke: #e8edf5; stroke-width: 1; stroke-dasharray: 4 6; }
.chart-axis { position: absolute; right: 4px; bottom: 0; left: 4px; display: flex; justify-content: space-between; color: #98a2b3; font-size: 8px; font-weight: 650; }
.overview-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 8px; padding: 13px 0; border-block: 1px solid var(--line-soft); }
.overview-stats > div { display: flex; flex-direction: column; gap: 3px; padding-inline: 13px; border-right: 1px solid var(--line-soft); }
.overview-stats > div:first-child { padding-left: 3px; }
.overview-stats > div:last-child { padding-right: 3px; border-right: 0; }
.overview-stats span { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.overview-stats strong { font-size: 11px; font-weight: 750; font-variant-numeric: tabular-nums; }
.overview-markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 12px; }
.overview-market { min-width: 0; padding: 10px; border: 1px solid var(--line-soft); background: #f9fbfd; border-radius: 11px; }
.overview-market-top { display: flex; align-items: center; justify-content: space-between; gap: 5px; }
.overview-market-top strong { overflow: hidden; font-size: 9px; font-weight: 780; text-overflow: ellipsis; white-space: nowrap; }
.overview-market .market-price { display: block; margin-top: 5px; font-size: 11px; font-weight: 750; font-variant-numeric: tabular-nums; }
.overview-market .market-change { font-size: 8px; font-weight: 780; }
.overview-market .market-change.up { color: var(--green); }
.overview-market .market-change.down { color: var(--red); }
.overview-market-loading { min-height: 54px; background: linear-gradient(90deg, #f0f3f7 25%, #fafbfc 50%, #f0f3f7 75%); background-size: 200% 100%; animation: skeleton 1.4s infinite; }
.overview-source { margin: 9px 0 0; color: #98a2b3; font-size: 8px; text-align: right; }
.mini-markets { display: grid; gap: 6px; margin-top: 8px; }
.mini-market { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; min-height: 58px; padding: 10px 12px; border-top: 1px solid var(--line-soft); }
.coin-identity { display: flex; align-items: center; gap: 11px; }
.coin-avatar { width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue-dark); background: var(--blue-soft); border-radius: 50%; font-size: 11px; font-weight: 800; }
.coin-identity span { display: flex; flex-direction: column; line-height: 1.35; }
.coin-identity strong { font-size: 13px; }
.coin-identity small { color: var(--muted); font-size: 10px; }
.mini-price { font-size: 13px; font-weight: 720; }
.delta { min-width: 60px; padding: 5px 8px; text-align: center; border-radius: 8px; font-size: 11px; font-weight: 750; }
.delta.up { color: var(--green); background: #eaf8f3; }
.delta.down { color: var(--red); background: #fff0f2; }
.skeleton-row span { height: 13px; background: linear-gradient(90deg, #edf1f6 25%, #f8f9fb 50%, #edf1f6 75%); background-size: 200% 100%; border-radius: 6px; animation: skeleton 1.4s infinite; }
.skeleton-row span:first-child { width: 130px; }
.skeleton-row span:last-child { width: 72px; }

.latest-section { position: relative; z-index: 3; margin-top: -42px; padding-bottom: 92px; }
.latest-story { min-height: 340px; display: grid; grid-template-columns: 270px minmax(0, 1fr); overflow: hidden; border: 1px solid var(--line); background: white; border-radius: var(--radius-lg); box-shadow: 0 26px 75px rgba(24,39,75,.12); transition: transform .3s ease, box-shadow .3s ease; }
.latest-story:hover { transform: translateY(-5px); box-shadow: 0 32px 85px rgba(24,39,75,.16); }
.latest-story-intro { position: relative; overflow: hidden; min-height: 340px; isolation: isolate; background: linear-gradient(145deg, #08172e, #102d58 58%, #0d4560); }
.latest-story-intro::before { position: absolute; z-index: -1; inset: 0; content: ""; opacity: .34; background-image: linear-gradient(rgba(135,183,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(135,183,255,.13) 1px, transparent 1px); background-size: 35px 35px; mask-image: linear-gradient(155deg, transparent 4%, black 50%, transparent 100%); }
.latest-story-intro::after { position: absolute; z-index: -1; inset: 0; content: ""; background: radial-gradient(circle at 22% 18%, rgba(93,128,255,.25), transparent 30%), radial-gradient(circle at 86% 82%, rgba(46,219,175,.16), transparent 30%); }
.story-hotnews { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; }
.hotnews-stage { position: relative; width: 222px; height: 258px; }
.hotnews-aurora { position: absolute; width: 130px; height: 130px; filter: blur(28px); border-radius: 50%; opacity: .34; animation: hotnews-drift 8s ease-in-out infinite alternate; }
.hotnews-aurora-one { top: -40px; left: -38px; background: #526fff; }
.hotnews-aurora-two { right: -56px; bottom: -18px; background: #2ddcb0; animation-delay: -4s; }
.hotnews-broadcast { position: absolute; top: 0; left: 50%; width: 108px; height: 108px; transform: translateX(-50%); }
.hotnews-broadcast i { position: absolute; inset: 0; border: 1px solid rgba(130,217,255,.27); border-radius: 50%; animation: hotnews-broadcast 3.8s ease-out infinite; }
.hotnews-broadcast i:nth-child(2) { animation-delay: -1.9s; }
.hotnews-broadcast b { position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; transform: translate(-50%, -50%); background: #ff6b72; border: 2px solid rgba(255,255,255,.82); border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,107,114,.12), 0 0 20px rgba(255,107,114,.75); }
.hotnews-card { position: absolute; left: 16px; width: 190px; border: 1px solid rgba(203,226,255,.18); border-radius: 17px; }
.hotnews-card-back { height: 150px; padding: 18px; background: rgba(42,84,130,.38); box-shadow: 0 15px 35px rgba(0,10,28,.13); backdrop-filter: blur(8px); animation: hotnews-stack 6s ease-in-out infinite; }
.hotnews-card-back-one { top: 45px; transform: translateY(-10px) scale(.86); opacity: .26; }
.hotnews-card-back-two { top: 53px; transform: translateY(-4px) scale(.93); opacity: .48; animation-delay: -3s; }
.hotnews-card-back span { display: block; height: 8px; margin-bottom: 9px; background: rgba(194,225,255,.18); border-radius: 99px; }
.hotnews-card-back span:last-child { width: 62%; }
.hotnews-card-main { top: 66px; height: 156px; padding: 15px 16px 13px; background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(236,246,255,.91)); box-shadow: 0 21px 50px rgba(0,11,33,.3), 0 0 0 1px rgba(255,255,255,.14) inset; animation: hotnews-float 5s ease-in-out infinite; }
.hotnews-card-top { display: flex; align-items: center; justify-content: space-between; }
.hotnews-live { display: inline-flex; align-items: center; gap: 5px; color: #d64251; font-size: 7px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.hotnews-live i { width: 6px; height: 6px; background: #f15361; border-radius: 50%; animation: hotnews-live 1.7s ease-out infinite; }
.hotnews-menu { display: flex; gap: 3px; }
.hotnews-menu i { width: 3px; height: 3px; background: #a6b5c8; border-radius: 50%; }
.hotnews-headline { display: grid; gap: 7px; margin-top: 17px; }
.hotnews-headline span { height: 9px; background: linear-gradient(90deg, #1b3459 0 37%, #356794 50%, #1b3459 63% 100%); background-size: 250% 100%; border-radius: 99px; animation: hotnews-shimmer 4.4s linear infinite; }
.hotnews-headline span:last-child { width: 72%; animation-delay: -.8s; }
.hotnews-summary { display: grid; gap: 5px; margin-top: 13px; }
.hotnews-summary span { height: 4px; background: #c7d4e2; border-radius: 99px; }
.hotnews-summary span:nth-child(2) { width: 90%; }
.hotnews-summary span:nth-child(3) { width: 62%; }
.hotnews-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 13px; padding-top: 9px; border-top: 1px solid #dce5ef; }
.hotnews-card-foot > span { display: flex; gap: 5px; }
.hotnews-card-foot i { width: 20px; height: 5px; background: #d4dfeb; border-radius: 99px; }
.hotnews-card-foot i:last-child { width: 12px; }
.hotnews-card-foot b { color: #2d6bff; font-size: 13px; line-height: 1; animation: hotnews-arrow 2.3s ease-in-out infinite; }
.hotnews-ticker { position: absolute; right: 8px; bottom: 4px; left: 8px; height: 19px; display: flex; align-items: center; gap: 7px; overflow: hidden; padding: 0 8px; border: 1px solid rgba(191,225,255,.13); background: rgba(7,22,43,.35); border-radius: 99px; }
.hotnews-ticker i { width: 5px; height: 5px; flex: 0 0 auto; background: #64e8bb; border-radius: 50%; box-shadow: 0 0 8px rgba(100,232,187,.7); }
.hotnews-ticker span { width: 55px; height: 3px; flex: 0 0 auto; background: rgba(197,229,255,.34); border-radius: 99px; animation: hotnews-ticker 5s linear infinite; }
.hotnews-ticker span:nth-of-type(2) { width: 38px; }
.hotnews-ticker span:nth-of-type(3) { width: 63px; }
.latest-story-copy { display: flex; flex-direction: column; justify-content: center; padding: 48px 52px; }
.latest-story-meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; font-weight: 680; }
.latest-story-meta span { color: var(--blue-dark); }
.latest-story-meta time::before { margin-right: 10px; color: #c1cad7; content: "•"; }
.latest-story-copy h2 { margin: 15px 0 16px; font-size: clamp(29px, 3vw, 42px); line-height: 1.14; letter-spacing: -.045em; }
.latest-story-copy p { display: -webkit-box; overflow: hidden; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.72; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }
.latest-story-link { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 760; }
.latest-story-link b { color: var(--blue); font-size: 18px; transition: transform .2s ease; }
.latest-story:hover .latest-story-link b { transform: translateX(4px); }

.section { padding-block: 110px; }
.feature-section { background: var(--paper); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.section-heading h2, .values-panel h2 { max-width: 670px; margin: 14px 0 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.12; letter-spacing: -.045em; }
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: 1.15fr .925fr .925fr; gap: 20px; }
.feature-card { position: relative; min-height: 460px; display: flex; flex-direction: column; overflow: hidden; padding: 30px; border: 1px solid var(--line); background: var(--canvas); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: #cdd6e4; box-shadow: var(--shadow-hover); }
.feature-card-market { background: linear-gradient(150deg, #f5f8ff, #f9fbff 64%, #f2fbf8); }
.card-number { position: absolute; top: 25px; right: 27px; color: #b5bfcd; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; }
.feature-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-blue { color: var(--blue); background: var(--blue-soft); }
.icon-mint { color: var(--mint); background: var(--mint-soft); }
.icon-amber { color: #cb7b00; background: var(--amber-soft); }
.feature-copy { margin-top: 28px; }
.card-label { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.feature-copy h3 { margin: 7px 0 12px; font-size: 26px; line-height: 1.18; letter-spacing: -.035em; }
.feature-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.market-choices { display: grid; gap: 9px; margin-top: auto; padding-top: 30px; }
.market-choices a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 13px; border: 1px solid var(--line); background: rgba(255,255,255,.8); border-radius: 14px; transition: .2s ease; }
.market-choices a:hover { border-color: #b9c9e4; background: white; transform: translateX(3px); }
.choice-symbol { width: 37px; height: 37px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 11px; font-size: 13px; font-weight: 850; }
.choice-symbol-crypto { color: #c67600; background: var(--amber-soft); font-size: 18px; }
.market-choices a > span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.3; }
.market-choices strong { font-size: 13px; }
.market-choices small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.market-choices b { color: var(--blue); font-size: 17px; }
.feature-card-link .card-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 25px; border-top: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 720; }
.feature-card-link .card-link b { color: var(--blue); font-size: 17px; transition: transform .2s ease; }
.feature-card-link:hover .card-link b { transform: translateX(4px); }

.starter-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff, #f4f7fc); }
.starter-section::before { position: absolute; top: 8%; right: -160px; width: 410px; height: 410px; content: ""; background: radial-gradient(circle, rgba(45,107,255,.1), transparent 68%); border-radius: 50%; }
.starter-panel { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); align-items: center; gap: 72px; overflow: hidden; padding: 68px 70px; border: 1px solid #dce4f0; background: rgba(255,255,255,.92); border-radius: var(--radius-lg); box-shadow: 0 26px 75px rgba(24,39,75,.1); }
.starter-panel::before { position: absolute; top: -130px; right: 22%; width: 300px; height: 300px; content: ""; background: radial-gradient(circle, rgba(80,132,255,.09), transparent 68%); border-radius: 50%; pointer-events: none; }
.starter-copy { position: relative; z-index: 2; }
.starter-copy h2 { max-width: 650px; margin: 17px 0 19px; font-size: clamp(38px, 4.6vw, 58px); line-height: 1.06; letter-spacing: -.052em; }
.starter-copy > p { max-width: 670px; margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.78; }
.starter-topics { display: grid; gap: 1px; margin-top: 34px; overflow: hidden; border: 1px solid var(--line); background: var(--line); border-radius: 17px; }
.starter-topics > div { display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: center; gap: 14px; padding: 15px 17px; background: #fbfcfe; }
.starter-topics > div > strong { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.starter-topics span { display: flex; flex-direction: column; line-height: 1.42; }
.starter-topics b { color: var(--ink); font-size: 13px; }
.starter-topics small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.starter-actions { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
.starter-actions > small { max-width: 220px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.starter-visual { position: relative; min-height: 470px; display: grid; place-items: center; overflow: hidden; padding: 35px; background: radial-gradient(circle at 72% 20%, rgba(89,142,255,.36), transparent 31%), radial-gradient(circle at 20% 85%, rgba(33,206,158,.19), transparent 30%), linear-gradient(150deg, #0a1830, #163867); border-radius: 27px; box-shadow: 0 24px 60px rgba(12,31,63,.2); }
.starter-visual::before { position: absolute; inset: 0; content: ""; opacity: .28; background-image: linear-gradient(rgba(174,207,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(174,207,255,.15) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(145deg, transparent, black 46%, transparent); }
.starter-orbit { position: absolute; border: 1px solid rgba(188,218,255,.15); border-radius: 50%; }
.starter-orbit-one { top: -55px; right: -70px; width: 220px; height: 220px; box-shadow: 0 0 0 35px rgba(255,255,255,.018), 0 0 0 70px rgba(255,255,255,.012); }
.starter-orbit-two { bottom: -78px; left: -62px; width: 190px; height: 190px; border-color: rgba(93,232,191,.13); }
.starter-guide-card { position: relative; z-index: 2; width: min(100%, 320px); padding: 23px; color: var(--ink); background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,246,255,.94)); border: 1px solid rgba(255,255,255,.55); border-radius: 22px; box-shadow: 0 25px 65px rgba(0,12,36,.34); transform: rotate(-1.5deg); transition: transform .35s ease; }
.starter-panel:hover .starter-guide-card { transform: rotate(0) translateY(-4px); }
.starter-guide-top { display: flex; align-items: center; gap: 12px; padding-bottom: 19px; border-bottom: 1px solid #dfe7f1; }
.starter-bitcoin { width: 43px; height: 43px; display: grid; flex: 0 0 auto; place-items: center; color: white; background: #f7931a; border-radius: 14px; box-shadow: 0 10px 24px rgba(247,147,26,.25); font-size: 23px; font-weight: 800; }
.starter-guide-top > span:last-child { min-width: 0; display: flex; flex-direction: column; line-height: 1.35; }
.starter-guide-top small { color: var(--muted); font-size: 8px; font-weight: 720; letter-spacing: .07em; text-transform: uppercase; }
.starter-guide-top strong { overflow: hidden; margin-top: 2px; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.starter-guide-list { display: grid; gap: 8px; padding-block: 18px; }
.starter-guide-list > div { display: grid; grid-template-columns: 29px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 10px; border: 1px solid #e5ebf3; background: rgba(255,255,255,.7); border-radius: 12px; }
.starter-guide-list i { width: 29px; height: 29px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 9px; font-size: 9px; font-style: normal; font-weight: 850; }
.starter-guide-list span { display: flex; flex-direction: column; line-height: 1.35; }
.starter-guide-list b { font-size: 11px; }
.starter-guide-list small { color: var(--muted); font-size: 8px; }
.starter-guide-list em { color: var(--green); font-size: 11px; font-style: normal; font-weight: 850; }
.starter-guide-list > div:last-child em { color: var(--blue); }
.starter-guide-foot { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.starter-guide-foot > span { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 4px rgba(14,175,130,.1); }
.starter-guide-foot small { font-size: 8px; font-weight: 650; }

.values-section { padding-top: 0; background: white; }
.values-panel { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; padding: 62px; color: white; background: var(--navy); border-radius: var(--radius-lg); box-shadow: 0 24px 70px rgba(11,24,48,.18); }
.eyebrow-light { color: #86a9ff; }
.value-list { display: grid; }
.value-list > div { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.value-list > div:last-child { border: 0; }
.value-list > div > strong { color: #759aff; font-size: 11px; letter-spacing: .12em; }
.value-list span { display: flex; flex-direction: column; }
.value-list b { font-size: 15px; }
.value-list small { margin-top: 3px; color: #aebbd0; font-size: 12px; }

.page-hero { padding: 46px 0 66px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, white, #f7f9fc); }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 40px; color: var(--muted); font-size: 12px; font-weight: 600; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs span:last-child { color: var(--ink); }
.page-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.page-heading-row h1 { margin: 13px 0 13px; font-size: clamp(40px, 5vw, 62px); line-height: 1.08; letter-spacing: -.052em; }
.page-heading-row p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; }
.refresh-status { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; margin-bottom: 9px; padding: 9px 13px; color: #087354; background: var(--mint-soft); border-radius: 99px; font-size: 11px; font-weight: 750; }
.refresh-status i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; animation: pulse 1.8s infinite; }
.market-section { min-height: 630px; padding-top: 54px; }
.market-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 20px; }
.search-field { position: relative; width: min(100%, 390px); }
.search-field svg { position: absolute; top: 50%; left: 16px; width: 19px; transform: translateY(-50%); fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; }
.search-field input { width: 100%; height: 48px; padding: 0 18px 0 47px; color: var(--ink); border: 1px solid var(--line); outline: none; background: white; border-radius: 13px; transition: border .2s, box-shadow .2s; }
.search-field input:focus { border-color: #9bb7fa; box-shadow: 0 0 0 4px rgba(45,107,255,.09); }
.search-field input::placeholder { color: #98a2b3; }
.data-meta { display: flex; flex-direction: column; align-items: flex-end; color: var(--ink-soft); font-size: 12px; font-weight: 650; }
.data-meta small { color: var(--muted); font-size: 10px; font-weight: 500; }
.market-card { overflow: hidden; border: 1px solid var(--line); background: white; border-radius: var(--radius); box-shadow: 0 10px 38px rgba(24,39,75,.055); }
.table-head, .market-row { display: grid; grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(120px, .8fr)); align-items: center; gap: 14px; padding: 0 24px; }
.table-head { min-height: 52px; color: var(--muted); background: #fafbfc; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.table-head span:not(:first-child), .market-row > span:not(:first-child) { text-align: right; }
.market-row { min-height: 76px; border-bottom: 1px solid var(--line-soft); transition: background .18s ease; }
.market-row:last-child { border-bottom: 0; }
.market-row:not(.loading-row):hover { background: #fafcff; }
.asset-cell { display: flex; align-items: center; gap: 13px; }
.asset-avatar { position: relative; overflow: hidden; width: 38px; height: 38px; display: grid; flex: 0 0 auto; place-items: center; color: var(--blue-dark); background: var(--blue-soft); border: 1px solid rgba(32, 56, 85, .08); border-radius: 12px; font-size: 11px; font-weight: 850; letter-spacing: -.02em; }
.asset-avatar.crypto-avatar { color: #b66d00; background: var(--amber-soft); border-radius: 50%; }
.asset-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; padding: 7px; object-fit: contain; background: #fff; }
.asset-avatar.crypto-avatar img { padding: 2px; border-radius: 50%; }
.asset-name { display: flex; flex-direction: column; line-height: 1.35; }
.asset-name strong { font-size: 14px; }
.asset-name small { color: var(--muted); font-size: 11px; font-weight: 600; }
.price-cell { font-size: 14px; font-weight: 760; font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-czk { margin-left: 6px; color: var(--muted); font-size: 9px; font-weight: 620; }
.range-cell { color: var(--ink-soft); font-size: 13px; font-variant-numeric: tabular-nums; }
.change-cell { font-size: 12px; font-weight: 760; }
.change-cell.up { color: var(--green); }
.change-cell.down { color: var(--red); }
.change-pill { display: inline-block; min-width: 68px; padding: 6px 8px; text-align: center; background: currentColor; border-radius: 8px; }
.change-pill b { color: white; font-weight: 750; }
.loading-row span { width: 72%; height: 14px; justify-self: end; background: linear-gradient(90deg, #edf1f6 25%, #f8f9fb 50%, #edf1f6 75%); background-size: 200% 100%; border-radius: 6px; animation: skeleton 1.4s infinite; }
.loading-row span:first-child { width: 170px; justify-self: start; }
.market-error { padding: 70px 25px; text-align: center; }
.market-error strong { display: block; margin-bottom: 6px; }
.market-error p { margin: 0; color: var(--muted); }
.market-note { display: flex; align-items: flex-start; gap: 10px; margin-top: 17px; color: var(--muted); font-size: 11px; }
.market-note svg { flex: 0 0 auto; width: 17px; margin-top: 1px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.market-note p { margin: 0; }

.news-page-hero { background: radial-gradient(circle at 85% 25%, rgba(45,107,255,.09), transparent 28%), linear-gradient(180deg, white, #f7f9fc); }
.news-section { padding-top: 42px; background: white; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter-row a { padding: 8px 13px; color: var(--ink-soft); border: 1px solid var(--line); background: white; border-radius: 99px; font-size: 11px; font-weight: 690; transition: .2s ease; }
.filter-row a:hover, .filter-row a.is-active { color: white; border-color: var(--ink); background: var(--ink); }
.news-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.news-card { min-height: 190px; display: grid; grid-template-columns: 125px minmax(0, 1fr) 165px; grid-template-areas: "meta copy action"; align-items: center; gap: 30px; padding: 28px 30px; border: 1px solid var(--line); background: var(--canvas); border-radius: 18px; transition: .25s ease; }
.news-card:hover { transform: translateX(4px); border-color: #cbd5e3; background: white; box-shadow: var(--shadow); }
.news-card-top { grid-area: meta; display: flex; align-items: flex-start; flex-direction: column; gap: 9px; color: var(--muted); font-size: 10px; font-weight: 650; }
.news-card-top time { color: var(--ink); font-size: 11px; font-weight: 730; line-height: 1.45; }
.reading-time { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 9px; white-space: nowrap; }
.reading-time::before { width: 6px; height: 6px; content: ""; border: 1.5px solid #98a2b3; border-radius: 50%; }
.source-badge { width: 25px; height: 25px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 8px; font-size: 10px; font-weight: 850; }
.source-cointelegraph { background: #f5a623; }
.source-decrypt { background: #3d56f0; }
.source-bitcoin-magazine { background: #f7931a; }
.news-card-copy { grid-area: copy; min-width: 0; }
.news-card h2 { margin: 0 0 10px; font-size: 21px; line-height: 1.34; letter-spacing: -.028em; }
.news-card h2 a { transition: color .18s; }
.news-card h2 a:hover { color: var(--blue); }
.news-card-copy > p { display: -webkit-box; overflow: hidden; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.68; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.news-card-bottom { grid-area: action; display: flex; align-items: flex-start; flex-direction: column; gap: 11px; margin: 0; padding: 8px 0 8px 25px; border-left: 1px solid var(--line); }
.news-card-bottom a { color: var(--blue-dark); font-size: 11px; font-weight: 760; }
.news-card-bottom a span { margin-left: 3px; }
.news-pagination { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--line); }
.pagination-direction { display: inline-flex; align-items: center; gap: 9px; width: max-content; min-height: 42px; padding: 0 14px; color: var(--ink-soft); border: 1px solid var(--line); background: white; border-radius: 12px; font-size: 11px; font-weight: 730; transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease; }
.pagination-direction:hover { color: var(--blue-dark); border-color: #b9c9e4; background: #f8faff; transform: translateY(-1px); }
.pagination-direction b { color: var(--blue); font-size: 15px; line-height: 1; }
.pagination-previous { justify-self: start; }
.pagination-next { justify-self: end; }
.pagination-direction.is-disabled { color: #a9b3c1; background: #fafbfc; cursor: default; }
.pagination-direction.is-disabled b { color: #bdc5d0; }
.pagination-pages { display: flex; align-items: center; justify-content: center; gap: 7px; }
.pagination-page { width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink-soft); border: 1px solid var(--line); background: white; border-radius: 12px; font-size: 12px; font-weight: 760; transition: .2s ease; }
.pagination-page:hover { color: var(--blue-dark); border-color: #aabde5; transform: translateY(-1px); }
.pagination-page.is-current { color: white; border-color: var(--blue); background: var(--blue); box-shadow: 0 9px 22px rgba(45,107,255,.22); }
.pagination-ellipsis { width: 26px; color: var(--muted); text-align: center; font-size: 15px; }
.empty-state { padding: 100px 24px; text-align: center; border: 1px dashed #cbd5e3; background: var(--canvas); border-radius: var(--radius); }
.empty-icon { width: 50px; height: 50px; display: grid; place-items: center; margin: 0 auto 18px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 25px; }
.empty-state h2 { margin: 0; font-size: 23px; }
.empty-state p { margin: 8px 0 0; color: var(--muted); }
.content-note { display: flex; align-items: flex-start; gap: 26px; margin-top: 42px; padding: 25px 28px; color: #c2cee0; background: var(--navy); border-radius: 18px; }
.content-note strong { flex: 0 0 auto; color: white; font-size: 13px; }
.content-note p { margin: 0; font-size: 11px; line-height: 1.7; }

.article-page { min-height: 70vh; background: white; }
.article-shell { width: min(calc(100% - 48px), 980px); margin-inline: auto; }
.article-header { padding: 46px 0 58px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 20%, rgba(45,107,255,.09), transparent 28%), linear-gradient(180deg, white, #f7f9fc); }
.article-header .breadcrumbs { margin-bottom: 46px; }
.article-kicker { color: var(--blue-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-header h1 { max-width: 900px; margin: 15px 0 22px; font-size: clamp(40px, 5.2vw, 66px); font-weight: 770; line-height: 1.08; letter-spacing: -.052em; }
.article-lead { max-width: 800px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.72; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 27px; color: var(--muted); font-size: 11px; font-weight: 620; }
.article-meta > * + *::before { margin-right: 22px; color: #c2cad6; content: "•"; }
.article-layout { width: min(calc(100% - 48px), 800px); display: block; padding-block: 66px 100px; }
.article-body { min-width: 0; color: #263348; font-family: Georgia, "Times New Roman", serif; font-size: 18px; line-height: 1.88; }
.article-body > :first-child { margin-top: 0; }
.article-body p { margin: 0 0 25px; }
.article-body h2, .article-body h3, .article-body h4 { color: var(--ink); font-family: Inter, ui-sans-serif, sans-serif; line-height: 1.25; letter-spacing: -.035em; }
.article-body h2 { margin: 49px 0 19px; font-size: 30px; }
.article-body h3 { margin: 38px 0 16px; font-size: 24px; }
.article-body h4 { margin: 32px 0 14px; font-size: 20px; }
.article-body ul { margin: 4px 0 28px; padding-left: 25px; }
.article-body li { margin: 8px 0; padding-left: 5px; }
.article-body blockquote { margin: 34px 0; padding: 5px 0 5px 23px; color: var(--ink-soft); border-left: 3px solid var(--blue); font-style: italic; }
.article-source-note { margin-top: 55px; padding-top: 18px; color: #8a95a6; border-top: 1px solid var(--line); font-family: Inter, ui-sans-serif, sans-serif; font-size: 10px; line-height: 1.7; }
.article-source-note a { color: #667a99; font-weight: 700; }
.article-source-note a:last-child { margin-left: 6px; }
.article-source-note a:hover { color: var(--blue-dark); text-decoration: underline; }

.guide-placeholder { position: relative; min-height: 710px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 50% 42%, white, #f5f8fc 67%); }
.guide-placeholder::before { position: absolute; inset: 0; content: ""; opacity: .45; background-image: linear-gradient(rgba(28,59,112,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(28,59,112,.05) 1px, transparent 1px); background-size: 60px 60px; }
.guide-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(45,107,255,.12); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 760px; height: 760px; }
.guide-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.guide-inner .breadcrumbs { align-self: stretch; margin-bottom: 22px; }
.guide-icon { width: 78px; height: 78px; display: grid; place-items: center; margin-bottom: 24px; color: #b86c00; background: var(--amber-soft); border: 1px solid #f8ddb0; border-radius: 24px; box-shadow: 0 16px 45px rgba(245,158,11,.16); font-size: 38px; font-weight: 800; }
.guide-inner h1 { margin: 15px 0 15px; font-size: clamp(46px, 6vw, 72px); line-height: 1.06; letter-spacing: -.055em; }
.guide-inner > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; }
.coming-pill { display: inline-flex; align-items: center; gap: 9px; margin: 28px 0 24px; padding: 9px 14px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 99px; font-size: 11px; font-weight: 720; }
.coming-pill i { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.error-code { color: var(--blue); font-size: 80px; font-weight: 850; line-height: 1; letter-spacing: -.06em; }

.site-footer { color: #aebbd0; background: #081326; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .7fr .8fr 1.25fr; gap: 52px; padding-block: 62px 50px; }
.footer-brand { color: white; }
.footer-grid > div:first-child > p { max-width: 350px; margin: 17px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 12px; }
.footer-links strong { margin-bottom: 7px; color: white; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a:hover { color: white; }
.footer-contact address { display: flex; flex-direction: column; color: #aebbd0; font-style: normal; line-height: 1.65; }
.footer-contact address > span:first-child { color: white; font-weight: 700; }
.footer-contact address a { margin-top: 8px; color: #8fb0ff; }
.footer-contact address a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }
.ukraine-support { display: inline-flex; align-items: center; gap: 7px; color: #dce5f4; font-weight: 650; }
.ukraine-support i { width: 19px; height: 12px; display: inline-block; background: linear-gradient(#1f78d1 0 50%, #ffd83d 50% 100%); border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.15); }

.reveal { animation: rise .7s cubic-bezier(.2,.75,.25,1) both; }
.reveal-delay { animation-delay: .12s; }
.reveal-delay-one { animation-delay: .08s; }
.reveal-delay-two { animation-delay: .16s; }
@keyframes rise { from { transform: translateY(18px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(14,175,130,.25); } 50% { box-shadow: 0 0 0 5px rgba(14,175,130,0); } }
@keyframes skeleton { to { background-position: -200% 0; } }
@keyframes tape-scroll { to { transform: translateX(-50%); } }
@keyframes hotnews-drift { from { transform: translate3d(-8px, -5px, 0) scale(.92); } to { transform: translate3d(18px, 15px, 0) scale(1.12); } }
@keyframes hotnews-broadcast { 0% { transform: scale(.18); opacity: .7; } 75%, 100% { transform: scale(1); opacity: 0; } }
@keyframes hotnews-live { 0%, 100% { box-shadow: 0 0 0 0 rgba(241,83,97,.35); } 55% { box-shadow: 0 0 0 5px rgba(241,83,97,0); } }
@keyframes hotnews-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes hotnews-stack { 0%, 100% { margin-top: 0; } 50% { margin-top: -5px; } }
@keyframes hotnews-shimmer { to { background-position: -250% 0; } }
@keyframes hotnews-arrow { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
@keyframes hotnews-ticker { 0% { transform: translateX(0); opacity: .35; } 50% { opacity: .75; } 100% { transform: translateX(-28px); opacity: .35; } }

@media (max-width: 1020px) {
    .main-nav { gap: 18px; }
    .hero-grid { gap: 42px; }
    .hero h1 { font-size: clamp(44px, 6vw, 64px); }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .feature-card-market { grid-row: span 2; }
    .starter-panel { grid-template-columns: minmax(0, 1fr) minmax(310px, .78fr); gap: 42px; padding: 52px 45px; }
    .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
    .market-tape { grid-template-columns: auto minmax(0, 1fr); }
    .market-tape-label { padding-left: 14px; }
    .market-tape-note { display: none; }
    .market-tape-viewport { overflow-x: auto; mask-image: linear-gradient(90deg, transparent, black 15px, black); scrollbar-width: none; }
    .market-tape-viewport::-webkit-scrollbar { display: none; }
    .market-tape-track { animation: none; }
    .market-tape-group { gap: 24px; padding-inline: 20px 4px; }
    .market-tape-group[aria-hidden="true"] { display: none; }
    .shell { width: min(calc(100% - 32px), var(--shell)); }
    .nav-shell { height: 68px; }
    .menu-toggle { display: block; }
    .main-nav { position: absolute; top: 68px; right: 16px; left: 16px; display: none; align-items: stretch; padding: 12px; border: 1px solid var(--line); background: white; border-radius: 16px; box-shadow: var(--shadow); }
    .main-nav.is-open { display: flex; flex-direction: column; gap: 1px; }
    .main-nav > a, .nav-dropdown > button { width: 100%; padding: 11px 12px; text-align: left; border-radius: 9px; }
    .main-nav > a:hover, .nav-dropdown > button:hover { background: var(--canvas); }
    .main-nav > a::after { display: none; }
    .nav-dropdown-panel { position: static; display: none; min-width: 0; padding: 3px 8px 8px 20px; transform: none; visibility: visible; opacity: 1; border: 0; box-shadow: none; }
    .nav-dropdown.is-open .nav-dropdown-panel { display: block; transform: none; }
    .hero { min-height: 0; }
    .hero-grid { grid-template-columns: 1fr; padding-block: 70px; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow, .hero-actions, .trust-row { justify-content: center; }
    .hero h1 { margin-inline: auto; }
    .hero-copy > p { margin-inline: auto; }
    .market-visual { width: min(100%, 590px); margin-inline: auto; }
    .latest-section { margin-top: 0; padding-block: 28px 74px; background: white; }
    .latest-story { grid-template-columns: 1fr; }
    .latest-story-intro { min-height: 145px; }
    .hotnews-stage { transform: scale(.67); }
    .latest-story-copy { padding: 34px 30px 38px; }
    .section { padding-block: 80px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
    .section-heading > p { max-width: 620px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 390px; }
    .feature-card-market { grid-row: auto; }
    .starter-panel { grid-template-columns: 1fr; gap: 42px; padding: 45px 34px; }
    .starter-visual { min-height: 390px; }
    .values-panel { grid-template-columns: 1fr; gap: 40px; padding: 44px 28px; }
    .page-heading-row { align-items: flex-start; flex-direction: column; }
    .refresh-status { margin: 0; }
    .market-toolbar { align-items: stretch; flex-direction: column; }
    .search-field { width: 100%; }
    .data-meta { align-items: flex-start; }
    .table-head { display: none; }
    .market-card { border-radius: 18px; }
    .market-row { grid-template-columns: 1fr auto auto; gap: 10px; min-height: 82px; padding: 10px 16px; }
    .market-row > span:nth-child(4), .market-row > span:nth-child(5) { display: none; }
    .market-row > span:nth-child(2), .market-row > span:nth-child(3) { text-align: right; }
    .price-cell { display: flex; align-items: flex-end; flex-direction: column; line-height: 1.3; }
    .price-czk { margin-left: 0; font-size: 8px; }
    .loading-row span:nth-child(4), .loading-row span:nth-child(5) { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card { grid-template-columns: 1fr; grid-template-areas: "meta" "copy" "action"; gap: 18px; min-height: 0; padding: 24px; }
    .news-card-top { align-items: center; flex-direction: row; justify-content: space-between; }
    .news-card-bottom { align-items: center; flex-direction: row; justify-content: space-between; padding: 17px 0 0; border-top: 1px solid var(--line); border-left: 0; }
    .news-pagination { gap: 12px; }
    .content-note { flex-direction: column; gap: 8px; }
    .article-layout { width: min(calc(100% - 32px), 800px); }
    .footer-grid { grid-template-columns: 1.35fr .8fr .9fr; gap: 30px; }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
    .market-tape-label span { display: none; }
    .market-tape-label { padding-inline: 13px 7px; }
    .brand { gap: 8px; font-size: 17px; }
    .brand-mark { width: 33px; height: 33px; }
    .hero-grid { padding-block: 56px 62px; }
    .hero h1 { font-size: 45px; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions .button { width: 100%; }
    .trust-row span:not(:first-child)::before { display: none; }
    .market-visual { padding: 20px 18px; border-radius: 24px; }
    .visual-chart { height: 145px; }
    .overview-primary { gap: 10px; }
    .overview-quote { flex-direction: column; align-items: flex-end; gap: 4px; }
    .overview-quote > strong { font-size: 18px; }
    .overview-stats > div { padding-inline: 8px; }
    .overview-stats span { font-size: 7px; }
    .overview-stats strong { font-size: 9px; }
    .overview-market { padding: 8px; }
    .overview-market-top { align-items: flex-start; flex-direction: column; }
    .mini-market { gap: 8px; padding-inline: 4px; }
    .latest-story { border-radius: 22px; }
    .latest-story-intro { min-height: 155px; }
    .hotnews-stage { transform: scale(.62); }
    .latest-story-copy { padding: 28px 23px 31px; }
    .latest-story-copy h2 { font-size: 29px; }
    .section-heading h2, .values-panel h2 { font-size: 35px; }
    .feature-card { padding: 24px; }
    .starter-section { padding-block: 70px; }
    .starter-panel { padding: 35px 24px 24px; border-radius: 23px; }
    .starter-copy h2 { font-size: 40px; }
    .starter-copy > p { font-size: 14px; }
    .starter-actions { align-items: stretch; flex-direction: column; }
    .starter-actions .button { width: 100%; }
    .starter-actions > small { max-width: none; text-align: center; }
    .starter-visual { min-height: 335px; padding: 24px; border-radius: 19px; }
    .values-panel { width: 100%; border-radius: 0; }
    .values-section .shell { width: 100%; }
    .page-hero { padding: 34px 0 48px; }
    .breadcrumbs { margin-bottom: 28px; }
    .page-heading-row h1 { font-size: 42px; }
    .page-heading-row p { font-size: 15px; }
    .market-section { padding-top: 35px; }
    .asset-avatar { width: 34px; height: 34px; }
    .asset-name strong { font-size: 13px; }
    .asset-name small { font-size: 10px; }
    .price-cell { font-size: 12px; }
    .change-pill { min-width: 58px; font-size: 10px; }
    .news-card { min-height: 310px; }
    .news-pagination { grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 8px; }
    .pagination-direction { width: 42px; justify-content: center; padding: 0; }
    .pagination-direction span { display: none; }
    .pagination-pages { gap: 5px; }
    .pagination-page { width: 38px; height: 38px; border-radius: 10px; }
    .pagination-ellipsis { width: 18px; }
    .article-shell { width: min(calc(100% - 32px), 980px); }
    .article-header { padding: 34px 0 44px; }
    .article-header h1 { font-size: 39px; }
    .article-lead { font-size: 16px; }
    .article-meta { flex-direction: column; gap: 5px; }
    .article-meta > * + *::before { display: none; }
    .article-layout { padding-block: 45px 70px; }
    .article-body { font-size: 17px; line-height: 1.8; }
    .article-body h2 { font-size: 26px; }
    .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 7px; }
    .filter-row a { flex: 0 0 auto; }
    .guide-placeholder { min-height: 650px; }
    .guide-inner h1 { font-size: 46px; }
    .guide-inner > p { font-size: 15px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
