:root { --bg: #050a14; --bg-soft: #0b1220; --text: #eaf0ff; --muted: #9fb0d3; --accent: #d4af37; --line: rgba(255, 255, 255, 0.12); --shadow: 0 18px 40px rgba(0, 0, 0, 0.4); --radius: 16px; --space-1: 0.55rem; --space-2: 0.9rem; --space-3: 1.25rem; --space-4: 1.6rem; --space-5: 2.1rem; --space-6: 3rem; --topbar-h: calc(71px + env(safe-area-inset-top, 0px)); } * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; background-color: #050a14; color-scheme: dark; min-height: 100%; min-height: 100dvh; } body { min-height: 100%; min-height: 100dvh; padding-bottom: env(safe-area-inset-bottom, 0px); font-family: "Segoe UI", "Inter", Arial, sans-serif; background: radial-gradient(circle at 20% 0%, #0f1d36 0%, #081326 28%, var(--bg) 52%); color: var(--text); line-height: 1.6; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; } a { color: inherit; text-decoration: none; } img { max-width: 100%; display: block; } h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; } .container { width: min(1120px, 92%); margin: 0 auto; } .topbar { position: sticky; top: 0; z-index: 50; padding-top: env(safe-area-inset-top, 0px); backdrop-filter: blur(8px); background: rgba(5, 10, 20, 0.75); border-bottom: 1px solid var(--line); } .nav { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 70px; gap: 1.8rem; position: relative; } .logo { display: inline-flex; align-items: center; line-height: 0; } .logo img { height: 38px; width: auto; max-width: min(200px, 55vw); object-fit: contain; display: block; } .menu { display: flex; gap: 1.6rem; align-items: center; justify-content: flex-end; } .menu a { color: var(--muted); font-size: 1.04rem; transition: color 0.2s ease; } .menu a:hover, .menu a[aria-current="page"] { color: var(--text); } .menu-cta { justify-self: end; } .menu-cta.btn-primary, .menu-cta.btn-primary:hover { color: #161616; } .nav-toggle { display: none; } .hamburger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.05); align-items: center; justify-content: center; cursor: pointer; justify-self: end; } .hamburger span { display: block; width: 18px; height: 2px; background: #f4d57b; border-radius: 999px; position: relative; transition: transform 0.2s ease, opacity 0.2s ease; } .hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #f4d57b; border-radius: 999px; transition: transform 0.2s ease; } .hamburger span::before { top: -6px; } .hamburger span::after { top: 6px; } .mobile-menu { display: none; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border: none; border-radius: 12px; padding: 0.62rem 1.25rem; font-weight: 600; cursor: pointer; transition: box-shadow 0.2s ease, background 0.2s ease; white-space: nowrap; } .btn-primary { color: #161616; background: linear-gradient(135deg, #f6d56e, var(--accent)); box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35); } .btn-primary:hover { background: linear-gradient(135deg, #fce39a, #ddb947); box-shadow: 0 14px 26px rgba(212, 175, 55, 0.45); } .btn-outline { color: var(--text); border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.05); } .hero-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.6rem; align-items: center; padding-top: var(--space-6); padding-bottom: var(--space-6); border-bottom: 1px solid rgba(255, 255, 255, 0.14); } .hero-content h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; margin-bottom: var(--space-2); } .hero-content p { color: var(--muted); max-width: 60ch; margin: 0 0 var(--space-3); font-size: 1.04rem; line-height: 1.7; } .hero-content p a { color: #f4d57b; text-decoration: none; font-weight: 700; } .hero-content p a:hover { color: #ffe49a; } .hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); } .hero-actions .btn { min-width: 180px; } .hero-card { border: 1px solid rgba(255, 255, 255, 0.06); border-radius: var(--radius); background: linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); box-shadow: var(--shadow); padding: 1rem; } .table-preview { border-radius: 12px; border: 1px solid rgba(212, 175, 55, 0.06); overflow: hidden; aspect-ratio: 1 / 1; background: #000; } .table-preview img { width: 100%; height: 100%; object-fit: cover; } .history-preview { aspect-ratio: 5 / 2; } .history-preview img { object-fit: contain; } body > .container:not(.nav):not(.hero-wrap), main > .container:not(.hero-wrap) { padding-block: var(--space-6); border-bottom: 1px solid rgba(255, 255, 255, 0.14); display: flex; flex-direction: column; gap: var(--space-4); } body > .container:not(.nav):not(.hero-wrap):last-of-type, main > .container:not(.hero-wrap):last-of-type { border-bottom: 0; } h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.18; margin: 0 0 var(--space-2); } .subtitle { color: var(--muted); margin: 0; line-height: 1.7; } .article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); } .article-card { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); padding: 1.1rem; box-shadow: var(--shadow); } .article-card h3 { font-size: 1.1rem; line-height: 1.3; margin-bottom: var(--space-2); } .article-card p { color: #c0ccea; font-size: 0.95rem; line-height: 1.7; } .tag { display: inline-block; font-size: 0.78rem; letter-spacing: 0.5px; text-transform: uppercase; color: #f0cf69; margin-bottom: 0.5rem; } .section-head { display: flex; justify-content: space-between; align-items: center; gap: var(--space-2); flex-wrap: wrap; } .count-badge { border: 1px solid rgba(212, 175, 55, 0.25); border-radius: 999px; padding: 0.45rem 0.85rem; color: #f2d37a; background: rgba(212, 175, 55, 0.08); font-size: 0.9rem; } .article-media { aspect-ratio: 16 / 10; background: #000; } .article-media img { width: 100%; height: 100%; object-fit: cover; } .article-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.72rem; } .article-body h3 { font-size: 1.15rem; line-height: 1.35; } .article-meta { color: #a9b9df; font-size: 0.85rem; } .article-link { align-self: flex-start; margin-top: auto; color: #161616; background: linear-gradient(135deg, #f6d56e, var(--accent)); border-radius: 10px; padding: 0.5rem 0.9rem; font-size: 0.9rem; font-weight: 700; } .strategy-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); } .strategy-item { border-radius: 14px; border: 1px solid var(--line); background: var(--bg-soft); padding: 1rem; } .strategy-item h4 { color: #f2d37a; font-size: 1rem; line-height: 1.3; margin-bottom: var(--space-1); } .strategy-item p { color: #b7c5e8; font-size: 0.95rem; line-height: 1.7; } .provider-table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)); } .provider-table { width: 100%; border-collapse: collapse; } .provider-table thead th { background: rgba(212, 175, 55, 0.12); color: #f0cf69; text-align: left; font-weight: 700; font-size: 0.95rem; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); } .provider-table td { padding: 0.8rem 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); color: #c9d5f0; font-size: 0.95rem; } .provider-table tbody tr:last-child td { border-bottom: 0; } .provider-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); } .toc-page-anchor { display: block; height: 0; width: 0; overflow: hidden; pointer-events: none; } .toc-panel { border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 14px; padding: 1rem 1.1rem; background: linear-gradient(170deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)); box-shadow: var(--shadow); } .toc-label { color: #f0cf69; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; margin: 0 0 0.8rem; } .toc-tree, .toc-tree ol { margin: 0; padding-left: 0; list-style: none; } .toc-tree { color: #dbe5fb; display: flex; flex-direction: column; gap: 0.45rem; counter-reset: section; } .toc-tree > li { line-height: 1.6; counter-increment: section; position: relative; padding-left: 1.35rem; } .toc-tree > li::before { content: counter(section) "."; color: #dbe5fb; position: absolute; left: 0; top: 0; width: 1.1rem; text-align: left; font-variant-numeric: tabular-nums; } .toc-tree a { color: #dbe5fb; transition: color 0.2s ease; } .toc-tree a:hover { color: #f4d57b; } .toc-tree > li > ol { margin-top: 0.35rem; display: flex; flex-direction: column; gap: 0.32rem; counter-reset: subsection; } .toc-tree > li > ol > li { counter-increment: subsection; position: relative; line-height: 1.55; padding-left: 2.28rem; } .toc-tree > li > ol > li::before { content: counter(section) "." counter(subsection) "."; color: #c8d4ef; position: absolute; left: 0; top: 0; width: 2.05rem; text-align: left; font-variant-numeric: tabular-nums; } .faq-list { display: flex; flex-direction: column; gap: 0.75rem; } .faq-item { border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); overflow: hidden; } .faq-item summary { list-style: none; cursor: pointer; padding: 0.95rem 1rem; color: #f0cf69; font-weight: 600; position: relative; padding-right: 2.6rem; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item summary::after { content: "+"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: #f0cf69; font-size: 1.15rem; line-height: 1; } .faq-item[open] summary::after { content: "-"; } .faq-item[open] summary { border-bottom: 1px solid rgba(212, 175, 55, 0.12); background: rgba(5, 10, 20, 0.35); } .faq-item > p { color: #c9d5f0; font-size: 0.95rem; line-height: 1.7; margin: 0; padding: 0.35rem 1rem 1rem; } .footer { border-top: 1px solid var(--line); padding: 1.8rem 0; color: var(--muted); font-size: 0.9rem; } .footer-inner { display: flex; justify-content: center; align-items: center; text-align: center; min-height: 1.5rem; } @media (max-width: 980px) { .hero-wrap { grid-template-columns: 1fr; } .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } } @media (max-width: 700px) { .nav { grid-template-columns: 1fr auto; gap: 1rem; } .menu, .menu-cta { display: none; } .hamburger { display: inline-flex; grid-column: 2; justify-self: end; } .nav-toggle:checked + .hamburger span { background: transparent; } .nav-toggle:checked + .hamburger span::before { transform: translateY(6px) rotate(45deg); } .nav-toggle:checked + .hamburger span::after { transform: translateY(-6px) rotate(-45deg); } .mobile-menu { position: fixed; left: 0; right: 0; top: var(--topbar-h); width: 100%; max-width: none; z-index: 100; margin: 0; border-radius: 0; border-left: 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line); background: rgba(6, 12, 24, 0.98); backdrop-filter: blur(10px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35); padding: 0.55rem 1rem 0.65rem; display: none; flex-direction: column; gap: 0.25rem; } .mobile-menu a { display: block; padding: 0.58rem 0.65rem; border-radius: 8px; color: #d6e1f8; font-size: 0.98rem; } .mobile-menu a:hover, .mobile-menu a[aria-current="page"] { background: rgba(255, 255, 255, 0.06); color: #f4d57b; } .nav-toggle:checked ~ .mobile-menu { display: flex; } .hero-wrap { gap: var(--space-2); padding-top: var(--space-3); padding-bottom: var(--space-5); } .hero-card { order: 1; } .hero-content { order: 2; display: flex; flex-direction: column; } .hero-content .hero-actions { order: 1; margin-bottom: var(--space-2); } .hero-content h1 { order: 2; margin-bottom: var(--space-1); } .hero-content p { order: 3; margin-bottom: var(--space-2); } body > .container:not(.nav):not(.hero-wrap), main > .container:not(.hero-wrap) { padding-block: var(--space-5); gap: var(--space-3); } .article-grid, .strategy-list { grid-template-columns: 1fr; } .table-preview:not(.history-preview), .article-media { min-height: 185px; } .history-preview { aspect-ratio: auto; } .history-preview img { height: auto; object-fit: cover; } } @media (max-width: 460px) { .btn { width: 100%; } .hero-actions { width: 100%; } }