:root { --bg: #ffffff; --fg: #0b1020; --accent: #111827; --accent-soft: #f3f4ff; --border-subtle: #e5e7eb; --muted: #6b7280; --radius-lg: 18px; --radius-xl: 26px; --shadow-soft: 0 20px 60px rgba(15,23,42,0.08); --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif; } *, *::before, *::after { box-sizing: border-box; } html, body { margin: 0; padding: 0; } body { font-family: var(--font-sans); background: var(--bg); color: var(--fg); line-height: 1.6; } a { color: inherit; text-decoration: none; } a:hover { text-decoration: underline; } .container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; } .site-header { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(16px); background: rgba(255,255,255,0.96); border-bottom: 1px solid rgba(229,231,235,0.9); } .top-bar { background: #0b1020; color: #f9fafb; font-size: 0.85rem; padding: 0.5rem 1.5rem; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .main-nav { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; } .logo { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; } .logo-mark { width: 34px; height: 34px; border-radius: 999px; background: #111827; color: #f9fafb; display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; } .logo-text { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; } .nav-links { display: flex; gap: 1.6rem; font-size: 0.95rem; } .nav-toggle { display: none; background: none; border: none; padding: 0.25rem; flex-direction: column; gap: 0.25rem; } .nav-toggle span { width: 22px; height: 2px; background: #111827; border-radius: 999px; } .hero { padding: 3.5rem 0 3rem; } .hero-home { border-bottom: 1px solid var(--border-subtle); } .hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 3rem; align-items: center; } .hero h1 { font-size: clamp(2.3rem, 3.2vw, 2.8rem); letter-spacing: -0.03em; margin-bottom: 1rem; } .highlight { background: #fde68a; border-radius: 999px; padding: 0.02em 0.35em; } .lead { font-size: 1rem; color: var(--muted); max-width: 36rem; } .hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.5rem 0 1rem; } .btn-primary, .btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.3rem; border-radius: 999px; border: 1px solid transparent; font-size: 0.95rem; font-weight: 500; cursor: pointer; } .btn-primary { background: #111827; color: #f9fafb; } .btn-secondary { background: #ffffff; color: #111827; border-color: var(--border-subtle); } .btn-primary:hover, .btn-secondary:hover { text-decoration: none; box-shadow: 0 12px 28px rgba(15,23,42,0.12); } .hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.25rem; font-size: 0.9rem; color: var(--muted); } .hero-image-wrapper { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-soft); background: #020617; } .hero-image-wrapper img { display: block; width: 100%; height: 100%; object-fit: cover; } .section { padding: 3rem 0; } .section-alt { background: var(--accent-soft); } .feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.9rem; } .feature-card { border-radius: var(--radius-lg); padding: 1.7rem 1.6rem; background: #ffffff; border: 1px solid var(--border-subtle); box-shadow: 0 16px 40px rgba(15,23,42,0.06); } .feature-card h2 { font-size: 1.05rem; margin-top: 0; } .two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.4rem; } .two-column h2, .two-column h3 { margin-top: 0; } .fine-print { font-size: 0.8rem; color: var(--muted); } .blog-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.8rem; } .blog-card { border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); overflow: hidden; background: #ffffff; box-shadow: 0 14px 40px rgba(15,23,42,0.05); } .blog-card img { width: 100%; height: 190px; object-fit: cover; display: block; } .blog-card h3 { font-size: 1rem; margin: 0.8rem 0 0.45rem; } .blog-card p { font-size: 0.9rem; color: var(--muted); margin: 0 0 0.65rem; } .blog-card a { display: block; padding: 0.9rem 1rem 1.1rem; } .blog-meta { font-size: 0.8rem; color: var(--muted); } .blog-cta { margin-top: 2.1rem; text-align: center; } .faq { max-width: 780px; } .faq-item + .faq-item { border-top: 1px solid var(--border-subtle); padding-top: 1.3rem; margin-top: 1.3rem; } .page-hero { padding: 3rem 0 2.7rem; } .page-hero .hero-grid { align-items: center; } .breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; } .breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.25rem; } .breadcrumb li::after { content: "›"; margin-left: 0.25rem; } .breadcrumb li[aria-current="page"]::after { content: ""; } .breadcrumb li[aria-current="page"] { font-weight: 500; } .narrow { max-width: 780px; } .text-center { text-align: center; } .article-hero-image img { width: 100%; max-height: 380px; object-fit: cover; } .article-body { max-width: 780px; padding: 2.3rem 0 3.1rem; } .article-body p { margin-bottom: 1.15rem; } .article-meta { font-size: 0.85rem; color: var(--muted); } .legal h1 { margin-top: 0; } .site-footer { border-top: 1px solid var(--border-subtle); margin-top: 2.3rem; padding-top: 2.5rem; } .footer-grid { display: grid; grid-template-columns: 2.2fr 2fr 1.6fr; gap: 2.2rem; font-size: 0.9rem; } .share-links { list-style: none; padding: 0; margin: 0; } .share-links li + li { margin-top: 0.45rem; } .footer-bottom { border-top: 1px solid var(--border-subtle); margin-top: 2.1rem; } .footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.95rem 0 1.25rem; font-size: 0.8rem; color: var(--muted); } .footer-bottom nav { display: flex; gap: 1.2rem; } .contact-highlight { font-size: 1.1rem; font-weight: 600; margin: 1.4rem 0 1rem; } @media (max-width: 960px) { .hero-grid, .feature-grid, .two-column, .blog-list, .footer-grid { grid-template-columns: minmax(0, 1fr); } .blog-card img { height: 210px; } } @media (max-width: 720px) { .nav-toggle { display: inline-flex; } .nav-links { position: absolute; top: 64px; right: 0.75rem; background: #ffffff; border-left: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); box-shadow: var(--shadow-soft); flex-direction: column; padding: 0.8rem 1.3rem 1rem; min-width: 190px; display: none; } .nav-links.is-open { display: flex; } .hero { padding-top: 2.5rem; } }