.container { max-width: 1600px; margin: 0 auto; padding: 0 var(--space-md); } @media (min-width: 1024px) { .container { padding-left: 60px; padding-right: 60px; } } .container--xxl { max-width: 1600px; margin-left: auto; margin-right: auto; padding-left: var(--space-md); padding-right: var(--space-md); } @media (min-width: 1024px) { .container--xxl { padding-left: 52px; padding-right: 52px; } } .colors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); margin-bottom: var(--space-lg); } @media (min-width: 768px) { .colors-grid { grid-template-columns: repeat(7, 1fr); } } .site-header { position: sticky; top: 0; z-index: 100; background: var(--color-bg, #fff); padding: var(--space-md) 0; border-bottom: 1px solid #e0e0e0; transition: padding 0.2s ease, box-shadow 0.2s ease; } .site-header.site-header--sticky { padding-top: var(--space-sm); padding-bottom: var(--space-sm); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); } .site-header.site-header--sticky .site-title { font-size: 1.25rem; } .site-header.site-header--sticky .site-branding .custom-logo, .site-header.site-header--sticky .site-branding .custom-logo-link svg { max-height: 32px; height: 32px; min-height: 32px; width: auto; } .site-header .container, .site-header .site-header-container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); flex-wrap: wrap; } .site-header-nav { display: flex; align-items: center; gap: var(--space-md); flex-shrink: 0; } .header-tools-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 6px 12px; font-size: 0.9rem; font-weight: 500; color: var(--color-text, #111); background: transparent; border: 1px solid transparent; border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; } .header-tools-btn-text { line-height: 1; display: inline-flex; align-items: center; font-weight: 700; font-size: 1.05rem; } .header-tools-btn:hover { background: rgba(0, 0, 0, 0.05); color: var(--color-text, #111); } .header-tools-btn[aria-expanded="true"] { background: rgba(0, 0, 0, 0.06); } .header-tools-btn-icon { flex-shrink: 0; width: 24px; height: 24px; transition: transform 0.2s ease; vertical-align: middle; } .site-header.megamenu-is-open .header-tools-btn-icon { transform: rotate(180deg); } .header-tools-btn-hamburger { display: none; } .header-tools-btn-hamburger svg { width: 24px; height: 24px; } .megamenu-panel { position: absolute; top: 100%; left: 0; right: 0; margin-top: 0; background: var(--color-bg, #fff); border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); z-index: 100; max-height: 90vh; overflow: hidden; transform-origin: top; transform: scaleY(0); transition: transform 0.1s ease-out, visibility 0s linear 0.1s; visibility: hidden; pointer-events: none; } .site-header.megamenu-is-open .megamenu-panel[aria-hidden="false"] { transform: scaleY(1); visibility: visible; pointer-events: auto; transition: transform 0.1s ease-out, visibility 0s; } @media (min-width: 768px) { .site-header.megamenu-is-open { border-bottom-color: transparent; } } .megamenu-panel[aria-hidden="true"] { visibility: hidden; } .megamenu-overlay { display: none; } @media (max-width: 767px) { .header-tools-btn-hamburger { display: inline-flex; align-items: center; justify-content: center; } .header-tools-btn-text, .header-tools-btn-icon { display: none !important; } .site-header.megamenu-is-open .header-tools-btn-icon { transform: none; } .megamenu-panel { position: fixed; top: 0; bottom: 0; left: 0; right: auto; width: min(320px, 85vw); height: 100dvh; height: 100vh; min-height: 100dvh; min-height: 100vh; max-height: none; transform: translateX(-100%); transition: transform 0.3s ease, visibility 0.3s ease; box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15); overflow-y: auto; z-index: 1000; } .site-header.megamenu-is-open .megamenu-panel[aria-hidden="false"] { transform: translateX(0); } .megamenu-overlay { display: block; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.4); z-index: 999; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; pointer-events: none; } .site-header.megamenu-is-open .megamenu-overlay[aria-hidden="false"] { opacity: 1; visibility: visible; pointer-events: auto; } .megamenu-inner .megamenu-layout { display: flex; flex-direction: column; align-items: stretch; gap: var(--space-lg); padding: var(--space-md); width: 100%; max-width: 100%; box-sizing: border-box; } .megamenu-inner .megamenu-content { width: 100%; flex: 0 0 auto; } .megamenu-inner .megamenu-grid { display: grid; grid-template-columns: 1fr; gap: 0; } .megamenu-inner .megamenu-card { background: transparent; border-radius: 0; padding: var(--space-sm) 0; } .megamenu-inner .megamenu-card:hover { background: transparent; } .megamenu-inner .megamenu-card-desc { display: none; } .megamenu-inner .megamenu-card-title { margin: 0; font-size: 1rem; } .megamenu-inner .megamenu-menu-column { width: 100%; flex: 0 0 auto; } .megamenu-inner .megamenu-menu-title { margin-bottom: var(--space-sm); } .megamenu-inner .megamenu-menu-list a { padding: var(--space-sm) 0; } .color-search-megamenu-slot { padding: var(--space-md); border-bottom: 1px solid #e5e7eb; flex-shrink: 0; } .color-search-megamenu-slot .color-search-container { max-width: none; width: 100%; } .site-header > .container .color-search-slot-header { display: none; } } @media (min-width: 768px) { .color-search-megamenu-slot { display: none; } } .megamenu-inner { padding: var(--space-lg) 0; } .megamenu-layout { display: flex; align-items: flex-start; gap: var(--space-xl); flex-wrap: wrap; } .megamenu-content { flex: 1; min-width: 0; } .megamenu-menu-column { flex-shrink: 0; width: 200px; } .megamenu-menu-title { margin: 0 0 var(--space-sm); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #666; } .megamenu-menu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; } .megamenu-menu-list li { display: block; margin: 0; } .megamenu-menu-list a { display: block; padding: var(--space-xs) 0; font-size: 0.95rem; color: var(--color-text, #111); text-decoration: none; transition: color 0.2s ease; } .megamenu-menu-list a:hover { color: #2563EB; } .megamenu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-md); } .megamenu-card { display: block; padding: var(--space-md); border-radius: var(--radius-md); text-decoration: none; color: var(--color-text, #111); background: transparent; transition: background 0.2s ease, color 0.2s ease; } .megamenu-card:hover { background: var(--megamenu-hover-bg, rgba(37, 99, 235, 0.06)); } .megamenu-card-title { margin: 0 0 var(--space-xs); font-size: 1.05rem; font-weight: 600; color: var(--megamenu-hover-title, inherit); transition: color 0.2s ease; } .megamenu-card:hover .megamenu-card-title { color: var(--megamenu-hover-title, inherit); } .megamenu-card-desc { margin: 0; font-size: 0.875rem; color: #000; line-height: 1.4; } .megamenu-card:hover .megamenu-card-desc { color: #000; } .site-header .site-header-container { padding-left: var(--space-md); padding-right: var(--space-md); } @media (min-width: 1024px) { .site-header .site-header-container { padding-left: 60px; padding-right: 60px; } } .site-branding { display: flex; align-items: center; flex-shrink: 0; } .site-branding .custom-logo-link { display: flex; align-items: center; line-height: 0; } .site-branding .custom-logo { display: block !important; max-width: 180px; width: auto; height: 45px; min-height: 45px; visibility: visible !important; opacity: 1 !important; object-fit: contain; aspect-ratio: 4 / 1; } .site-branding .custom-logo svg { display: block; max-width: 100%; height: auto; max-height: 60px; width: auto; fill: currentColor; } .site-branding .custom-logo-link svg { display: block; max-width: 100%; height: auto; max-height: 60px; width: auto; } .site-branding .custom-logo-link--dynamic svg .logo-as { fill: #000000 !important; } .site-branding .custom-logo-link--dynamic svg .logo-cores { fill: var(--logo-cores-color, #0066FF) !important; } .site-branding .custom-logo-link--dynamic svg { fill: var(--logo-cores-color, #0066FF); } .color-search-container { flex: 1; max-width: 250px; margin: 0 auto; display: flex; align-items: center; gap: var(--space-xs); } .color-search-input { flex: 1; border: 1px solid #e0e0e0; border-radius: var(--radius-md); outline: none; padding: var(--space-sm) var(--space-md); font-size: 0.9rem; background: #fff; color: var(--color-text); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); transition: border-color 0.2s ease, box-shadow 0.2s ease; height: 40px; box-sizing: border-box; } .color-search-input:focus { border-color: var(--color-primary, #0073aa); box-shadow: 0 2px 8px rgba(0, 115, 170, 0.1); } .color-search-input::placeholder { color: #999; } .color-search-preview { position: relative; width: 40px; height: 40px; border-radius: var(--radius-sm); cursor: pointer; flex-shrink: 0; overflow: hidden; border: none; transition: border-color 0.2s ease; box-sizing: border-box; } .color-search-button { padding: var(--space-sm) var(--space-md); background: #2563EB; color: #fff; border: none; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; cursor: pointer; flex-shrink: 0; white-space: nowrap; height: 40px; box-sizing: border-box; } .color-search-button:hover { background: #1d4ed8; } @media (max-width: 767px) { .site-header > .container { flex-direction: row; align-items: center; flex-wrap: wrap; position: relative; } .site-header > .container .site-branding { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: auto; flex: none; min-width: 0; order: 0; margin: 0; display: flex; align-items: center; justify-content: center; } .site-header > .container .site-branding .site-title { margin: 0; text-align: center; } .site-header > .container .site-branding .site-title a { display: inline-block; text-align: center; } .site-header.site-header--sticky { padding-top: var(--space-xs); padding-bottom: var(--space-xs); } .site-header.site-header--sticky .site-title { font-size: 1.1rem; } .site-header.site-header--sticky .site-branding .custom-logo, .site-header.site-header--sticky .site-branding .custom-logo-link svg { max-height: 28px; height: 28px; } .site-header > .container .site-header-nav { order: -1; margin-right: auto; } .site-header > .container .color-search-container { max-width: none; width: auto; flex: 1; min-width: 0; order: 1; flex-wrap: wrap; } .color-search-input { font-size: 12px; width: 100%; min-width: 0; height: 36px; } .color-search-preview { width: 36px; height: 36px; } .color-search-button { padding: var(--space-sm) var(--space-sm); font-size: 0.85rem; height: 36px; } } .site-title { font-size: 1.5rem; margin: 0; } .site-title a { color: var(--color-text); } .site-main { min-height: 60vh; padding: var(--space-lg) 0; } .site-footer { border-top: 1px solid #e0e0e0; margin-top: var(--space-xl); } .site-footer-top { padding: var(--space-xl) 0 var(--space-lg); background-color: var(--color-bg, #fff); } .site-footer-widgets { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); } @media (min-width: 600px) { .site-footer-widgets { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 900px) { .site-footer-widgets { grid-template-columns: repeat(4, 1fr); } } .site-footer-column { min-width: 0; } .site-footer-column > * { display: block; } .site-footer-column .footer-widget-title { font-size: 1.25rem; font-weight: 400; margin: 0 0 var(--space-sm); color: #6b7280; } .site-footer-column .widget { margin-bottom: var(--space-md); } .site-footer-column .widget:last-child { margin-bottom: 0; } .site-footer-column .widget_nav_menu, .site-footer-column .widget_pages, .site-footer-column .widget_categories { display: block; } .site-footer-column nav { display: block; margin-top: var(--space-xs); } .site-footer-column ul, .site-footer-column .menu { list-style: none; padding: 0; margin: 0; display: block; font-size: 0.875rem; } .site-footer-column ul li, .site-footer-column .menu li { margin-bottom: var(--space-xs); display: list-item; } .site-footer-column ul li a, .site-footer-column .menu a { color: #000; text-decoration: none; } .site-footer-column ul li a:hover, .site-footer-column .menu a:hover { color: var(--color-link, #0066cc); text-decoration: underline; } .site-footer-column a { color: #000; text-decoration: none; font-size: 0.875rem; } .site-footer-column a:hover { color: var(--color-link, #0066cc); text-decoration: underline; } .site-footer-bottom { padding: var(--space-md) 0 var(--space-lg); border-top: 1px solid #e0e0e0; } .site-footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--space-md); } .site-footer-bottom .site-info { margin: 0; font-size: 0.9rem; color: #666; } .site-footer-socials ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-sm); } .site-footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: #666; transition: color 0.2s ease; } .site-footer-socials a:hover { color: #2563EB; } .site-footer-socials a svg { width: 22px; height: 22px; } .hero-section { position: relative; text-align: center; padding: var(--space-xs) 0 var(--space-md) 0; background-color: transparent; } .hero-section .hero-title, .hero-section .hero-description { position: relative; z-index: 1; } .hero-section .container { position: relative; z-index: 1; } .hero-title { font-size: 3rem; margin-bottom: var(--space-md); } .hero-description { font-size: 1.25rem; margin-bottom: var(--space-lg); color: #666; } .hero-section .container .hero-cta-btn, a.hero-cta-btn { display: inline-block; min-width: 640px; min-height: 88px; padding: 1.75rem 6rem; font-size: 2.5rem; font-weight: 600; color: #fff !important; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3); text-decoration: none; border: none; border-radius: var(--radius-md); box-sizing: border-box; background: linear-gradient(120deg, #ff0000 0%, #00ff00 50%, #0000ff 100%); box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2); transition: transform 0.2s ease, box-shadow 0.2s ease; } .hero-section .container .hero-cta-btn:hover, a.hero-cta-btn:hover { transform: scale(1.02); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); color: #fff !important; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3); } @media (max-width: 767px) { .hero-section .container .hero-cta-btn, a.hero-cta-btn { min-width: 0; width: 100%; max-width: 100%; min-height: 56px; padding: 1.25rem 1.5rem; font-size: 1.25rem; line-height: 1.4; } } .hero-carousel-container { position: relative; z-index: 1; } .hero-carousel { text-align: center; } .hero-carousel-inner { position: relative; overflow: hidden; margin-bottom: var(--space-sm); cursor: grab; user-select: none; -webkit-user-select: none; } .hero-carousel-inner:active { cursor: grabbing; } .hero-carousel-track { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 0; padding: var(--space-sm) 0 var(--space-lg) 0; transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1); will-change: transform; backface-visibility: hidden; } .hero-carousel-track.dragging { transition: none; } .hero-card { flex: 0 0 auto; width: 380px; min-width: 380px; max-width: calc(100vw - 2rem); margin-right: -28px; transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.35s cubic-bezier(0.32, 0.72, 0, 1); transform-origin: center center; opacity: 0.85; transform: scale(0.82); backface-visibility: hidden; } .hero-card:last-child { margin-right: 0; } .hero-card-active { opacity: 1; transform: scale(1); z-index: 2; margin-right: -28px; } .hero-card-active:last-child { margin-right: 0; } .hero-carousel.wrapping .hero-card { transition: none; } .hero-card:not(.hero-card-active) .hero-card-title, .hero-card:not(.hero-card-active) .hero-card-description, .hero-card:not(.hero-card-active) .hero-cta-wrap { display: none; } .hero-card-title { display: flex; justify-content: center; width: 100%; box-sizing: border-box; font-size: 3rem; margin-bottom: var(--space-md); margin-top: 0; padding-top: 0; padding-left: 0; padding-right: 0; white-space: nowrap; overflow: visible; } .hero-card-media { position: relative; margin: 0 auto var(--space-md); width: 100%; max-width: 100%; aspect-ratio: 353 / 471; overflow: visible; } .hero-card-media-img-wrap { position: absolute; inset: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); background: #f0f0f0; } .hero-card-media-img-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; } .hero-carousel-inner { position: relative; } .hero-cta-wrap-single { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; margin: 0; width: 90%; max-width: 532px; pointer-events: none; } .hero-cta-wrap-single .hero-cta-box-btn { pointer-events: auto; } .hero-card-media .hero-cta-wrap { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; margin: 0; width: 90%; max-width: 532px; } .hero-cta-box { background: rgba(255, 255, 255, 0.98); border-radius: 16px; padding: 1.5rem 1.75rem; min-height: 120px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); } .hero-cta-typing { font-size: 1.5rem; font-weight: 700; color: #111; line-height: 1.35; min-height: 2.1em; width: 100%; } .hero-cta-typing-cursor { display: inline-block; width: 3px; height: 1.1em; background: #111; margin-left: 2px; vertical-align: text-bottom; animation: hero-typing-blink 0.9s step-end infinite; } @keyframes hero-typing-blink { 50% { opacity: 0; } } .hero-cta-box .hero-cta-box-btn, .hero-cta-box .hero-cta-btn.hero-cta-box-btn { min-width: 0; width: max-content; max-width: 100%; min-height: 0; align-self: flex-end; margin-top: 0.75rem; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; color: #fff; background: #2563eb; border: 1.5px solid #2563eb; border-radius: 6px; text-decoration: none; text-shadow: none; box-shadow: none; transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease; } .hero-cta-box .hero-cta-box-btn:hover, .hero-cta-box .hero-cta-btn.hero-cta-box-btn:hover { filter: brightness(0.92); color: #fff; transform: scale(1.02); text-shadow: none; box-shadow: none; } .hero-card-media .hero-cta-btn { min-width: 0; max-width: 280px; padding: 0.75rem 1.5rem; font-size: 1.1rem; } .hero-card-description { display: flex; justify-content: center; width: 100%; max-width: 100%; box-sizing: border-box; font-size: 1.25rem; margin-bottom: 0; margin-left: auto; margin-right: auto; color: #666; white-space: nowrap; overflow: visible; padding-left: 0; padding-right: 0; } .hero-cta-wrap { margin-top: var(--space-lg); } .hero-carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: var(--space-sm); margin-bottom: 0; flex-wrap: wrap; } .hero-carousel-dot { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background: rgba(0, 0, 0, 0.25); cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; } .hero-carousel-dot:hover { background: rgba(0, 0, 0, 0.4); } .hero-carousel-dot[aria-current="true"] { background: rgba(0, 0, 0, 0.6); transform: scale(1.2); } .hero-carousel-nav { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: var(--space-sm); flex-wrap: wrap; } .hero-carousel-btn { width: 44px; height: 44px; padding: 0; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 50%; background: #fff; color: #333; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); } .hero-carousel-btn:hover { background: #f5f5f5; border-color: rgba(0, 0, 0, 0.25); transform: scale(1.05); } .hero-carousel-btn:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; } .hero-carousel-btn svg { width: 20px; height: 20px; display: block; } .hero-carousel-play .hero-carousel-icon-play { display: none; } .hero-carousel-play .hero-carousel-icon-pause { display: block; } .hero-carousel-play.is-paused .hero-carousel-icon-play { display: block; } .hero-carousel-play.is-paused .hero-carousel-icon-pause { display: none; } @media (max-width: 767px) { .hero-card { width: 300px; min-width: 280px; max-width: calc(100vw - 2rem); margin-right: -22px; } .hero-card-active { margin-right: -22px; } .hero-card-title { font-size: 2rem; } .hero-card-description { font-size: 1rem; } .hero-cta-box { padding: 1.15rem 1.25rem; min-height: 100px; } .hero-cta-typing { font-size: 1.2rem; } .hero-cta-box .hero-cta-box-btn, .hero-cta-box .hero-cta-btn.hero-cta-box-btn { width: max-content; padding: 0.45rem 0.85rem; font-size: 0.8rem; } } .homepage-subtext-row { margin-top: 20px; padding-top: 20px; padding-bottom: var(--space-md); } .homepage-subtext-title { font-size: 1.25rem; font-weight: 700; margin-bottom: var(--space-md); color: #888; text-align: center; text-transform: uppercase; letter-spacing: 0.03em; } .homepage-subtext { width: 100%; font-size: 1.125rem; line-height: 1.6; color: #000; font-weight: 400; font-family: system-ui, -apple-system, sans-serif; } .homepage-tools-section { padding-top: var(--space-lg); padding-bottom: 80px; overflow-x: hidden; } .homepage-tools-section .container--xxl { min-width: 0; } .homepage-tools-title { font-size: 1.25rem; font-weight: 700; margin-bottom: var(--space-lg); color: #888; text-align: center; text-transform: uppercase; letter-spacing: 0.03em; } .homepage-tools { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); } @media (min-width: 768px) { .homepage-tools { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1024px) { .homepage-tools { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-xl); } .homepage-tool { width: 100%; max-width: 439px; min-height: 351px; height: auto; padding: 40px 43px 44px 43px; box-sizing: border-box; justify-self: start; } .homepage-tool-icon svg, .homepage-tool-icon img { width: 240px; height: 240px; max-width: 80%; max-height: 80%; } .homepage-tool .homepage-tool-title { margin: 0 0 6px 0; } .homepage-tool .homepage-tool-desc { margin-bottom: 24px; } } @media (min-width: 1024px) and (max-width: 1399px) { .homepage-tool { padding: 24px 28px 28px 28px; min-height: 300px; } .homepage-tool .homepage-tool-title { font-size: 2rem; line-height: 1.15; margin-bottom: 6px; } .homepage-tool .homepage-tool-desc { font-size: 0.9375rem; line-height: 1.3; margin-bottom: 16px; } .homepage-tool .homepage-tool-cta { font-size: 0.75rem; } .homepage-tool-icon svg, .homepage-tool-icon img { width: 140px; height: 140px; max-width: 70%; max-height: 70%; } } @media (min-width: 1400px) { .homepage-tools { grid-template-columns: repeat(3, 439px); justify-content: center; } .homepage-tool { max-width: 439px; width: 439px; } } .homepage-tool { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; border-radius: 16px; background: var(--tool-card-bg, #fff); border: 1px solid rgba(0, 0, 0, 0.08); text-decoration: none; color: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease; min-height: 200px; min-width: 0; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); box-sizing: border-box; } .homepage-tool-icon { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; opacity: 0; transition: opacity 0.1s ease-out; pointer-events: none; color: var(--tool-icon-color, #ffffff); z-index: 2; } .homepage-tool-icon svg, .homepage-tool-icon img { width: 192px; height: 192px; display: block; object-fit: contain; flex-shrink: 0; } .homepage-tool-icon svg { fill: currentColor; color: var(--tool-icon-color, #ffffff); } .homepage-tool-icon img { filter: brightness(0) invert(1); opacity: 0.95; } .homepage-tool-icon svg path, .homepage-tool-icon svg circle, .homepage-tool-icon svg rect { fill: currentColor; } .homepage-tool:hover .homepage-tool-icon { opacity: 1; transition: opacity 0.2s ease; } .homepage-tool:hover .homepage-tool-title, .homepage-tool:hover .homepage-tool-desc { opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease; } .homepage-tool-title, .homepage-tool-desc { transition: opacity 0.2s ease, visibility 0.2s ease; } @media (max-width: 767px) { .homepage-tools { gap: var(--space-md); justify-items: center; } .homepage-tool { width: 100%; max-width: 420px; aspect-ratio: 1; min-height: 0; height: auto; padding: var(--space-lg); justify-content: space-between; } .homepage-tool-title { font-size: 2rem; margin-bottom: var(--space-xs); line-height: 1.1; } .homepage-tool-desc { font-size: 0.875rem; line-height: 1.3; margin-bottom: var(--space-xs); flex: 1; } .homepage-tool-cta { font-size: 0.75rem; letter-spacing: 0.05em; } .homepage-tool-icon svg, .homepage-tool-icon img { width: 120px; height: 120px; } } @media (max-width: 400px) { .homepage-tool { max-width: 100%; padding: var(--space-md); } .homepage-tool-title { font-size: 1.75rem; } .homepage-tool-desc { font-size: 0.8125rem; } .homepage-tool-icon svg, .homepage-tool-icon img { width: 100px; height: 100px; } } @media (min-width: 768px) and (max-width: 1023px) { .homepage-tool { padding: var(--space-xl); min-height: 280px; height: auto; } .homepage-tool-title { font-size: 2.5rem; margin-bottom: var(--space-sm); } .homepage-tool-desc { font-size: 1rem; margin-bottom: var(--space-sm); } .homepage-tool-cta { font-size: 0.8125rem; } .homepage-tool-icon svg, .homepage-tool-icon img { width: 160px; height: 160px; } } .homepage-tool:hover { background: var(--tool-card-bg-hover, #f8fafc); border-color: var(--tool-color, #2563eb); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); transform: translateY(-2px); } .homepage-tool:hover .homepage-tool-title, .homepage-tool:hover .homepage-tool-desc, .homepage-tool:hover .homepage-tool-cta { color: var(--tool-hover-text, var(--tool-color, #2563eb)); align-self: center; } .homepage-tool-title { font-size: 3.25rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--tool-color, #2563eb); margin-bottom: var(--space-sm); transition: color 0.2s ease; flex-shrink: 0; min-width: 0; } .homepage-tool-desc { font-size: 1.125rem; line-height: 1.25; font-weight: 400; letter-spacing: 0.01em; color: var(--tool-color, #2563eb); transition: color 0.2s ease; } @media (min-width: 1024px) { .homepage-tool-desc { margin-bottom: 0; } } .homepage-tool-cta { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--tool-color, #2563eb); transition: color 0.2s ease; } .recent-colors h2, .homepage-popular-title { font-size: 1.25rem; font-weight: 700; color: #888; text-align: center; text-transform: uppercase; letter-spacing: 0.03em; } .homepage-popular-title { margin-top: var(--space-xl); margin-bottom: var(--space-lg); } .homepage-popular-title:first-child { margin-top: 0; } .homepage-popular-colors { margin-bottom: var(--space-lg); } .homepage-popular-colors.colors-grid { grid-template-columns: repeat(7, 1fr); } @media (max-width: 767px) { .homepage-popular-colors.colors-grid { grid-template-columns: repeat(2, 1fr); } } .homepage-popular .homepage-popular-palettes.palettes-grid, .homepage-popular .homepage-popular-gradients.palettes-grid { justify-items: center; align-items: start; } .homepage-popular .homepage-popular-palettes.palettes-grid { margin-bottom: var(--space-lg); } @media (max-width: 767px) { .homepage-popular .homepage-popular-palettes.palettes-grid, .homepage-popular .homepage-popular-gradients.palettes-grid { grid-template-columns: 1fr; } } @media (min-width: 768px) and (max-width: 1279px) { .homepage-popular .homepage-popular-palettes.palettes-grid, .homepage-popular .homepage-popular-gradients.palettes-grid { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1280px) { .homepage-popular .homepage-popular-palettes.palettes-grid, .homepage-popular .homepage-popular-gradients.palettes-grid { grid-template-columns: repeat(3, 1fr); } } .homepage-popular .homepage-popular-gradients.palettes-grid .gradient-card, .homepage-popular .homepage-popular-palettes.palettes-grid .palette-card { width: 100%; max-width: 330px; min-width: 0; } .archive-header { margin-bottom: var(--space-sm); } .archive-title { font-size: 3rem; font-weight: 700; margin-bottom: var(--space-sm); } @media (max-width: 768px) { .archive-title { font-size: 2rem; } } .archive-description { color: #666; font-size: 1.1rem; } .breadcrumbs { margin-bottom: var(--space-md); } .breadcrumbs-list { display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; gap: var(--space-sm); } .breadcrumbs-item:not(:last-child)::after { content: '/'; margin-left: var(--space-sm); color: #999; } .breadcrumbs-item a { color: #666; } .breadcrumbs-item span { color: var(--color-text); } .color-picker-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: transparent; z-index: 9998; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; } .color-picker-overlay.active { display: block; opacity: 1; pointer-events: auto; } .color-picker-modal { display: none; position: absolute; z-index: 9999; background: #fff; border: none; border-radius: 20px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); max-width: 320px; width: 90%; opacity: 0; transform: scale(0.9); transition: opacity 0.3s ease, transform 0.3s ease; } .color-picker-modal.active { display: block; opacity: 1; transform: scale(1); } .color-picker-content { padding: var(--space-md); } .color-picker-body { margin-bottom: var(--space-sm); } .color-picker-saturation { position: relative; width: 100%; height: 150px; border-radius: var(--radius-md); overflow: visible; margin-bottom: var(--space-sm); cursor: crosshair; border: none; isolation: isolate; box-sizing: border-box; } .color-picker-saturation-white { position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: var(--radius-md); background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)); z-index: 1; pointer-events: none; } .color-picker-saturation-black { position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: var(--radius-md); background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); z-index: 2; pointer-events: none; } .color-picker-saturation-cursor { position: absolute; width: 20px; height: 20px; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3); transform: translate(-50%, -50%); pointer-events: none; z-index: 20; top: 0; left: 0; box-sizing: border-box; } .color-picker-saturation-cursor::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; border: 1px solid rgba(0, 0, 0, 0.3); border-radius: 50%; background: transparent; } .color-picker-hue { position: relative; width: 100%; height: 16px; border-radius: var(--radius-md); margin-bottom: var(--space-sm); cursor: pointer; background: linear-gradient(to right, #ff0000 0%, #ffff00 16.66%, #00ff00 33.33%, #00ffff 50%, #0000ff 66.66%, #ff00ff 83.33%, #ff0000 100% ); border: none; } .color-picker-hue-cursor { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3); pointer-events: none; z-index: 10; left: 0; } .color-picker-hue-cursor::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; border: 1px solid rgba(0, 0, 0, 0.3); border-radius: 50%; background: transparent; } .color-picker-preview { display: flex; align-items: stretch; gap: 8px; } .color-picker-preview-color { width: 32px; height: 32px; border-radius: var(--radius-sm); border: none; flex-shrink: 0; } .color-picker-hex-input-wrapper { display: flex; align-items: center; gap: var(--space-sm); border: 1px solid #e0e0e0; border-radius: var(--radius-md); padding: var(--space-sm) var(--space-md); flex: 1; background: #fff; transition: border-color 0.2s ease; } .color-picker-hex-input-wrapper:focus-within { border-color: #2563EB; outline: none; } .color-picker-hex-input { border: none; outline: none; font-size: 1rem; font-weight: 600; font-family: var(--font-base); color: var(--color-text); width: 100%; text-transform: uppercase; } .color-picker-hex-input::placeholder { color: #999; opacity: 0.6; } .color-picker-preview .color-picker-eyedropper-wrapper { display: flex; align-items: center; justify-content: center; border: 1px solid #e0e0e0; border-radius: var(--radius-md); padding: var(--space-xs); flex-shrink: 0; margin-right: 4px; transition: border-color 0.2s ease; align-self: stretch; min-width: 50px; aspect-ratio: 1; box-sizing: border-box; } .color-picker-preview .color-picker-eyedropper-wrapper:hover { border-color: #2563EB; } .color-picker-preview .color-picker-eyedropper svg { width: 20px; height: 20px; } .color-picker-footer .color-picker-eyedropper-wrapper { display: inline-flex; align-items: center; justify-content: center; border: 1px solid #e0e0e0; border-radius: var(--radius-sm); padding: 6px; width: 32px; height: 32px; box-sizing: border-box; } .color-picker-footer .color-picker-eyedropper-wrapper:hover { border-color: #2563EB; } .color-picker-footer .color-picker-eyedropper svg { width: 16px; height: 16px; } .color-picker-eyedropper-wrapper:hover { border-color: #2563EB; } .color-picker-eyedropper { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; color: #000; transition: opacity 0.2s ease; width: 100%; height: 100%; fill: currentColor; } .color-picker-eyedropper:hover { opacity: 0.7; } .color-picker-eyedropper:active { opacity: 0.5; } .color-picker-eyedropper svg { fill: currentColor; } .color-picker-footer { display: flex; justify-content: flex-end; align-items: center; gap: var(--space-sm); margin-top: var(--space-sm); } .color-picker-mode-wrap { display: none; margin-right: auto; } .color-picker-modal.color-picker-from-palette .color-picker-mode-wrap { display: block; } .color-picker-mode-dropdown { position: relative; } .color-picker-mode-trigger { display: inline-flex; align-items: center; justify-content: space-between; gap: 6px; padding: 6px 10px; font-size: 0.8rem; border: 1px solid #e0e0e0; border-radius: var(--radius-sm); background: #fff; color: var(--color-text); cursor: pointer; min-width: 90px; font-family: inherit; } .color-picker-mode-trigger:hover { border-color: #ccc; } .color-picker-mode-trigger:focus { outline: none; border-color: #2563EB; } .color-picker-mode-chevron { flex-shrink: 0; opacity: 0.7; transition: transform 0.2s ease; } .color-picker-mode-dropdown.is-open .color-picker-mode-chevron { transform: rotate(180deg); } .color-picker-mode-panel { position: absolute; left: 0; bottom: 100%; margin-bottom: 4px; min-width: 100%; background: #fff; border: 1px solid #e0e0e0; border-radius: var(--radius-sm); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); z-index: 50; opacity: 0; visibility: hidden; transition: opacity 0.15s ease, visibility 0.15s ease; max-height: 240px; overflow-y: auto; } .color-picker-mode-dropdown.is-open .color-picker-mode-panel { opacity: 1; visibility: visible; } .color-picker-mode-option { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; font-size: 0.85rem; color: var(--color-text); cursor: pointer; transition: background 0.1s ease; gap: 8px; } .color-picker-mode-option:hover { background: #f5f5f5; } .color-picker-mode-option.is-selected { background: #e6f0fa; color: var(--color-text); } .color-picker-mode-option.is-selected::after { content: ''; width: 14px; height: 14px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563EB'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat; } .color-picker-mode { padding: 6px 10px; font-size: 0.8rem; border: 1px solid #e0e0e0; border-radius: var(--radius-sm); background: #fff; color: var(--color-text); cursor: pointer; min-width: 90px; } .color-picker-mode:focus { outline: none; border-color: #2563EB; } .color-picker-body-rgb, .color-picker-body-mode { margin-bottom: var(--space-sm); } .color-picker-rgb-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; min-height: 28px; } .color-picker-rgb-line { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; } .color-picker-rgb-label { font-size: 0.8rem; font-weight: 500; color: var(--color-text); min-width: 58px; flex-shrink: 0; } .color-picker-rgb-slider-wrap { flex: 1; height: 10px; border-radius: 4px; position: relative; overflow: visible; } .color-picker-rgb-slider, .color-picker-mode-slider { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; z-index: 2; } .color-picker-rgb-slider-wrap::before { content: ''; position: absolute; inset: 0; border-radius: 4px; z-index: 0; } .color-picker-rgb-thumb { position: absolute; top: 50%; width: 18px; height: 18px; margin-top: -9px; margin-left: -9px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); pointer-events: none; z-index: 3; left: 0; } .color-picker-rgb-value { font-size: 0.8rem; font-weight: 600; min-width: 28px; text-align: right; } .color-picker-cancel, .color-picker-confirm { padding: var(--space-xs) var(--space-sm); border: none; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease; } .color-picker-cancel { background: #f5f5f5; color: var(--color-text); } .color-picker-cancel:hover { background: #e0e0e0; } .color-picker-confirm { background: #2563EB; color: #fff; } .color-picker-confirm:hover { background: #1d4ed8; } .color-picker-modal.color-picker-from-palette .color-picker-cancel, .color-picker-modal.color-picker-from-palette .color-picker-confirm { display: none; } .color-picker-copy-hex { display: none; align-items: center; justify-content: center; width: 32px; height: 32px; padding: 0; border: 1px solid #e0e0e0; border-radius: var(--radius-sm); background: #fff; color: #1a1a1a; cursor: pointer; transition: border-color 0.2s ease, opacity 0.2s ease; } .color-picker-copy-hex:hover { border-color: #2563EB; opacity: 0.85; } .color-picker-copy-hex svg { width: 16px; height: 16px; flex-shrink: 0; } .color-picker-modal.color-picker-from-palette .color-picker-copy-hex { display: inline-flex; } .color-picker-modal.color-picker-from-palette { width: 320px; height: 320px; min-height: 320px; max-width: 320px; box-sizing: border-box; display: flex; flex-direction: column; } .color-picker-modal.color-picker-from-palette .color-picker-content { display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: visible; } .color-picker-modal.color-picker-from-palette .color-picker-body { flex: 1; min-height: 0; overflow: visible; display: flex; flex-direction: column; box-sizing: border-box; } .color-picker-modal.color-picker-from-palette .color-picker-body-rgb, .color-picker-modal.color-picker-from-palette .color-picker-body-mode { height: 100%; min-height: 0; box-sizing: border-box; display: flex; flex-direction: column; gap: 0; } .color-picker-modal.color-picker-from-palette .color-picker-footer { flex-shrink: 0; } .color-picker-modal.color-picker-from-palette .color-picker-body-cmyk { height: 100%; min-height: 0; } .color-picker-modal.color-picker-from-palette .color-picker-body-cmyk .color-picker-rgb-row { gap: 6px; padding: 5px 0; } .color-picker-modal.color-picker-from-palette .color-picker-body-cmyk .color-picker-rgb-label { font-size: 1.1rem; font-weight: 600; } .color-picker-modal.color-picker-from-palette .color-picker-body-cmyk .color-picker-rgb-value { font-size: 0.75rem; } .color-picker-modal.color-picker-from-palette .color-picker-rgb-row { flex-direction: column; align-items: stretch; justify-content: center; gap: 12px; min-height: 0; margin-bottom: 0; flex: 1; padding: 8px 0; box-sizing: border-box; overflow: visible; } .color-picker-modal.color-picker-from-palette .color-picker-rgb-label { min-width: 0; font-size: 1.05rem; font-weight: 600; line-height: 1.2; } .color-picker-modal.color-picker-from-palette .color-picker-rgb-line { flex: 0 0 auto; overflow: visible; } .color-picker-modal.color-picker-from-palette .color-picker-saturation-cursor { width: 22px; height: 22px; border-width: 4px; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12); } .color-picker-modal.color-picker-from-palette .color-picker-saturation-cursor::before { width: 10px; height: 10px; border: 1px solid rgba(0, 0, 0, 0.12); background: transparent; } .color-picker-modal.color-picker-from-palette .color-picker-hue-cursor { width: 22px; height: 22px; border-width: 4px; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12); } .color-picker-modal.color-picker-from-palette .color-picker-hue-cursor::before { width: 10px; height: 10px; border: 1px solid rgba(0, 0, 0, 0.12); background: transparent; } .color-picker-modal.color-picker-from-palette .color-picker-rgb-thumb { width: 22px; height: 22px; margin-top: -11px; margin-left: -11px; border-width: 4px; box-sizing: border-box; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12); } .color-picker-modal.color-picker-from-palette .color-picker-rgb-thumb::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; border: 1px solid rgba(0, 0, 0, 0.12); border-radius: 50%; background: transparent; } @media (max-width: 767px) { .color-picker-modal, body .color-picker-modal.color-picker-modal-mobile { position: fixed !important; top: auto !important; left: 0 !important; right: 0 !important; bottom: 0 !important; max-width: 100%; width: 100%; border-width: 0; border-radius: 20px 20px 0 0; max-height: 90vh; overflow-y: auto; z-index: 10000; transform: translateY(100%) !important; transition: transform 0.3s ease, opacity 0.3s ease; } .color-picker-modal.active, body .color-picker-modal.color-picker-modal-mobile.active { transform: translateY(0) !important; } body .color-picker-overlay.color-picker-overlay-mobile { position: fixed !important; inset: 0 !important; z-index: 9999; } .color-picker-modal.color-picker-from-palette { width: 100% !important; max-width: 100% !important; } .color-picker-overlay.active { background: rgba(0, 0, 0, 0.5); } .color-picker-content { padding: var(--space-md); width: 100%; box-sizing: border-box; } .color-picker-saturation { height: 130px; border-width: 2px; } .color-picker-hue { height: 14px; border-width: 2px; } .color-picker-preview-color { width: 28px; height: 28px; } .color-picker-hex-input-wrapper { padding: var(--space-xs) var(--space-sm); } }