:root { --red: #c0000f; --red2: #e0001a; --red3: #ff1f32; --redglow: rgba(192,0,15,0.45); --black: #000000; --deep: #05020a; --surface: #0c0814; --card: #110d1a; --border: #1e1428; --white: #f2ede6; --off: #c4bbb2; --muted: #948aa5; --online: #3ddc6a; --serif: 'Playfair Display', Georgia, serif; --sans: 'Inter', system-ui, sans-serif; --strong: 'Montserrat', sans-serif; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { background: var(--black); color: var(--white); font-family: var(--sans); overflow-x: hidden; } .topline { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 3px; background: linear-gradient(90deg, #600, var(--red), var(--red3), var(--red), #600); box-shadow: 0 0 20px var(--red), 0 0 50px var(--redglow); } nav { position: fixed; top: 3px; left: 0; right: 0; z-index: 150; display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: linear-gradient(180deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0) 100%); } .nav-logo img { height: 100px; width: auto; filter: drop-shadow(0 0 14px rgba(192,0,15,0.85)); } .nav-live { display: none !important; } .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--online); box-shadow: 0 0 10px var(--online); animation: blink 1.5s infinite; } @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} } .live-num { color: #fff; font-size: 15px; font-weight: 700; } .hero-logo { display: none !important; } .nav-join { background: linear-gradient(135deg, #800010, var(--red)); color: #fff; border: none; border-radius: 4px; font-family: var(--strong); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 11px 24px; cursor: pointer; box-shadow: 0 4px 20px var(--redglow); transition: all 0.2s; } .nav-join:hover { transform: translateY(-1px); box-shadow: 0 6px 30px rgba(192,0,15,0.7); } .nav-login { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; font-family: var(--strong); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 18px; cursor: pointer; text-decoration: none; transition: all 0.2s; } .nav-login:hover { color: #fff; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); } .nav-actions { display: flex; align-items: center; gap: 10px; } .activity-ticker { width: 100%; max-width: 400px; background: rgba(0,0,0,0.55); border: 1px solid rgba(192,0,15,0.3); border-radius: 4px; overflow: hidden; position: relative; margin-top: 14px; height: 36px; display: flex; align-items: center; } .activity-ticker::before, .activity-ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 36px; z-index: 2; pointer-events: none; } .activity-ticker::before { left: 0; background: linear-gradient(90deg, rgba(0,0,0,0.7), transparent); } .activity-ticker::after { right: 0; background: linear-gradient(270deg, rgba(0,0,0,0.7), transparent); } .ticker-label { flex-shrink: 0; padding: 0 10px; font-family: var(--strong); font-size: 8px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red3); border-right: 1px solid rgba(192,0,15,0.3); white-space: nowrap; z-index: 3; } .ticker-track-wrap { flex: 1; overflow: hidden; } .ticker-track { display: flex; white-space: nowrap; } .ticker-track:hover { animation-play-state: paused; } .tick-item { display: inline-flex; align-items: center; gap: 5px; padding: 0 16px; font-family: var(--sans); font-size: 11px; color: rgba(240,236,228,0.65); white-space: nowrap; border-right: 1px solid rgba(192,0,15,0.12); } .tick-item .t-sym { font-size: 13px; opacity: 0.85; } .tick-item .t-em { color: rgba(255,255,255,0.9); font-weight: 600; } .tick-item .t-act { color: rgba(255,255,255,0.45); } .tick-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--online); flex-shrink: 0; box-shadow: 0 0 5px var(--online); } .hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 90px 20px 70px; overflow: hidden; } .hero-bg { position: absolute; inset: 0; z-index: 0; } @media (min-width: 768px) { .hero-bg { background-image: url('tablet.webp'); background-position: center 20%; } } @media (min-width: 1100px) { .hero-bg { background-image: url('desk.webp'); background-position: center center; } } .hero-overlay-grad {position:absolute;inset:0;z-index:1;pointer-events:none; background: linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.12) 22%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.97) 100%); } .hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;z-index:0;display:block;} .hero-overlay-rad {position:absolute;inset:0;z-index:1;pointer-events:none; background: radial-gradient(ellipse 55% 70% at 50% 50%, transparent 35%, rgba(0,0,0,0.65) 100%); } .hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 620px; } .hero-left { display: flex; flex-direction: column; align-items: center; width: 100%; text-align: center; } .hero-side { display: none; } .hero-logo { margin-bottom: 20px; animation: fDown 1s ease both; } .hero-logo img { width: min(340px, 80vw); filter: drop-shadow(0 0 40px rgba(192,0,15,0.9)) drop-shadow(0 0 90px rgba(192,0,15,0.35)); } .hero-eyebrow { font-family: var(--strong); font-size: 12px; font-weight: 800; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.92); text-shadow: 0 0 20px rgba(192,0,15,0.7), 0 1px 3px rgba(0,0,0,0.9); margin-bottom: 14px; animation: fDown 1s 0.2s ease both; } .hero-h1 { font-family: var(--serif); font-size: clamp(40px, 7.5vw, 82px); font-weight: 900; line-height: 1.0; color: #fff; text-shadow: 0 0 60px rgba(192,0,15,0.5), 2px 2px 0 rgba(0,0,0,0.7); margin-bottom: 8px; animation: fDown 1s 0.35s ease both; } .hero-h1 .r { color: var(--red3); font-style: italic; } .hero-sub { font-family: var(--strong); font-size: 13px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.90); text-shadow: 0 0 16px rgba(0,0,0,0.95), 0 1px 4px rgba(0,0,0,1); background: rgba(0,0,0,0.45); padding: 6px 16px; border-radius: 3px; margin-bottom: 46px; animation: fDown 1s 0.5s ease both; } .hero-btns { display: flex; flex-direction: column; gap: 13px; width: 100%; max-width: 400px; animation: fUp 1s 0.65s ease both; } .jbtn { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 66px; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; color: #fff; font-family: var(--strong); font-size: 15px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; transition: transform 0.22s, box-shadow 0.22s; } .jbtn::before { content: ''; position: absolute; top: 0; left: -100%; width: 55%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.11), transparent); transition: left 0.45s; } .jbtn:hover::before { left: 150%; } .jbtn:hover { transform: translateY(-3px) scale(1.005); } .jbtn-ico { font-size: 22px; flex-shrink: 0; } .jbtn-label { flex: 1; text-align: center; } .jbtn-arr { font-size: 17px; opacity: 0.55; transition: transform 0.2s, opacity 0.2s; } .jbtn:hover .jbtn-arr { transform: translateX(5px); opacity: 1; } .jbtn-men { background: linear-gradient(135deg, #9a000f, #d4001a, #a8000f); box-shadow: 0 8px 36px rgba(192,0,15,0.45), inset 0 1px 0 rgba(255,100,100,0.2); border: 1px solid rgba(220,0,20,0.5); } .jbtn-men:hover { box-shadow: 0 14px 52px rgba(192,0,15,0.8), 0 0 0 1px rgba(255,26,46,0.4); } .jbtn-women { background: linear-gradient(135deg, #9a000f, #d4001a, #a8000f); box-shadow: 0 8px 36px rgba(192,0,15,0.45), inset 0 1px 0 rgba(255,100,100,0.2); border: 1px solid rgba(220,0,20,0.5); } .jbtn-women:hover { box-shadow: 0 14px 52px rgba(192,0,15,0.8), 0 0 0 1px rgba(255,26,46,0.4); } .jbtn-lgbt { background: linear-gradient(135deg, rgba(55,0,85,0.97), rgba(95,0,130,0.99), rgba(60,0,90,0.97)); box-shadow: 0 8px 36px rgba(90,0,130,0.5), inset 0 1px 0 rgba(180,80,255,0.15); border: 1px solid rgba(120,0,160,0.45); } .jbtn-lgbt:hover { box-shadow: 0 14px 52px rgba(110,0,155,0.85), 0 0 0 1px rgba(160,0,220,0.45); } .hero-disclaimer { font-family: var(--strong); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.55); border: 1px solid rgba(192,0,15,0.35); border-radius: 3px; padding: 7px 18px; margin-top: 12px; animation: fUp 1s 0.9s ease both; text-shadow: 0 1px 4px rgba(0,0,0,0.9); } .stats-bar { display: none; background: var(--deep); border-bottom: 1px solid rgba(192,0,15,0.15); position: relative; z-index: 5; } .stats-bar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(192,0,15,0.4), transparent); } .stats-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: center; height: 80px; } .sbar-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; } .sbar-n { font-family: var(--strong); font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; line-height: 1; } .sbar-l { font-family: var(--strong); font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); } .sbar-div { width: 1px; height: 40px; flex-shrink: 0; background: linear-gradient(180deg, transparent, rgba(192,0,15,0.35), transparent); margin: 0 20px; } .hs-panel { background: rgba(8,5,15,0.94); border: 1px solid rgba(192,0,15,0.25); border-top: 2px solid rgba(192,0,15,0.6); border-radius: 8px; padding: 24px; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 0 80px rgba(192,0,15,0.06), 0 40px 100px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.04); width: 340px; } .hs-hdr { display: flex; align-items: center; gap: 8px; font-family: var(--strong); font-size: 9px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; } .hs-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-bottom: 20px; } .hs-stat { display: flex; flex-direction: column; align-items: center; background: rgba(0,0,0,0.45); border-radius: 6px; padding: 12px 6px; border: 1px solid rgba(255,255,255,0.04); } .hs-stat-n { font-family: var(--strong); font-size: 16px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.3px; } .hs-stat-l { font-size: 8px; font-family: var(--strong); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 4px; text-align: center; } .hs-sep { height: 1px; background: linear-gradient(90deg, transparent, rgba(192,0,15,0.2), transparent); margin-bottom: 16px; } .hs-feed-wrap { overflow: hidden; height: 350px; margin-bottom: 18px; position: relative; } .hs-feed-wrap::before, .hs-feed-wrap::after { content:''; position:absolute; left:0; right:0; height:44px; z-index:2; pointer-events:none; } .hs-feed-wrap::before { top:0; background: linear-gradient(180deg, rgba(8,5,15,0.98), transparent); } .hs-feed-wrap::after { bottom:0; background: linear-gradient(0deg, rgba(8,5,15,0.98), transparent); } .hs-profiles { display: flex; flex-direction: column; gap: 8px; } .hs-profile { display: flex; align-items: center; gap: 10px; padding: 9px 11px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.04); border-radius: 6px; cursor: pointer; transition: border-color 0.2s, background 0.2s, opacity 0.4s; } .hs-profile.fading { opacity: 0; } .hs-profile.fading-in { opacity: 0; animation: profileIn 0.5s ease forwards; } @keyframes profileIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} } .hs-profile:hover { border-color: rgba(192,0,15,0.3); background: rgba(192,0,15,0.04); } .hs-av { width: 34px; height: 34px; border-radius: 50%; background: rgba(192,0,15,0.1); border: 1px solid rgba(192,0,15,0.25); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; } .hs-info { flex: 1; min-width: 0; } .hs-name { font-family: var(--strong); font-size: 11px; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .hs-meta { font-size: 10px; color: var(--muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .hs-act { color: rgba(255,255,255,0.55); } .hs-time { color: rgba(255,255,255,0.3); } .hs-online-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--online); box-shadow: 0 0 6px var(--online); flex-shrink: 0; } .hs-cta { display: block; text-align: center; background: linear-gradient(135deg, #800010, var(--red)); color: #fff; text-decoration: none; border-radius: 5px; font-family: var(--strong); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 13px; box-shadow: 0 4px 20px rgba(192,0,15,0.35); transition: all 0.2s; } .hs-cta:hover { box-shadow: 0 6px 30px rgba(192,0,15,0.65); transform: translateY(-1px); } .section { padding: 90px 20px; position: relative; z-index: 2; } .section-dark { background: var(--deep); } .section-black { background: #000; } .section-surface { background: var(--surface); } .sec-eyebrow { font-family: var(--strong); font-size: 10px; font-weight: 800; letter-spacing: 5px; text-transform: uppercase; color: var(--red3); display: block; text-align: center; margin-bottom: 12px; } .sec-h2 { font-family: var(--serif); font-size: clamp(30px, 5vw, 52px); font-weight: 900; text-align: center; line-height: 1.1; color: var(--white); margin-bottom: 16px; } .sec-h2 .r { color: var(--red3); font-style: italic; } .sec-intro { font-family: var(--sans); font-size: 16px; font-weight: 300; color: var(--off); text-align: center; max-width: 640px; margin: 0 auto; line-height: 1.8; } .divider { display: flex; align-items: center; gap: 14px; max-width: 260px; margin: 22px auto 52px; } .divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(192,0,15,0.45), transparent); } .divider-dot { color: var(--red); font-size: 6px; } .prose { max-width: 860px; margin: 0 auto; } .prose p { font-size: 16px; line-height: 1.95; color: var(--off); margin-bottom: 22px; font-weight: 300; } .prose p strong { color: var(--white); font-weight: 600; } .prose h3 { font-family: var(--serif); font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--white); margin: 48px 0 16px; padding-left: 16px; border-left: 3px solid var(--red); } .prose h4 { font-family: var(--strong); font-size: 13px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--red3); margin: 34px 0 10px; } .prose ul { padding-left: 0; margin-bottom: 22px; list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; } .prose ul li { font-size: 14px; color: var(--off); line-height: 1.6; padding: 10px 14px; background: var(--card); border-left: 2px solid var(--red); border-radius: 0 4px 4px 0; } .prose ul li::before { content: ''; } .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 960px; margin: 0 auto; } @media(max-width:700px){ .two-col { grid-template-columns: 1fr; gap: 0; } } .feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 1060px; margin: 0 auto; } .feat-card { background: var(--card); border: 1px solid var(--border); border-bottom: 3px solid var(--red); border-radius: 5px; padding: 30px 24px; transition: transform 0.2s, box-shadow 0.2s; } .feat-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(192,0,15,0.1); } .feat-icon { font-size: 30px; margin-bottom: 16px; display: block; } .feat-title { font-family: var(--strong); font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 10px; } .feat-desc { font-size: 14px; color: var(--muted); line-height: 1.75; } .test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 1060px; margin: 0 auto; } .test-card { background: var(--card); border: 1px solid var(--border); border-radius: 5px; padding: 28px 24px; position: relative; } .test-card::before { content: '\201C'; font-family: var(--serif); font-size: 72px; line-height: 1; color: rgba(192,0,15,0.15); position: absolute; top: 12px; left: 18px; } .test-text { font-size: 14px; color: var(--off); line-height: 1.8; font-style: italic; margin-bottom: 18px; padding-top: 24px; } .test-author { font-family: var(--strong); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red3); } .test-location { font-size: 11px; color: var(--muted); margin-top: 3px; } .stars { color: var(--red3); font-size: 13px; margin-bottom: 8px; } .roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; max-width: 1060px; margin: 0 auto; } .role-tag { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 16px 14px; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: all 0.2s; } .role-tag:hover { border-color: var(--red); background: rgba(192,0,15,0.08); transform: translateY(-2px); } .role-tag-icon { font-size: 20px; flex-shrink: 0; } .role-tag-name { font-family: var(--strong); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); } .role-tag-count { font-size: 11px; color: var(--muted); margin-top: 2px; } .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; } .faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 5px; overflow: hidden; } .faq-q { padding: 20px 24px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: var(--strong); font-size: 14px; font-weight: 700; letter-spacing: 0.5px; color: var(--white); user-select: none; transition: background 0.2s; } .faq-q:hover { background: rgba(192,0,15,0.06); } .faq-q .faq-icon { color: var(--red3); font-size: 18px; transition: transform 0.3s; flex-shrink: 0; } .faq-a { padding: 0 24px; max-height: 0; overflow: hidden; font-size: 14px; color: var(--off); line-height: 1.8; transition: max-height 0.35s ease, padding 0.35s ease; } .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; } .faq-item.open .faq-icon { transform: rotate(45deg); } .cta-section { padding: 110px 20px; background: radial-gradient(ellipse 80% 55% at 50% 50%, rgba(192,0,15,0.07), transparent 70%), #000; display: flex; flex-direction: column; align-items: center; text-align: center; } .cta-section .hero-btns { animation: none; max-width: 420px; } footer { background: #000; border-top: 1px solid rgba(192,0,15,0.1); padding: 48px 20px 32px; } .footer-mobile { text-align: center; } .footer-mobile img { height: 42px; filter: drop-shadow(0 0 8px rgba(192,0,15,0.5)); display: block; margin: 0 auto 18px; } .f-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: 14px; } .f-links a { font-family: var(--strong); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; } .f-links a:hover { color: var(--red3); } .footer-mobile p { font-size: 12px; color: var(--muted); line-height: 1.8; } .footer-desktop { display: none; } .footer-bottom-bar { display: none; } @keyframes fDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} } @keyframes fUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} } @media(max-width:600px){ nav { padding: 10px 14px; } .jbtn { height: 58px; padding: 0 16px; font-size: 13px; letter-spacing: 1.5px; } .prose ul { grid-template-columns: 1fr; } } @media (min-width: 768px) { nav { padding: 16px 40px; } .nav-live { display: flex; } .hero { padding: 110px 40px 80px; } .hero-inner { max-width: 780px; } .hero-logo img { width: min(280px, 60vw); } .hero-btns { flex-direction: row; max-width: 720px; width: 100%; gap: 10px; } .jbtn { height: 62px; font-size: 13px; letter-spacing: 1.5px; flex: 1; min-width: 0; padding: 0 14px; } .jbtn-ico { font-size: 18px; } .jbtn-arr { display: none; } .jbtn-label { font-size: 12px; letter-spacing: 1px; } .activity-ticker { max-width: 600px; } .stats-bar { display: block; } } @media (min-width: 1100px) { nav { padding: 18px 72px; } .activity-ticker { display: none; } .hero { padding: 0; min-height: 100vh; align-items: stretch; } .hero-inner { flex-direction: row; align-items: center; max-width: none; width: 100%; padding: 120px 72px 100px; gap: 80px; } .hero-left { flex: 1; align-items: flex-start; text-align: left; min-width: 0; } .hero-logo { display: none; } .hero-h1 { font-size: clamp(52px, 5.5vw, 90px); text-align: left; } .hero-sub { text-align: left; align-self: flex-start; } .hero-btns { flex-direction: column; max-width: 460px; width: 100%; gap: 11px; align-self: flex-start; } .jbtn { height: 64px; font-size: 14px; letter-spacing: 2.5px; flex: none; padding: 0 24px; } .jbtn-ico { font-size: 20px; } .jbtn-arr { display: block; } .jbtn-label { font-size: 13px; } .activity-ticker { max-width: 460px; margin-left: 0; margin-right: auto; } .hero-disclaimer { align-self: flex-start; } .hero-side { display: flex; align-items: center; flex-shrink: 0; } .stats-bar-inner { padding: 0 72px; } .sbar-n { font-size: 26px; } .sbar-div { margin: 0 32px; } .section { padding: 120px 72px; } .feat-grid { grid-template-columns: repeat(4, 1fr); max-width: 1280px; gap: 20px; } .roles-grid { grid-template-columns: repeat(4, 1fr); max-width: 1280px; gap: 14px; } .test-grid { grid-template-columns: repeat(3, 1fr); max-width: 1280px; } .prose { max-width: 980px; } .sec-h2 { font-size: clamp(38px, 4vw, 60px); } .sec-intro { max-width: 700px; font-size: 17px; } .footer-mobile { display: none; } .footer-desktop { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; max-width: 1060px; margin: 0 auto 0; text-align: left; padding-bottom: 40px; } .footer-bottom-bar { display: block; max-width: 1060px; margin: 0 auto; padding: 28px 0 0; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; } .footer-bottom-bar p { font-size: 12px; color: var(--muted); line-height: 1.8; } .cta-section { padding: 130px 72px; } } @media (min-width: 1440px) { nav { padding: 20px 100px; } .hero-inner { padding: 120px 100px; gap: 100px; } .hs-panel { width: 380px; } .stats-bar-inner { padding: 0 100px; } .section { padding: 140px 100px; } .feat-grid { max-width: 1400px; } .roles-grid { grid-template-columns: repeat(6, 1fr); max-width: 1400px; } .test-grid { max-width: 1400px; } .prose { max-width: 1060px; } .footer-desktop { max-width: 1200px; } .footer-bottom-bar { max-width: 1200px; } } .fcol-brand .fd-logo { height: 44px; filter: drop-shadow(0 0 8px rgba(192,0,15,0.5)); display: block; margin-bottom: 18px; } .fcol-brand .fd-tagline { font-size: 13px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; max-width: 280px; } .fcol-brand .fd-copy { font-size: 11px; color: rgba(255,255,255,0.2); line-height: 1.9; } .fd-col-title { font-family: var(--strong); font-size: 9px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(192,0,15,0.12); } .fd-col-links { display: flex; flex-direction: column; gap: 12px; } .fd-col-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; } .fd-col-links a:hover { color: var(--white); } .dir-section{padding:80px 20px;background:#000;} .dir-section + .dir-section{padding-top:0;} .dir-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:18px;max-width:1400px;margin:0 auto;width:100%;} .dir-niche{border:1px solid var(--border);border-radius:5px;overflow:hidden;background:var(--card);} .dir-niche-head,.dir-niche-title{padding:14px 18px;background:rgba(192,0,15,0.08);border-bottom:1px solid var(--border);display:flex;align-items:center;gap:10px;} .dir-niche-head a,.dir-niche-title a{font-family:var(--strong);font-size:12px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:var(--white);text-decoration:none;transition:color 0.2s;} .dir-niche-head a:hover,.dir-niche-title a:hover{color:var(--red3);} .dir-cities{display:grid;grid-template-columns:repeat(2,1fr);padding:8px 0;} @media(min-width:600px){.dir-cities{grid-template-columns:repeat(3,1fr);}} .dir-city-link{display:block;padding:6px 14px;font-family:var(--sans);font-size:13px;color:var(--muted);text-decoration:none;transition:color 0.18s,background 0.18s;white-space:normal;line-height:1.4;} .dir-city-link:hover{color:var(--red3);background:rgba(192,0,15,0.04);}
@keyframes hsScroll{from{transform:translateY(0)}to{transform:translateY(-50%)}}
.hs-feed-wrap{-webkit-mask-image:linear-gradient(180deg,transparent,#000 10%,#000 90%,transparent);mask-image:linear-gradient(180deg,transparent,#000 10%,#000 90%,transparent);}
.hs-feed-wrap:hover .hs-profiles{animation-play-state:paused;}
@keyframes tickerScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.ticker-track{animation:tickerScroll 50s linear infinite;will-change:transform;}
.hs-profiles{will-change:transform;}
