:root {
--ink: #1A1A1A;
--paper: #FAFAF8;
--panel: #F1F0EA;
--border: #ECECE7;
--blue: #29ABE2;
--pink: #EC1E79;
--yellow: #FFF200;
--badge-bg: #FFF7CC;
--badge-text: #8a7500;
--text-1: #1A1A1A;
--text-2: #444;
--text-3: #555;
--text-4: #666;
--text-5: #777;
--text-6: #888;
--text-dark-muted: #bbb;
--radius-pill: 100px;
--radius-lg: 24px;
--radius-md: 16px;
--radius-sm: 10px;
--max-width: 1360px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
background: var(--paper) url(//www.kaleidoscope.inc/wp-content/themes/kaleidoscope-colormaster/assets/images/bg-texture.jpg) repeat;
background-size: 340px auto;
color: var(--text-1);
font-family: 'Inter', Helvetica, Arial, sans-serif;
min-height: 100vh;
position: relative;
}
body::before {
content: '';
position: fixed;
inset: 0;
background: var(--paper);
opacity: 0.95;
pointer-events: none;
z-index: 0;
}
#page-wrap { position: relative; z-index: 1; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--pink); }
::selection { background: var(--yellow); }
img { max-width: 100%; display: block; }
h1, h2, h3, .display-font {
font-family: 'Baloo 2', sans-serif;
letter-spacing: -0.02em;
margin: 0;
}
p { margin: 0; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } } .btn {
display: inline-block;
padding: 15px 28px;
border-radius: var(--radius-pill);
font-weight: 600;
font-size: 15px;
cursor: pointer;
border: none;
text-align: center;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink); color: var(--yellow); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { color: var(--pink); border-color: var(--pink); }
.btn-small { padding: 11px 22px; font-size: 14px; } .site-header {
position: sticky;
top: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 48px;
background: rgba(250, 250, 248, 0.92);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--border);
}
.site-logo { display: flex; align-items: center; }
.site-logo img, .site-logo svg { height: 46px; width: auto; }
.site-logo a { display: flex; align-items: center; }
.primary-menu {
display: flex;
align-items: center;
gap: 36px;
list-style: none;
margin: 0;
padding: 0;
}
.primary-menu li a {
font-size: 15px;
font-weight: 500;
color: var(--ink);
padding-bottom: 3px;
border-bottom: 2px solid transparent;
}
.primary-menu li a:hover { color: var(--ink); border-bottom-color: #ccc; }
.primary-menu li.current-menu-item > a,
.primary-menu li.current_page_item > a {
border-bottom-color: var(--ink);
}
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-cta { flex-shrink: 0; }
.mobile-nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 34px;
height: 34px;
padding: 0;
background: none;
border: none;
cursor: pointer;
flex-shrink: 0;
}
.mobile-nav-toggle span {
display: block;
width: 100%;
height: 2px;
border-radius: 2px;
background: var(--ink);
transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .hero {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
padding: 100px 48px 110px;
max-width: var(--max-width);
margin: 0 auto;
}
.hero-badge {
display: inline-block;
padding: 9px 18px;
border-radius: var(--radius-pill);
background: var(--badge-bg);
color: var(--badge-text);
font-size: 16px;
font-weight: 600;
margin-bottom: 24px;
}
.hero-title {
font-weight: 700;
font-size: 64px;
line-height: 1.02;
margin-bottom: 24px;
}
.hero-desc {
font-size: 19px;
line-height: 1.6;
color: var(--text-2);
max-width: 460px;
margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
aspect-ratio: 1 / 1;
border-radius: var(--radius-lg);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background: var(--paper);
}
.hero-image img { width: 80%; height: 80%; object-fit: contain; } .steps-section { padding: 80px 48px; background: var(--ink); color: var(--paper); }
.steps-grid {
max-width: var(--max-width);
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 48px;
}
.step-num { font-family: 'Baloo 2', sans-serif; font-size: 44px; font-weight: 700; margin-bottom: 12px; }
.step-title { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.step-desc { font-size: 15px; line-height: 1.6; color: var(--text-dark-muted); } .section { padding: 100px 48px; max-width: var(--max-width); margin: 0 auto; }
.section-title {
font-weight: 700;
font-size: 38px;
margin-bottom: 56px;
text-align: center;
}
.section-head-row {
display: flex;
align-items: baseline;
justify-content: space-between;
margin-bottom: 40px;
}
.section-head-row .section-link { font-weight: 600; } .card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card, .value-card, .dye-card {
padding: 28px;
border-radius: 18px;
background: #fff;
border: 1px solid var(--border);
}
.feature-icon, .value-icon {
width: 36px;
height: 36px;
border-radius: 10px;
margin-bottom: 18px;
}
.feature-title, .value-title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-desc, .value-desc { font-size: 14.5px; line-height: 1.55; color: var(--text-3); } .testimonial-section { padding: 90px 48px; background: var(--panel); }
.testimonial-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.testimonial-quote {
font-family: 'Baloo 2', sans-serif;
font-size: 30px;
font-weight: 700;
line-height: 1.4;
}
.testimonial-author { margin-top: 24px; font-size: 15px; color: var(--text-4); font-weight: 500; } .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.video-card { display: block; cursor: pointer; }
.video-thumb {
aspect-ratio: 16 / 10;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
margin-bottom: 14px;
overflow: hidden;
}
.video-thumb img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.video-thumb::after {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.18);
}
.play-triangle-wrap {
position: relative;
z-index: 1;
width: 50px;
height: 50px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.94);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.play-triangle {
width: 0; height: 0;
border-top: 11px solid transparent;
border-bottom: 11px solid transparent;
border-left: 16px solid var(--ink);
margin-left: 3px;
}
.video-title { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.video-meta { font-size: 13px; color: var(--text-6); margin-top: 4px; } .product-hero {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
margin-bottom: 100px;
}
.product-image {
aspect-ratio: 1 / 1;
border-radius: var(--radius-lg);
overflow: hidden;
background: var(--paper);
display: flex;
align-items: center;
justify-content: center;
}
.product-image img { width: 80%; height: 80%; object-fit: contain; }
.product-title { font-weight: 700; font-size: 46px; margin-bottom: 20px; }
.product-desc { font-size: 18px; line-height: 1.6; color: var(--text-2); margin-bottom: 28px; }
.dye-swatch { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px; }
.dye-card { text-align: center; }
.dye-name { font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.dye-desc { font-size: 13.5px; color: var(--text-4); } .page-hero-title { font-weight: 700; font-size: 44px; margin-bottom: 28px; }
.page-hero-desc { font-size: 18px; line-height: 1.7; color: var(--text-2); max-width: 760px; margin-bottom: 70px; }
.value-icon { width: 32px; height: 32px; border-radius: 8px; }
.team-heading { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 26px; margin-bottom: 28px; }
.team-photo {
aspect-ratio: 1 / 1;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 14px;
font-family: monospace;
font-size: 12px;
color: var(--text-6);
}
.team-name { font-weight: 600; font-size: 16px; }
.team-role { font-size: 13.5px; color: var(--text-5); } .guide-card {
display: flex;
align-items: center;
justify-content: space-between;
padding: 22px 26px;
border-radius: var(--radius-md);
background: #fff;
border: 1px solid var(--border);
margin-bottom: 56px;
}
.guide-card-left { display: flex; align-items: center; gap: 18px; }
.guide-icon {
width: 44px; height: 56px;
border-radius: 4px;
background: var(--ink);
position: relative;
flex-shrink: 0;
}
.guide-icon::before {
content: '';
position: absolute;
inset: 8px 6px auto;
height: 2px;
background: #fff;
box-shadow: 0 6px 0 #fff, 0 12px 0 #fff;
}
.guide-title { font-size: 16.5px; font-weight: 700; }
.guide-meta { font-size: 13px; color: var(--text-6); margin-top: 4px; }
.guide-cta { font-weight: 600; font-size: 14px; }
.subheading { font-weight: 700; font-size: 20px; margin-bottom: 24px; }
.article-item, .faq-item { border-top: 1px solid var(--border); padding: 0; }
.article-item summary, .faq-item summary { list-style: none; cursor: pointer; }
.article-item summary::-webkit-details-marker, .faq-item summary::-webkit-details-marker { display: none; }
.article-summary-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 22px 0;
}
.article-summary-title { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; }
.article-summary-meta { font-size: 13px; color: var(--text-6); }
.article-arrow {
width: 10px; height: 10px;
border-top: 2px solid var(--ink);
border-right: 2px solid var(--ink);
transform: rotate(45deg);
flex-shrink: 0;
}
.article-item[open] .article-arrow {
border-top: none; border-right: none;
border-bottom: 2px solid var(--ink);
border-left: 2px solid var(--ink);
transform: rotate(45deg);
}
.article-body {
padding: 0 0 26px;
font-size: 15px;
line-height: 1.7;
color: #333;
max-width: 760px;
white-space: pre-line;
}
.faq-item { padding: 22px 0; }
.faq-question { font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.faq-answer { font-size: 14.5px; color: var(--text-3); line-height: 1.6; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-detail { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.contact-detail-label { font-size: 13px; color: var(--text-6); margin-bottom: 4px; }
.contact-detail-value { font-size: 16px; font-weight: 600; }
.contact-form-panel {
padding: 32px;
border-radius: 20px;
background: #fff;
border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form textarea {
padding: 14px 16px;
border-radius: var(--radius-sm);
border: 1px solid var(--border);
font-size: 15px;
font-family: inherit;
width: 100%;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
padding: 15px;
text-align: center;
border-radius: var(--radius-pill);
background: var(--ink);
color: #fff;
font-weight: 600;
font-size: 15px;
cursor: pointer;
border: none;
}
.form-notice { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 4px; }
.form-notice.success { background: #E8F7EC; color: #1B6B34; }
.form-notice.error { background: #FDEAEA; color: #A31313; } .site-footer {
padding: 56px 48px;
border-top: 1px solid var(--border);
display: flex;
flex-direction: column;
gap: 32px;
}
.footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px 32px;
}
.footer-bottom img { height: 22px; width: auto; }
.footer-copy { font-size: 13.5px; color: var(--text-6); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13.5px; color: var(--text-6); }
.footer-legal a:hover { color: var(--pink); }
.footer-apps { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-apps { margin-top: 28px; } .userway_buttons_wrapper {
right: auto !important;
left: 16px !important;
}
.app-badge {
display: flex;
align-items: center;
gap: 10px;
padding: 9px 16px;
border-radius: 10px;
background: var(--ink);
color: #fff;
}
.app-badge:hover { color: var(--yellow); }
.app-badge-eyebrow { display: block; font-size: 10px; line-height: 1.3; opacity: 0.85; }
.app-badge-title { display: block; font-size: 15px; line-height: 1.3; font-weight: 600; } .video-lightbox {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.75);
z-index: 300;
display: none;
align-items: center;
justify-content: center;
padding: 24px;
}
.video-lightbox.is-open { display: flex; }
.video-lightbox-inner { width: min(400px, 90vw); max-height: 85vh; position: relative; }
.video-lightbox-close {
position: absolute;
top: -44px;
right: 0;
color: #fff;
font-size: 28px;
cursor: pointer;
line-height: 1;
background: none;
border: none;
}
.video-lightbox-frame {
width: 100%;
aspect-ratio: 9 / 16;
border-radius: 14px;
overflow: hidden;
background: #000;
}
.video-lightbox-frame iframe { width: 100%; height: 100%; border: none; } .chat-widget { position: fixed; bottom: 28px; left: 28px; z-index: 200; }
.chat-panel {
width: 340px;
height: 440px;
background: #fff;
border-radius: 18px;
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
display: none;
flex-direction: column;
overflow: hidden;
margin-bottom: 16px;
}
.chat-panel.is-open { display: flex; }
.chat-header {
padding: 16px 18px;
background: var(--ink);
color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
}
.chat-header-title { font-weight: 600; font-size: 15px; }
.chat-header-close { cursor: pointer; font-size: 18px; line-height: 1; background: none; border: none; color: #fff; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 78%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.chat-msg.bot { align-self: flex-start; background: var(--panel); color: var(--ink); }
.chat-msg.user { align-self: flex-end; background: var(--ink); color: #fff; }
.chat-input-row { padding: 12px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.chat-input-row input {
flex: 1;
padding: 10px 14px;
border-radius: var(--radius-pill);
border: 1px solid var(--border);
font-size: 14px;
font-family: inherit;
}
.chat-send {
width: 38px; height: 38px;
border-radius: 50%;
background: var(--ink);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 16px;
border: none;
flex-shrink: 0;
}
.chat-toggle {
width: 58px; height: 58px;
border-radius: 50%;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
border: none;
padding: 0;
}
.chat-toggle img { height: 24px; width: auto; object-fit: contain; object-position: top; clip-path: inset(0 0 55% 0); } .entry-content {
font-size: 16px;
line-height: 1.7;
color: var(--text-2);
max-width: 760px;
}
.entry-content > * + * { margin-top: 1.2em; }
.entry-content h2 { font-size: 26px; margin-top: 1.8em; }
.entry-content h3 { font-size: 20px; margin-top: 1.6em; }
.entry-content p { margin: 0; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content li + li { margin-top: 0.4em; }
.entry-content a { text-decoration: underline; }
.entry-content strong { color: var(--text-1); }
.entry-content blockquote {
margin: 0;
padding-left: 20px;
border-left: 3px solid var(--border);
color: var(--text-3);
font-style: italic;
} @media (max-width: 900px) {
.site-header { padding: 14px 20px; flex-wrap: wrap; }
.site-nav {
display: none;
width: 100%;
order: 3;
}
.site-nav.is-open { display: block; }
.primary-menu {
flex-direction: column;
align-items: stretch;
gap: 0;
padding-top: 14px;
}
.primary-menu li a {
display: block;
padding: 12px 2px;
border-bottom: 1px solid var(--border);
}
.mobile-nav-toggle { display: flex; }
.hero, .product-hero { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
.card-grid-4 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: 1fr; }
.steps-grid, .video-grid { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; }
.section { padding: 60px 20px; }
.hero-title { font-size: 42px; }
.chat-widget { left: 16px; bottom: 16px; }
.chat-panel { width: calc(100vw - 32px); }
}