:root {
  --colorma-bg: #F4F4F5;
  --colorma-bg-gradient: linear-gradient(135deg, #F4F4F5 90%, #e1e1e6 100%);
  --colorma-bg-gradient2: linear-gradient(120deg, rgba(67,56,202,0.03) 0%, rgba(244,244,245,0.95) 90%);
  --colorma-accent: #4338CA;
  --colorma-accent-light: #6d5ff8;
  --colorma-text: #232336;
  --colorma-muted: #7C7C8A;
  --colorma-card-bg: rgba(255,255,255,0.92);
  --colorma-shadow: 0 4px 24px 0 rgba(67,56,202,0.07), 0 1.5px 4px 0 rgba(67,56,202,0.04);
  --colorma-radius: 18px;
  --colorma-radius-sm: 10px;
  --colorma-radius-lg: 28px;
  --colorma-border: 1px solid rgba(67,56,202,0.13);
  --colorma-transition: 0.18s cubic-bezier(.4,0,.2,1);
  --colorma-max-width: 1240px;
  --colorma-font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --colorma-font-size: 14px;
  --colorma-font-size-sm: 13px;
  --colorma-font-size-lg: 18px;
  --colorma-btn-radius: 12px;
  --colorma-btn-shadow: 0 2px 8px 0 rgba(67,56,202,0.08);
}

html, body {
  background: var(--colorma-bg-gradient);
  color: var(--colorma-text);
  font-family: var(--colorma-font-main);
  font-size: var(--colorma-font-size);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
}

body.colorma-body {
  min-height: 100vh;
  background: var(--colorma-bg-gradient2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--colorma-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--colorma-accent);
  text-decoration: none;
  transition: color var(--colorma-transition);
}
a:hover, a:focus {
  color: var(--colorma-accent-light);
  outline: none;
}

.colorma-header {
  background: var(--colorma-bg-gradient);
  box-shadow: var(--colorma-shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
.colorma-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--colorma-max-width);
  margin: 0 auto;
  padding: 18px 24px 14px 24px;
}
.colorma-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.colorma-logo__img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(67,56,202,0.07);
  background: #fff;
  object-fit: cover;
}
.colorma-logo__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--colorma-accent);
  letter-spacing: 0.02em;
}
.colorma-nav__list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.colorma-nav__link {
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: var(--colorma-btn-radius);
  transition: background var(--colorma-transition), color var(--colorma-transition);
}
.colorma-nav__link:hover,
.colorma-nav__link:focus {
  background: rgba(67,56,202,0.07);
  color: var(--colorma-accent);
}

/* HERO */
.colorma-hero {
  background: var(--colorma-bg-gradient2);
  padding: 56px 0 44px 0;
  box-shadow: 0 2px 16px 0 rgba(67,56,202,0.04);
}
.colorma-hero__inner {
  display: flex;
  gap: 48px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.colorma-hero__col {
  flex: 1 1 0;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.colorma-hero__col--info {
  max-width: 430px;
  gap: 18px;
  display: flex;
  flex-direction: column;
}
.colorma-hero__col--media {
  min-width: 320px;
  max-width: 530px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 18px;
}
.colorma-hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--colorma-accent);
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}
.colorma-hero__tagline {
  color: var(--colorma-muted);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.colorma-hero__short {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.colorma-hero__facts {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--colorma-muted);
  margin: 0 0 12px 0;
  padding: 0;
  list-style: none;
}
.colorma-hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.colorma-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 30px;
  border-radius: var(--colorma-btn-radius);
  border: none;
  cursor: pointer;
  background: none;
  transition: background var(--colorma-transition), color var(--colorma-transition), box-shadow var(--colorma-transition), border var(--colorma-transition);
  box-shadow: var(--colorma-btn-shadow);
  outline: none;
  text-align: center;
  min-width: 120px;
}
.colorma-btn--primary {
  background: var(--colorma-accent);
  color: #fff;
  border: none;
}
.colorma-btn--primary:hover,
.colorma-btn--primary:focus {
  background: #fff;
  color: var(--colorma-accent);
  border: var(--colorma-border);
}
.colorma-btn--ghost {
  background: #fff;
  color: var(--colorma-accent);
  border: var(--colorma-border);
}
.colorma-btn--ghost:hover,
.colorma-btn--ghost:focus {
  background: var(--colorma-accent);
  color: #fff;
  border: none;
}
.colorma-btn--small {
  font-size: var(--colorma-font-size-sm);
  padding: 7px 16px;
  min-width: 0;
}
.colorma-hero__smallimg {
  margin-top: 8px;
  align-self: flex-start;
  max-width: 180px;
}
.colorma-hero__image {
  width: 100%;
  border-radius: var(--colorma-radius-sm);
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(67,56,202,0.06);
}
.colorma-hero__mediawrap {
  position: relative;
  width: 100%;
  max-width: 410px;
  border-radius: var(--colorma-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(67,56,202,0.13);
  background: var(--colorma-card-bg);
  aspect-ratio: 16/10;
  margin-bottom: 12px;
}
.colorma-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--colorma-radius-lg);
}
.colorma-hero__overlayimg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  pointer-events: none;
}
.colorma-hero__overlay {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.72;
  border-radius: 0 0 var(--colorma-radius-lg) 0;
}
.colorma-hero__cta {
  font-size: 1rem;
  color: var(--colorma-muted);
  margin-top: 16px;
  background: rgba(244,244,245,0.7);
  padding: 11px 18px;
  border-radius: var(--colorma-radius-sm);
  box-shadow: 0 2px 6px 0 rgba(67,56,202,0.06);
}

/* WORLD */
.colorma-world {
  padding: 56px 0 44px 0;
}
.colorma-world__inner {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.colorma-world__media {
  flex: 1 1 340px;
  max-width: 400px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.colorma-world__img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--colorma-radius-lg);
  box-shadow: var(--colorma-shadow);
  background: var(--colorma-bg-gradient2);
}
.colorma-world__content {
  flex: 2 1 0;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.colorma-world__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--colorma-accent);
  margin-bottom: 4px;
}
.colorma-world__lead {
  font-size: var(--colorma-font-size-lg);
  color: var(--colorma-text);
  background: var(--colorma-card-bg);
  padding: 16px 18px;
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
}
.colorma-world__two {
  display: flex;
  gap: 24px;
  margin-bottom: 8px;
}
.colorma-world__two > div {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius-sm);
  box-shadow: var(--colorma-shadow);
  padding: 14px 16px 10px 16px;
  flex: 1 1 0;
}
.colorma-world__two h3 {
  font-size: 1.08rem;
  color: var(--colorma-accent);
  margin-top: 0;
  margin-bottom: 4px;
}
.colorma-world__list {
  margin: 8px 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.colorma-world__list li {
  position: relative;
  padding-left: 18px;
  color: var(--colorma-text);
}
.colorma-world__list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--colorma-accent);
  opacity: 0.18;
  position: absolute;
  left: 0;
  top: 7px;
}

/* HOW TO */
.colorma-howto {
  padding: 54px 0 44px 0;
}
.colorma-howto__inner {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius-lg);
  box-shadow: var(--colorma-shadow);
  padding: 32px 28px;
}
.colorma-howto__title {
  font-size: 1.4rem;
  color: var(--colorma-accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.colorma-howto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.colorma-howto__block {
  background: var(--colorma-bg-gradient2);
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
  padding: 18px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.colorma-howto__block h3 {
  color: var(--colorma-accent);
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.colorma-howto__block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.colorma-howto__block ul li {
  position: relative;
  padding-left: 16px;
  color: var(--colorma-text);
}
.colorma-howto__block ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--colorma-accent);
  opacity: 0.14;
  position: absolute;
  left: 0;
  top: 7px;
}

/* RHYTHM */
.colorma-rhythm {
  padding: 56px 0 44px 0;
}
.colorma-rhythm__inner {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius-lg);
  box-shadow: var(--colorma-shadow);
  padding: 32px 28px;
}
.colorma-rhythm__title {
  font-size: 1.4rem;
  color: var(--colorma-accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.colorma-rhythm__two {
  display: flex;
  gap: 38px;
  align-items: flex-start;
}
.colorma-rhythm__steps {
  flex: 2 1 0;
  background: var(--colorma-bg-gradient2);
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
  padding: 18px 18px 12px 18px;
}
.colorma-rhythm__steps h3 {
  color: var(--colorma-accent);
  font-size: 1.08rem;
  margin-top: 0;
  margin-bottom: 7px;
}
.colorma-rhythm__steps ol {
  padding-left: 18px;
  margin: 0;
  color: var(--colorma-text);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.colorma-rhythm__why {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.colorma-rhythm__why h3 {
  color: var(--colorma-accent);
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.colorma-rhythm__why ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.colorma-rhythm__why ul li {
  position: relative;
  padding-left: 15px;
  color: var(--colorma-text);
}
.colorma-rhythm__why ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--colorma-accent);
  opacity: 0.13;
  position: absolute;
  left: 0;
  top: 7px;
}
.colorma-rhythm__img {
  width: 100%;
  max-width: 180px;
  border-radius: var(--colorma-radius);
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(67,56,202,0.07);
}

/* FEATURES */
.colorma-features {
  padding: 56px 0 44px 0;
}
.colorma-features__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.colorma-features__title {
  font-size: 1.4rem;
  color: var(--colorma-accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.colorma-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.colorma-features__item {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
  padding: 18px 16px 14px 16px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.colorma-features__item h4 {
  color: var(--colorma-accent);
  font-size: 1.05rem;
  margin: 0 0 3px 0;
}
.colorma-features__image {
  margin: 0 auto;
  max-width: 340px;
}
.colorma-features__image img {
  width: 100%;
  border-radius: var(--colorma-radius-lg);
  object-fit: cover;
  box-shadow: var(--colorma-shadow);
}

/* UNIQUE */
.colorma-unique {
  padding: 56px 0 44px 0;
}
.colorma-unique__inner {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius-lg);
  box-shadow: var(--colorma-shadow);
  padding: 32px 28px;
}
.colorma-unique__title {
  font-size: 1.4rem;
  color: var(--colorma-accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.colorma-unique__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.colorma-unique__item {
  background: var(--colorma-bg-gradient2);
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
  padding: 18px 16px 14px 16px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.colorma-unique__item h4 {
  color: var(--colorma-accent);
  font-size: 1.05rem;
  margin: 0 0 3px 0;
}

/* SCREENSHOTS */
.colorma-screenshots {
  padding: 56px 0 44px 0;
}
.colorma-screenshots__title {
  font-size: 1.3rem;
  color: var(--colorma-accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.colorma-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.colorma-screenshot {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
  padding: 10px 10px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.colorma-screenshot img {
  width: 100%;
  max-width: 210px;
  min-height: 120px;
  object-fit: cover;
  border-radius: var(--colorma-radius-sm);
  box-shadow: 0 1.5px 6px 0 rgba(67,56,202,0.07);
  margin-bottom: 7px;
}
.colorma-screenshot figcaption {
  font-size: var(--colorma-font-size-sm);
  color: var(--colorma-muted);
  text-align: center;
}

/* FEELINGS */
.colorma-feelings {
  padding: 56px 0 44px 0;
}
.colorma-feelings__inner {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius-lg);
  box-shadow: var(--colorma-shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.colorma-feelings__title {
  font-size: 1.3rem;
  color: var(--colorma-accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.colorma-feelings__lead {
  font-size: var(--colorma-font-size-lg);
  color: var(--colorma-text);
  background: var(--colorma-bg-gradient2);
  padding: 14px 16px;
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
}
.colorma-feelings__grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.colorma-feelings__grid > div {
  background: var(--colorma-bg-gradient2);
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
  padding: 14px 16px 10px 16px;
  flex: 1 1 0;
  min-width: 220px;
}
.colorma-feelings__grid h3 {
  color: var(--colorma-accent);
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 4px;
}
.colorma-feelings__grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.colorma-feelings__grid ul li {
  position: relative;
  padding-left: 15px;
  color: var(--colorma-text);
}
.colorma-feelings__grid ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--colorma-accent);
  opacity: 0.13;
  position: absolute;
  left: 0;
  top: 7px;
}
.colorma-feelings__media {
  max-width: 320px;
  margin: 0 auto;
}
.colorma-feelings__media img {
  width: 100%;
  border-radius: var(--colorma-radius-lg);
  object-fit: cover;
  box-shadow: var(--colorma-shadow);
}

/* FAQ */
.colorma-faq {
  padding: 56px 0 44px 0;
}
.colorma-faq__title {
  font-size: 1.3rem;
  color: var(--colorma-accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.colorma-faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.colorma-faq__item {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
  padding: 16px 18px 12px 18px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.colorma-faq__item h4 {
  color: var(--colorma-accent);
  font-size: 1.05rem;
  margin: 0 0 2px 0;
}

/* REVIEWS */
.colorma-reviews {
  padding: 56px 0 44px 0;
}
.colorma-reviews__title {
  font-size: 1.3rem;
  color: var(--colorma-accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.colorma-reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.colorma-review {
  background: var(--colorma-bg-gradient2);
  border-radius: var(--colorma-radius);
  box-shadow: var(--colorma-shadow);
  padding: 18px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.colorma-review h4 {
  color: var(--colorma-accent);
  font-size: 1.05rem;
  margin: 0 0 2px 0;
}
.colorma-review blockquote {
  margin: 8px 0 0 0;
  color: var(--colorma-text);
  font-style: italic;
  background: rgba(67,56,202,0.03);
  border-left: 3px solid var(--colorma-accent);
  padding: 8px 12px;
  border-radius: var(--colorma-radius-sm);
}
.colorma-reviews__more {
  grid-column: 1/-1;
  text-align: right;
  color: var(--colorma-muted);
  font-size: var(--colorma-font-size-sm);
  margin-top: 8px;
}

/* SUMMARY */
.colorma-summary {
  padding: 56px 0 44px 0;
}
.colorma-summary__inner {
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius-lg);
  box-shadow: var(--colorma-shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.colorma-summary__title {
  font-size: 1.3rem;
  color: var(--colorma-accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.colorma-summary__cta {
  margin: 18px 0 0 0;
}
.colorma-summary__invite {
  color: var(--colorma-muted);
  font-size: var(--colorma-font-size-sm);
  margin-top: 10px;
}

/* FOOTER */
.colorma-footer {
  background: var(--colorma-bg-gradient);
  box-shadow: 0 -2px 12px 0 rgba(67,56,202,0.04);
  margin-top: 48px;
  font-size: var(--colorma-font-size-sm);
}
.colorma-footer__inner {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--colorma-max-width);
  margin: 0 auto;
  padding: 38px 24px 18px 24px;
  flex-wrap: wrap;
}
.colorma-footer__col {
  flex: 1 1 0;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.colorma-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--colorma-accent);
  font-size: 1.1rem;
}
.colorma-footer__logo img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 1.5px 6px 0 rgba(67,56,202,0.07);
}
.colorma-footer__about {
  color: var(--colorma-muted);
  margin: 0;
}
.colorma-footer__links,
.colorma-footer__anchors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.colorma-footer__links a,
.colorma-footer__anchors a {
  color: var(--colorma-accent);
  transition: color var(--colorma-transition);
}
.colorma-footer__links a:hover,
.colorma-footer__anchors a:hover {
  color: var(--colorma-accent-light);
}
.colorma-footer__bottom {
  text-align: center;
  color: var(--colorma-muted);
  font-size: var(--colorma-font-size-sm);
  padding: 14px 0 12px 0;
  background: rgba(244,244,245,0.84);
}

/* COOKIE BANNER */
.colorma-cookie {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--colorma-card-bg);
  border-radius: var(--colorma-radius-lg);
  box-shadow: 0 4px 24px 0 rgba(67,56,202,0.11);
  max-width: 420px;
  width: 94vw;
  padding: 0;
  animation: fadeInCookie 0.44s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateX(-50%) translateY(30px);}
  to   { opacity: 1; transform: translateX(-50%) translateY(0);}
}
.colorma-cookie__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
}
.colorma-cookie p {
  margin: 0;
  color: var(--colorma-text);
  font-size: var(--colorma-font-size);
  flex: 1 1 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .colorma-features__grid { grid-template-columns: repeat(2, 1fr); }
  .colorma-unique__list { grid-template-columns: repeat(2, 1fr); }
  .colorma-screenshots__grid { grid-template-columns: repeat(2, 1fr); }
  .colorma-reviews__list { grid-template-columns: 1fr 1fr; }
  .colorma-faq__list { grid-template-columns: 1fr; }
  .colorma-header__inner,
  .colorma-footer__inner { flex-direction: column; gap: 18px; align-items: flex-start;}
  .colorma-hero__inner,
  .colorma-world__inner { flex-direction: column; gap: 32px;}
  .colorma-rhythm__two { flex-direction: column; gap: 22px;}
  .colorma-feelings__grid { flex-direction: column; gap: 18px;}
}
@media (max-width: 900px) {
  .colorma-howto__grid { grid-template-columns: 1fr; gap: 18px;}
  .colorma-features__grid { grid-template-columns: 1fr; }
  .colorma-unique__list { grid-template-columns: 1fr; }
  .colorma-screenshots__grid { grid-template-columns: 1fr; }
  .colorma-reviews__list { grid-template-columns: 1fr; }
  .colorma-world__list { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .container { padding: 0 8px; }
  .colorma-header__inner,
  .colorma-footer__inner { padding: 18px 8px 10px 8px;}
  .colorma-hero { padding: 32px 0 22px 0;}
  .colorma-world,
  .colorma-howto,
  .colorma-rhythm,
  .colorma-features,
  .colorma-unique,
  .colorma-screenshots,
  .colorma-feelings,
  .colorma-faq,
  .colorma-reviews,
  .colorma-summary { padding: 32px 0 18px 0;}
  .colorma-howto__inner,
  .colorma-rhythm__inner,
  .colorma-unique__inner,
  .colorma-feelings__inner,
  .colorma-summary__inner { padding: 18px 8px;}
}
@media (max-width: 480px) {
  .colorma-header__inner { flex-direction: column; gap: 10px;}
  .colorma-nav__list { gap: 10px;}
  .colorma-footer__inner { flex-direction: column; gap: 10px;}
  .colorma-footer__col { min-width: 0; max-width: 100%;}
  .colorma-hero__title { font-size: 2rem;}
  .colorma-hero__mediawrap { max-width: 100%;}
  .colorma-hero__col--info { max-width: 100%;}
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  background: #f4f4f5;
}
::-webkit-scrollbar-thumb {
  background: rgba(67,56,202,0.07);
  border-radius: 8px;
}

/* SELECTION */
::selection {
  background: var(--colorma-accent);
  color: #fff;
}