:root {
  --bg: #eef5ff;
  --bg-2: #f9fbff;
  --card: #ffffff;
  --card-soft: #f6fbff;
  --text: #173153;
  --muted: #60708b;
  --line: #d8e4f4;
  --blue: #1d6eff;
  --blue-2: #dfeaff;
  --green: #1cb56a;
  --green-2: #dff8ea;
  --shadow: 0 18px 48px rgba(28, 64, 122, 0.14);
  --radius: 8px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 110, 255, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(28, 181, 106, 0.1), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 18px auto 32px;
}

.site-header {
  width: min(1320px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 228, 244, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) minmax(280px, 1.25fr) auto auto;
  gap: 16px;
  align-items: center;
  backdrop-filter: blur(12px);
  position: sticky;
  top: 12px;
  z-index: 30;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(28, 64, 122, 0.14);
}

.brand__meta {
  display: grid;
  gap: 2px;
}

.brand__meta strong {
  font-size: 1.02rem;
  line-height: 1;
}

.brand__meta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-search {
  display: grid;
  gap: 6px;
  align-items: center;
}

.site-search span,
.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.site-search input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.site-search input:focus {
  border-color: rgba(29, 110, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(29, 110, 255, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--green), #15985a);
  color: #fff;
  box-shadow: 0 14px 28px rgba(28, 181, 106, 0.22);
}

.btn--ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.header-cta {
  white-space: nowrap;
}

.live-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin: 18px 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, #0f4ab6, #0b77c8);
  color: #fff;
  box-shadow: var(--shadow);
}

.live-strip__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #21d07a;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
}

.live-strip__marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  overflow: hidden;
  font-size: 0.92rem;
  white-space: nowrap;
}

.live-strip__marquee span + span::before {
  content: "•";
  margin-right: 14px;
  opacity: 0.8;
}

.live-strip__link {
  font-weight: 700;
  white-space: nowrap;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.categories-rail-wrap {
  margin: 14px 0 18px;
  padding: 16px 18px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 228, 244, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.categories-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(126px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.category-pill {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  color: var(--muted);
  scroll-snap-align: start;
  min-width: 126px;
}

.category-pill__icon {
  width: 122px;
  height: 122px;
  display: block;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  box-sizing: border-box;
  filter: drop-shadow(0 16px 30px rgba(28, 64, 122, 0.14));
}

.category-pill strong {
  font-size: 0.92rem;
  line-height: 1.25;
  color: var(--muted);
}

.category-pill--popular .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.category-pill--cards .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.category-pill--fashion .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(196, 124, 74, 0.12);
}

.category-pill--beauty .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(236, 127, 138, 0.12);
}

.category-pill--electronics .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(74, 109, 205, 0.12);
}

.category-pill--mobiles .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(245, 109, 152, 0.12);
}

.category-pill--home .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(246, 154, 52, 0.12);
}

.category-pill--cashback .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(218, 44, 44, 0.12);
}

.category-pill--travel .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(127, 137, 157, 0.12);
}

.category-pill--deals .category-pill__icon {
  box-shadow: inset 0 0 0 1px rgba(59, 149, 189, 0.12);
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  border-radius: 999px;
  height: 38px;
  padding: 0 15px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}

.chip.is-active,
.chip:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 10px 20px rgba(29, 110, 255, 0.18);
}

.dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.dashboard__main,
.dashboard__side {
  display: grid;
  gap: 18px;
}

.panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 228, 244, 0.88);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.panel--tight {
  padding: 16px;
}

.panel--builder {
  background: linear-gradient(180deg, #f6fff9, #ffffff);
  border-color: rgba(28, 181, 106, 0.22);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head--compact {
  margin-bottom: 10px;
}

.section-head h2 {
  margin: 4px 0 0;
  font-size: 1.28rem;
  line-height: 1.15;
}

.section-link {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.spotlight-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(238px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
}

.spotlight-card,
.latest-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 28px rgba(25, 50, 94, 0.08);
  scroll-snap-align: start;
  overflow: hidden;
}

.spotlight-card::after,
.latest-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -26% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 181, 106, 0.12), transparent 60%);
  pointer-events: none;
}

.spotlight-card__top,
.latest-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.spotlight-card__badge,
.latest-card__badge,
.best-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--green-2);
  color: #11784a;
  font-size: 0.75rem;
  font-weight: 800;
}

.spotlight-card__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.spotlight-card__brand img,
.store-list__item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.spotlight-card__art {
  min-height: 126px;
  border-radius: 12px;
  border: 1px solid rgba(29, 110, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(29, 110, 255, 0.15), rgba(28, 181, 106, 0.12)),
    #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.spotlight-card__art img {
  width: 64%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.08));
}

.spotlight-card h3,
.latest-card h3,
.best-card h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.25;
}

.spotlight-card p,
.latest-card p,
.best-card p,
.builder-note,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.deal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.92rem;
}

.deal-price {
  font-size: 1.08rem;
  font-weight: 800;
}

.deal-old {
  color: #8b98ad;
  text-decoration: line-through;
  font-size: 0.84rem;
}

.deal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deal-actions .btn {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.92rem;
}

.best-card {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(28, 181, 106, 0.22);
  background:
    linear-gradient(135deg, rgba(223, 248, 234, 0.84), rgba(255, 255, 255, 0.96)),
    #fff;
}

.best-card__media {
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #eef5ff);
  border: 1px solid rgba(29, 110, 255, 0.12);
  display: grid;
  place-items: center;
  min-height: 170px;
}

.best-card__media img {
  width: 80%;
  object-fit: contain;
}

.best-card__content {
  display: grid;
  gap: 12px;
}

.best-card__actions,
.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.latest-list {
  display: grid;
  gap: 12px;
}

.latest-card {
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: start;
}

.latest-card__top {
  grid-column: 1 / -1;
}

.latest-card__art {
  width: 108px;
  height: 108px;
  border-radius: 12px;
  border: 1px solid rgba(29, 110, 255, 0.1);
  background: linear-gradient(180deg, #f0f6ff, #ffffff);
  display: grid;
  place-items: center;
  grid-column: 1;
}

.latest-card__art img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.latest-card__body {
  display: grid;
  gap: 6px;
  min-width: 0;
  grid-column: 2;
}

.latest-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 12px;
}

.store-list {
  display: grid;
  gap: 10px;
}

.store-list__item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-list__item:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 110, 255, 0.22);
  box-shadow: 0 12px 26px rgba(29, 110, 255, 0.12);
}

.store-list__item span {
  font-weight: 700;
}

.store-list__item strong {
  color: #11894f;
  font-size: 0.86rem;
}

.trending-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.builder-form {
  display: grid;
  gap: 12px;
}

.builder-form label {
  display: grid;
  gap: 6px;
}

.builder-form span,
.builder-output span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.builder-form input,
.builder-form select,
.builder-output input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  outline: none;
}

.builder-form input:focus,
.builder-form select:focus,
.builder-output input:focus,
.site-search input:focus {
  border-color: rgba(29, 110, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(29, 110, 255, 0.12);
}

.builder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.builder-output {
  display: grid;
  gap: 6px;
}

.builder-note {
  font-size: 0.9rem;
}

.site-footer {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 12px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 60;
  opacity: 1;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.modal.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 31, 50, 0.44);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  width: min(740px, calc(100% - 28px));
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  border: 1px solid rgba(216, 228, 244, 0.9);
  box-shadow: 0 36px 70px rgba(18, 32, 58, 0.26);
  padding: 28px;
  z-index: 1;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 1.3rem;
}

.modal__panel h1 {
  margin: 8px 0 12px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.modal__text {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal__actions .btn {
  min-width: 140px;
}

/* Layout tightening to prevent column overlap on wide dashboards */
.dashboard {
  align-items: start;
  grid-template-columns: minmax(0, 1.8fr) minmax(340px, 0.92fr);
}

.dashboard__main,
.dashboard__side,
.panel,
.categories-rail-wrap,
.best-card,
.spotlight-card,
.latest-card,
.store-list__item {
  min-width: 0;
}

.categories-rail {
  grid-auto-columns: 126px;
}

.category-pill {
  min-width: 0;
}

.category-pill__icon {
  width: 116px;
  height: 116px;
  padding: 10px;
}

.latest-card {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px 14px;
}

.latest-card__meta {
  justify-content: space-between;
}

.latest-card__art {
  width: 96px;
  height: 96px;
}

.latest-card .deal-meta {
  flex-wrap: wrap;
}

.latest-card .deal-actions {
  justify-content: flex-start;
}

.spotlight-card,
.latest-card,
.best-card,
.store-list__item,
.chip,
.btn {
  animation: rise 0.55s ease both;
}

@keyframes rise {
  from {
    transform: translateY(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.live-strip__pill {
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(33, 208, 122, 0.24);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(33, 208, 122, 0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav,
  .header-cta {
    justify-self: end;
  }

  .site-search {
    grid-column: 1 / -1;
    order: 3;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-shell,
  .site-header,
  .site-footer {
    width: min(100% - 20px, 1320px);
  }

  .site-header {
    grid-template-columns: 1fr;
    position: static;
    border-radius: 16px;
  }

  .site-nav,
  .header-cta {
    justify-self: start;
  }

  .live-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .best-card {
    grid-template-columns: 1fr;
  }

  .latest-card {
    grid-template-columns: 1fr;
  }

  .latest-card__meta {
    justify-items: start;
  }

  .dashboard__side,
  .builder-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .modal__panel {
    padding: 22px;
  }
}

/* CW redesign layer */
.cw-page {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(29, 110, 255, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(28, 181, 106, 0.12), transparent 22%),
    #eef5ff;
  color: #14213b;
}

.cw-page * {
  box-sizing: border-box;
}

.cw-page a {
  color: inherit;
  text-decoration: none;
}

.cw-page img {
  display: block;
  max-width: 100%;
}

.cw-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 14px auto 30px;
  display: grid;
  gap: 18px;
}

.cw-header,
.cw-footer {
  width: min(1320px, calc(100% - 32px));
  margin: 12px auto 0;
}

.cw-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(210, 224, 245, 0.9);
  box-shadow: 0 12px 28px rgba(28, 45, 83, 0.07);
  backdrop-filter: blur(18px);
}

.cw-brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.cw-brand__meta {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.cw-brand__meta strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.cw-brand__meta span {
  font-size: 0.76rem;
  color: #6d7c98;
  line-height: 1.1;
}

.cw-search {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 10px 14px 10px 50px;
  border-radius: 999px;
  border: 1px solid rgba(186, 205, 235, 0.95);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), #fff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 24px rgba(28, 45, 83, 0.045);
}

.cw-search::before {
  content: "⌕";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #eff5ff, #dfeaff);
  color: #1762ff;
  font-size: 1rem;
  font-weight: 900;
}

.cw-search span {
  font-size: 0.64rem;
  font-weight: 800;
  color: #6782b2;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1;
}

.cw-search input {
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  color: inherit;
  min-width: 0;
  font-size: 0.95rem;
}

.cw-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  color: #54657f;
  font-weight: 700;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.cw-nav::-webkit-scrollbar {
  display: none;
}

.cw-nav a {
  padding: 8px 0;
  font-size: 0.95rem;
}

.cw-nav a:hover,
.cw-link:hover {
  color: #1762ff;
}

.cw-shell .cw-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(210, 224, 245, 0.9);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(28, 45, 83, 0.08);
}

.cw-section {
  display: grid;
  gap: 16px;
}

.cw-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cw-section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(1.1rem, 1vw + 1rem, 1.55rem);
  line-height: 1.2;
}

.cw-eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1d6eff;
}

.cw-muted {
  margin: 0;
  color: #667892;
  line-height: 1.6;
}

.cw-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: #1762ff;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.cw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cw-btn:hover,
.cw-link:hover {
  transform: translateY(-1px);
}

.cw-btn--primary {
  background: linear-gradient(180deg, #2eb86a, #149955);
  color: #fff;
  box-shadow: 0 14px 24px rgba(20, 153, 85, 0.18);
}

.cw-btn--ghost {
  background: #fff;
  color: #173253;
  border-color: rgba(18, 44, 92, 0.12);
}

.cw-rail,
.cw-category-rail {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.cw-rail::-webkit-scrollbar,
.cw-category-rail::-webkit-scrollbar {
  display: none;
}

.cw-rail--hero,
.cw-rail--cards {
  grid-auto-columns: calc((100% - 16px) / 2);
}

.cw-category-rail {
  grid-auto-columns: 126px;
}

.cw-rail-shell {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.cw-rail-shell__viewport {
  flex: 1 1 auto;
  min-width: 0;
}

.cw-rail-shell__btn {
  flex: 0 0 auto;
  align-self: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 44, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #173253;
  box-shadow: 0 10px 22px rgba(23, 50, 83, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cw-rail-shell__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(23, 50, 83, 0.16);
  background: #fff;
}

.cw-rail-shell__btn:active {
  transform: translateY(0);
}

.cw-rail-shell__btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.cw-rail-shell__btn span {
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-1px);
}

.cw-hero-card,
.cw-deal-card,
.cw-brand-card,
.cw-category-card {
  scroll-snap-align: start;
}

.cw-hero-card {
  min-height: 220px;
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 0.82fr);
  gap: 14px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(23, 38, 76, 0.16);
  position: relative;
}

.cw-hero-card::after,
.cw-deal-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -28px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 62%);
  pointer-events: none;
}

.cw-hero-card__copy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
}

.cw-hero-card__copy h3 {
  margin: 0;
  font-size: clamp(1.3rem, 0.9vw + 0.95rem, 2rem);
  line-height: 1.08;
}

.cw-hero-card__copy p {
  margin: 0;
  max-width: 34rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.cw-hero-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.cw-hero-card__art {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  padding: 12px;
  min-height: 160px;
}

.cw-hero-card__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.cw-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  width: fit-content;
}

.cw-pill--soft {
  background: rgba(23, 98, 255, 0.08);
  color: #1762ff;
  border-color: transparent;
}

.cw-category-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding: 12px 12px 14px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(210, 224, 245, 0.9);
  box-shadow: 0 14px 26px rgba(28, 45, 83, 0.08);
}

.cw-category-card__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(210, 224, 245, 0.9);
  box-shadow: 0 12px 24px rgba(28, 45, 83, 0.08);
}

.cw-category-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.cw-category-card strong {
  font-size: 0.89rem;
  line-height: 1.2;
}

.cw-brand-card {
  min-height: 148px;
  padding: 14px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid rgba(210, 224, 245, 0.9);
  box-shadow: 0 14px 26px rgba(28, 45, 83, 0.08);
  display: grid;
  gap: 10px;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
}

.cw-brand-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(210, 224, 245, 0.9);
}

.cw-brand-card strong,
.cw-brand-card p,
.cw-brand-card span {
  margin: 0;
}

.cw-brand-card strong {
  display: block;
  font-size: 1.05rem;
}

.cw-brand-card p {
  color: #6d7c98;
  line-height: 1.45;
}

.cw-brand-card span {
  grid-column: 1 / -1;
  color: #14844b;
  font-weight: 800;
}

.cw-deal-card {
  position: relative;
  min-height: 188px;
  padding: 14px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(210, 224, 245, 0.9);
  box-shadow: 0 16px 30px rgba(28, 45, 83, 0.08);
}

.cw-deal-card__art {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  padding: 8px;
}

.cw-deal-card__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cw-deal-card__copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cw-deal-card__copy h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.22;
}

.cw-deal-card__copy p {
  margin: 0;
  color: rgba(20, 33, 59, 0.75);
  line-height: 1.6;
}

.cw-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.cw-price-row strong {
  font-size: 1.05rem;
}

.cw-price-row span {
  color: rgba(20, 33, 59, 0.5);
  text-decoration: line-through;
}

.cw-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cw-builder {
  display: grid;
  gap: 12px;
}

.cw-builder label {
  display: grid;
  gap: 6px;
}

.cw-builder span,
.cw-builder__output span {
  font-size: 0.82rem;
  font-weight: 800;
  color: #173253;
}

.cw-builder input,
.cw-builder select,
.cw-builder__output input {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(210, 224, 245, 0.95);
  background: #fff;
  padding: 0 12px;
  color: inherit;
  outline: none;
}

.cw-builder__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cw-builder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cw-builder__output {
  display: grid;
  gap: 6px;
}

.cw-footer {
  padding: 8px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #6d7c98;
}

.cw-footer strong {
  display: block;
  color: #14213b;
  margin-bottom: 4px;
}

.cw-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cw-modal.is-hidden {
  display: none;
}

.cw-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 34, 0.58);
  backdrop-filter: blur(10px);
}

.cw-modal__panel {
  position: relative;
  width: min(720px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 28px 80px rgba(6, 16, 34, 0.32);
  display: grid;
  gap: 14px;
}

.cw-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(210, 224, 245, 0.95);
  background: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.theme-amazon {
  background:
    linear-gradient(135deg, rgba(255, 244, 233, 0.98), rgba(255, 227, 194, 0.96)),
    #fff;
}

.theme-flipkart {
  background:
    linear-gradient(135deg, rgba(231, 240, 255, 0.98), rgba(195, 214, 255, 0.96)),
    #fff;
}

.theme-myntra {
  background:
    linear-gradient(135deg, rgba(255, 238, 246, 0.98), rgba(255, 210, 229, 0.96)),
    #fff;
}

.theme-ajio {
  background:
    linear-gradient(135deg, rgba(255, 233, 238, 0.98), rgba(255, 204, 214, 0.96)),
    #fff;
}

.theme-blue {
  background:
    linear-gradient(135deg, rgba(231, 242, 255, 0.98), rgba(202, 220, 255, 0.96)),
    #fff;
}

.theme-sky {
  background:
    linear-gradient(135deg, rgba(236, 247, 255, 0.98), rgba(206, 236, 255, 0.96)),
    #fff;
}

.theme-warm {
  background:
    linear-gradient(135deg, rgba(255, 242, 224, 0.98), rgba(255, 226, 188, 0.96)),
    #fff;
}

.theme-rose {
  background:
    linear-gradient(135deg, rgba(255, 240, 243, 0.98), rgba(255, 214, 222, 0.96)),
    #fff;
}

.theme-indigo {
  background:
    linear-gradient(135deg, rgba(236, 241, 255, 0.98), rgba(210, 221, 255, 0.96)),
    #fff;
}

.theme-pink {
  background:
    linear-gradient(135deg, rgba(255, 235, 244, 0.98), rgba(255, 204, 230, 0.96)),
    #fff;
}

.theme-orange {
  background:
    linear-gradient(135deg, rgba(255, 240, 221, 0.98), rgba(255, 210, 163, 0.96)),
    #fff;
}

.theme-red {
  background:
    linear-gradient(135deg, rgba(255, 235, 235, 0.98), rgba(255, 200, 200, 0.96)),
    #fff;
}

.theme-slate {
  background:
    linear-gradient(135deg, rgba(238, 242, 248, 0.98), rgba(215, 223, 235, 0.96)),
    #fff;
}

.theme-green {
  background:
    linear-gradient(135deg, rgba(236, 250, 242, 0.98), rgba(208, 242, 220, 0.96)),
    #fff;
}

.theme-cyan {
  background:
    linear-gradient(135deg, rgba(232, 248, 255, 0.98), rgba(205, 239, 250, 0.96)),
    #fff;
}

.cw-hero-card.theme-amazon {
  background:
    linear-gradient(135deg, #1a2d62, #ff8f26),
    #1a2d62;
}

.cw-hero-card.theme-flipkart {
  background:
    linear-gradient(135deg, #0f3aa8, #2d8cff),
    #0f3aa8;
}

.cw-hero-card.theme-ajio {
  background:
    linear-gradient(135deg, #6e0012, #d51d39),
    #6e0012;
}

.cw-hero-card.theme-myntra {
  background:
    linear-gradient(135deg, #6d0f5b, #ff4e9d),
    #6d0f5b;
}

@media (max-width: 1180px) {
  .cw-header {
    grid-template-columns: 1fr 1fr;
  }

  .cw-brand {
    grid-column: 1 / -1;
  }

  .cw-search {
    grid-column: 1 / -1;
    order: 3;
  }

  .cw-nav {
    grid-column: 1;
    order: 4;
    flex-wrap: wrap;
  }

  .cw-header__cta {
    grid-column: 2;
    justify-self: end;
    order: 5;
  }

  .cw-rail--hero,
  .cw-rail--cards {
    grid-auto-columns: 82%;
  }

  .cw-rail-shell {
    gap: 8px;
  }

  .cw-rail-shell__btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 760px) {
  .cw-shell,
  .cw-header,
  .cw-footer {
    width: min(100% - 24px, 100%);
  }

  .cw-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cw-nav {
    gap: 10px;
    flex-wrap: wrap;
  }

  .cw-header__cta {
    justify-self: stretch;
  }

  .cw-section-head {
    flex-direction: column;
  }

  .cw-hero-card,
  .cw-deal-card {
    grid-template-columns: 1fr;
  }

  .cw-brand-card {
    grid-template-columns: 64px 1fr;
  }

  .cw-builder__grid {
    grid-template-columns: 1fr;
  }

  .cw-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Login page */
body.cw-login-page {
  background:
    radial-gradient(circle at top left, rgba(23, 98, 255, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(20, 153, 85, 0.12), transparent 26%),
    linear-gradient(180deg, #eef5ff 0%, #f7fbff 48%, #eef5ff 100%);
}

.cw-login-header,
.cw-login-layout,
.cw-login-footer {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.cw-login-header {
  margin-top: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(210, 224, 245, 0.9);
  box-shadow: 0 16px 34px rgba(28, 45, 83, 0.08);
  backdrop-filter: blur(16px);
}

.cw-login-brand {
  display: grid;
  gap: 2px;
}

.cw-login-brand strong {
  font-size: 1rem;
}

.cw-login-brand span {
  color: #6d7c98;
  font-size: 0.84rem;
}

.cw-login-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cw-login-layout {
  margin-top: 18px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.cw-login-hero {
  min-height: 100%;
  padding: 30px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #0f3aa8 0%, #1762ff 42%, #149955 100%);
  box-shadow: 0 24px 44px rgba(23, 38, 76, 0.16);
  position: relative;
  overflow: hidden;
}

.cw-login-hero::after {
  content: "";
  position: absolute;
  inset: auto -6% -22% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(10px);
}

.cw-login-hero h1 {
  margin: 12px 0 14px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.cw-login-hero__copy {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.6;
}

.cw-login-points {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cw-login-point {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.cw-login-point strong,
.cw-login-point span {
  display: block;
}

.cw-login-point strong {
  font-size: 0.96rem;
  margin-bottom: 6px;
}

.cw-login-point span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cw-login-hero__stats {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cw-login-hero__stats span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 800;
}

.cw-login-stack {
  display: grid;
  gap: 16px;
}

.cw-login-card,
.cw-login-summary {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(210, 224, 245, 0.9);
  box-shadow: 0 20px 38px rgba(28, 45, 83, 0.08);
}

.cw-login-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  background: #eef4ff;
}

.cw-login-tab {
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #51637f;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cw-login-tab.is-active {
  background: linear-gradient(180deg, #1762ff, #149955);
  color: #fff;
  box-shadow: 0 12px 22px rgba(23, 98, 255, 0.18);
}

.cw-login-fast {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.cw-login-fast__btn {
  justify-content: center;
  min-height: 46px;
}

.cw-login-alert {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.cw-login-alert.is-hidden {
  display: none;
}

.cw-login-alert[data-tone="success"] {
  background: rgba(20, 153, 85, 0.08);
  color: #11804b;
  border-color: rgba(20, 153, 85, 0.18);
}

.cw-login-alert[data-tone="info"] {
  background: rgba(23, 98, 255, 0.08);
  color: #1659d9;
  border-color: rgba(23, 98, 255, 0.18);
}

.cw-login-alert[data-tone="error"] {
  background: rgba(220, 58, 58, 0.08);
  color: #b12c2c;
  border-color: rgba(220, 58, 58, 0.18);
}

.cw-login-panels {
  margin-top: 18px;
}

.cw-login-form {
  display: none;
  gap: 14px;
}

.cw-login-form.is-active {
  display: grid;
}

.cw-field,
.cw-field-grid {
  display: grid;
  gap: 8px;
}

.cw-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cw-field label {
  font-weight: 800;
  color: #173253;
}

.cw-field input,
.cw-field select {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(186, 205, 235, 0.95);
  background: linear-gradient(180deg, #fdfdff, #f4f8ff);
  color: inherit;
  font: inherit;
  outline: none;
}

.cw-field input:focus,
.cw-field select:focus {
  border-color: rgba(23, 98, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(23, 98, 255, 0.08);
}

.cw-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #51637f;
  font-size: 0.93rem;
  font-weight: 600;
}

.cw-check input {
  width: 18px;
  height: 18px;
  accent-color: #1762ff;
}

.cw-login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cw-login-link {
  font-weight: 800;
  color: var(--blue);
}

.cw-login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.cw-login-side {
  display: grid;
  gap: 16px;
}

.cw-login-summary {
  display: grid;
  gap: 14px;
}

.cw-login-summary--accent {
  background:
    linear-gradient(180deg, rgba(240, 247, 255, 0.96), rgba(245, 253, 248, 0.96)),
    #fff;
}

.cw-login-summary h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.12;
}

.cw-login-summary__list {
  display: grid;
  gap: 10px;
}

.cw-login-summary__item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 224, 245, 0.9);
  color: #4f627f;
  line-height: 1.5;
}

.cw-login-footer {
  margin-bottom: 18px;
  padding: 14px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #6d7c98;
}

.cw-login-footer strong {
  display: block;
  color: #173253;
}

.cw-login-footer p {
  margin: 4px 0 0;
}

@media (max-width: 1180px) {
  .cw-login-layout {
    grid-template-columns: 1fr;
  }

  .cw-login-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cw-login-header,
  .cw-login-layout,
  .cw-login-footer {
    width: min(100% - 24px, 100%);
  }

  .cw-login-header {
    flex-direction: column;
    align-items: stretch;
  }

  .cw-login-header__actions,
  .cw-login-fast,
  .cw-field-grid {
    grid-template-columns: 1fr;
  }

  .cw-login-actions {
    flex-direction: column;
  }

  .cw-login-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Fresh premium finance theme */
:root {
  --bg: #07111f;
  --bg-2: #0d1930;
  --card: rgba(12, 22, 41, 0.82);
  --card-soft: rgba(15, 28, 52, 0.88);
  --text: #f2f6ff;
  --muted: #9baccc;
  --line: rgba(166, 188, 231, 0.16);
  --blue: #69a0ff;
  --blue-2: rgba(105, 160, 255, 0.16);
  --green: #25ca7f;
  --green-2: rgba(37, 202, 127, 0.18);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --radius-sm: 16px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(105, 160, 255, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(37, 202, 127, 0.14), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #0c1730 48%, #07111f 100%);
}

.cw-page {
  color: var(--text);
}

.cw-shell {
  width: min(1420px, calc(100% - 28px));
  margin: 14px auto 30px;
}

.cw-header,
.cw-footer,
.cw-panel,
.cw-modal__panel,
.cw-login-card,
.cw-login-summary,
.cw-subpage-hero,
.cw-wallet-card,
.cw-faq-item,
.cw-note-item,
.cw-wallet-row {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.cw-header,
.cw-footer {
  border-radius: 24px;
}

.cw-header {
  grid-template-columns: minmax(200px, 0.9fr) minmax(340px, 1fr) auto auto;
  padding: 14px 16px;
}

.cw-brand__meta span,
.cw-muted,
.cw-footer p,
.cw-login-brand span,
.cw-login-footer p,
.cw-login-summary__item,
.cw-wallet-row p,
.cw-note-item,
.cw-faq-item p {
  color: var(--muted);
}

.cw-search input,
.cw-builder input,
.cw-builder select,
.cw-builder__output input,
.cw-field input,
.cw-field select {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(130, 159, 222, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cw-nav a {
  color: #c5d3ef;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
}

.cw-nav a:hover,
.cw-link:hover,
.cw-brand:hover,
.cw-login-link:hover {
  color: #fff;
}

.cw-btn--primary {
  background: linear-gradient(180deg, #29d17f, #139556);
  box-shadow: 0 16px 30px rgba(24, 171, 100, 0.28);
}

.cw-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #eff4ff;
  border-color: rgba(255, 255, 255, 0.14);
}

.cw-link,
.cw-eyebrow,
.cw-section-head h2,
.cw-brand__meta strong,
.cw-footer strong {
  color: #f4f8ff;
}

.cw-section-head {
  align-items: start;
}

.cw-section-head h2 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cw-section {
  padding: 0;
}

.cw-shell .cw-panel,
.cw-modal__panel {
  border-radius: 28px;
}

.cw-hero-card,
.cw-deal-card,
.cw-brand-card,
.cw-category-card {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(18, 32, 58, 0.98), rgba(11, 20, 37, 0.95));
  border: 1px solid rgba(167, 188, 231, 0.12);
}

.cw-hero-card {
  min-height: 340px;
}

.cw-hero-card__copy h3,
.cw-deal-card__copy h3,
.cw-brand-card strong,
.cw-subpage-hero__copy h1,
.cw-login-hero h1 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  letter-spacing: -0.04em;
}

.cw-pill,
.cw-pill--soft {
  background: rgba(255, 255, 255, 0.08);
  color: #eff4ff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cw-category-card__icon,
.cw-brand-card img,
.cw-hero-card__art,
.cw-deal-card__art {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cw-category-card strong,
.cw-brand-card p,
.cw-brand-card span,
.cw-deal-card__copy p,
.cw-hero-card__copy p {
  color: rgba(236, 243, 255, 0.78);
}

.cw-category-card {
  min-height: 138px;
}

.cw-category-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
}

.cw-brand-card {
  min-height: 164px;
}

.cw-deal-card {
  min-height: 262px;
}

.cw-modal__panel {
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.98), rgba(15, 25, 46, 0.96));
  color: #f5f8ff;
}

.cw-modal__close {
  color: #fff;
}

.cw-subpage,
body.cw-login-page {
  color: var(--text);
}

.cw-header--compact,
.cw-login-header,
.cw-login-footer,
.cw-login-card,
.cw-login-summary,
.cw-subpage-hero {
  border-radius: 28px;
}

.cw-subpage-hero {
  background: linear-gradient(180deg, rgba(11, 20, 37, 0.98), rgba(15, 28, 51, 0.94));
}

.cw-wallet-card strong,
.cw-login-summary h2,
.cw-wallet-row strong {
  color: #fff;
}

.cw-wallet-row {
  border-radius: 22px;
}

.cw-faq-item summary {
  color: #fff;
}

body.cw-login-page {
  background:
    radial-gradient(circle at top left, rgba(105, 160, 255, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(37, 202, 127, 0.14), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #0d1730 52%, #07111f 100%);
}

body.cw-login-page .cw-login-card,
body.cw-login-page .cw-login-summary,
body.cw-login-page .cw-login-header,
body.cw-login-page .cw-login-footer {
  background: rgba(12, 22, 41, 0.82);
  color: #eff4ff;
}

body.cw-login-page .cw-login-hero {
  background:
    linear-gradient(145deg, rgba(16, 32, 57, 0.98), rgba(10, 17, 30, 0.96)),
    radial-gradient(circle at top right, rgba(41, 209, 127, 0.18), transparent 26%);
}

body.cw-login-page .cw-login-hero h1 {
  color: #fff;
}

body.cw-login-page .cw-login-point {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

body.cw-login-page .cw-login-tabs {
  background: rgba(255, 255, 255, 0.05);
}

body.cw-login-page .cw-login-tab.is-active {
  background: linear-gradient(180deg, #2b66ff, #139556);
}

body.cw-login-page .cw-field input,
body.cw-login-page .cw-field select {
  background: rgba(255, 255, 255, 0.97);
}

body.cw-login-page .cw-login-summary--accent {
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.96), rgba(8, 16, 30, 0.96));
}

body.cw-login-page .cw-login-alert[data-tone="success"] {
  background: rgba(37, 202, 127, 0.13);
  color: #9ef0bf;
}

body.cw-login-page .cw-login-alert[data-tone="info"] {
  background: rgba(105, 160, 255, 0.14);
  color: #d4e4ff;
}

body.cw-login-page .cw-login-alert[data-tone="error"] {
  background: rgba(255, 90, 90, 0.12);
  color: #ffb9b9;
}

@media (max-width: 1180px) {
  .cw-header {
    grid-template-columns: 1fr;
  }

  .cw-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .cw-shell {
    width: min(100% - 16px, 1420px);
  }

  .cw-header,
  .cw-footer,
  .cw-login-header,
  .cw-login-footer {
    width: min(100% - 16px, 1420px);
  }
}

/* Final premium green cashback theme */
:root {
  --bg: #eef6f0;
  --bg-2: #fbfdfb;
  --card: rgba(255, 255, 255, 0.96);
  --card-soft: rgba(248, 252, 249, 0.96);
  --text: #13263f;
  --muted: #61748d;
  --line: rgba(137, 165, 150, 0.22);
  --blue: #1f6dff;
  --blue-2: rgba(31, 109, 255, 0.12);
  --green: #19b36a;
  --green-2: rgba(25, 179, 106, 0.12);
  --shadow: 0 18px 48px rgba(25, 66, 56, 0.12);
  --radius: 26px;
  --radius-sm: 18px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(31, 109, 255, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(25, 179, 106, 0.12), transparent 24%),
    linear-gradient(180deg, #eef6f0, #fbfdfb 46%, #eff7f2);
}

.cw-page {
  color: var(--text);
}

.cw-header,
.cw-footer,
.cw-panel,
.cw-modal__panel,
.cw-login-card,
.cw-login-summary,
.cw-subpage-hero,
.cw-wallet-card,
.cw-faq-item,
.cw-note-item,
.cw-wallet-row {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cw-header,
.cw-footer {
  border-radius: 28px;
}

.cw-header {
  grid-template-columns: minmax(200px, 0.95fr) minmax(340px, 1.15fr) auto auto;
  padding: 16px 18px;
}

.cw-brand__meta strong,
.cw-footer strong,
.cw-section-head h2,
.cw-login-hero h1,
.cw-subpage-hero__copy h1 {
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  letter-spacing: -0.04em;
}

.cw-brand__meta span,
.cw-muted,
.cw-footer p,
.cw-login-brand span,
.cw-login-footer p,
.cw-login-summary__item,
.cw-wallet-row p,
.cw-note-item,
.cw-faq-item p,
.cw-login-hero__copy,
.cw-login-point span {
  color: var(--muted);
}

.cw-search input,
.cw-builder input,
.cw-builder select,
.cw-builder__output input,
.cw-field input,
.cw-field select {
  background: #fff;
  border-color: rgba(137, 165, 150, 0.28);
}

.cw-nav a {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(137, 165, 150, 0.22);
  color: #37516f;
  padding: 9px 14px;
  border-radius: 999px;
}

.cw-btn--primary {
  background: linear-gradient(180deg, #21c06f, #119a58);
  color: #fff;
  box-shadow: 0 16px 28px rgba(25, 179, 106, 0.24);
}

.cw-btn--ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.cw-eyebrow {
  color: var(--blue);
}

.cw-link {
  color: var(--blue);
}

.cw-panel,
.cw-modal__panel,
.cw-login-card,
.cw-login-summary,
.cw-subpage-hero {
  border-radius: 28px;
}

.cw-hero-card,
.cw-deal-card,
.cw-brand-card,
.cw-category-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 249, 246, 0.97));
  color: var(--text);
  border-radius: 28px;
  border: 1px solid rgba(137, 165, 150, 0.18);
}

.cw-hero-card__copy p,
.cw-deal-card__copy p,
.cw-brand-card p,
.cw-brand-card span,
.cw-category-card strong {
  color: #30405d;
}

.cw-hero-card::after,
.cw-deal-card::after {
  opacity: 0.82;
}

.cw-hero-card.theme-amazon {
  background: linear-gradient(135deg, #fff7ec, #fffdf7);
}

.cw-hero-card.theme-flipkart {
  background: linear-gradient(135deg, #edf9ff, #eef7ff);
}

.cw-hero-card.theme-ajio {
  background: linear-gradient(135deg, #fff1f2, #fff8f8);
}

.cw-hero-card.theme-myntra {
  background: linear-gradient(135deg, #faf4ff, #fff8fd);
}

.cw-category-card__icon {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(137, 165, 150, 0.18);
}

.cw-category-card {
  min-height: 146px;
  background: linear-gradient(180deg, #ffffff, #f3faf6);
  box-shadow: 0 16px 32px rgba(52, 76, 64, 0.08);
}

.cw-brand-card {
  min-height: 168px;
  background: linear-gradient(180deg, #ffffff, #f4faf7);
}

.cw-deal-card {
  min-height: 266px;
  background: linear-gradient(180deg, #ffffff, #f5faf7);
}

.cw-modal__panel {
  background: linear-gradient(180deg, #ffffff, #f6fbf7);
  color: var(--text);
}

.cw-modal__close {
  color: var(--text);
}

.cw-subpage-hero {
  background: linear-gradient(180deg, #ffffff, #f2faf5);
}

.cw-wallet-card strong,
.cw-login-summary h2,
.cw-wallet-row strong {
  color: var(--text);
}

.cw-wallet-row {
  border-radius: 22px;
}

.cw-faq-item summary {
  color: var(--text);
}

body.cw-login-page {
  background:
    radial-gradient(circle at top left, rgba(31, 109, 255, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(25, 179, 106, 0.12), transparent 24%),
    linear-gradient(180deg, #eef6f0, #fbfdfb 46%, #eff7f2);
  color: var(--text);
}

body.cw-login-page .cw-login-header,
body.cw-login-page .cw-login-card,
body.cw-login-page .cw-login-summary,
body.cw-login-page .cw-login-footer,
body.cw-login-page .cw-login-hero {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
}

body.cw-login-page .cw-login-hero {
  position: relative;
  overflow: hidden;
}

body.cw-login-page .cw-login-hero::after {
  background: radial-gradient(circle, rgba(25, 179, 106, 0.16), transparent 70%);
}

body.cw-login-page .cw-login-points {
  gap: 14px;
}

body.cw-login-page .cw-login-point {
  background: linear-gradient(180deg, #ffffff, #f2faf5);
  border-color: rgba(137, 165, 150, 0.18);
}

body.cw-login-page .cw-login-tabs {
  background: #edf6ef;
}

body.cw-login-page .cw-login-tab {
  color: #52637f;
}

body.cw-login-page .cw-login-tab.is-active {
  background: linear-gradient(180deg, #21c06f, #119a58);
  color: #fff;
}

body.cw-login-page .cw-login-fast__btn {
  background: linear-gradient(180deg, #21c06f, #119a58);
  color: #fff;
  border: none;
}

body.cw-login-page .cw-login-summary--accent {
  background: linear-gradient(180deg, #ffffff, #f3faf6);
}

body.cw-login-page .cw-login-alert[data-tone="success"] {
  background: rgba(25, 179, 106, 0.12);
  color: #13794a;
}

body.cw-login-page .cw-login-alert[data-tone="info"] {
  background: rgba(31, 109, 255, 0.12);
  color: #2457d9;
}

body.cw-login-page .cw-login-alert[data-tone="error"] {
  background: rgba(255, 90, 90, 0.12);
  color: #b12c2c;
}

@media (max-width: 1180px) {
  .cw-header {
    grid-template-columns: 1fr;
  }

  .cw-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .cw-shell,
  .cw-header,
  .cw-footer,
  .cw-login-header,
  .cw-login-footer {
    width: min(100% - 16px, 1420px);
  }
}

/* Subpages and feature pages */
.cw-subpage {
  background:
    radial-gradient(circle at top left, rgba(50, 113, 255, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(27, 186, 98, 0.12), transparent 30%),
    #edf3ff;
}

.cw-header--compact {
  position: sticky;
  top: 14px;
  z-index: 20;
  margin: 14px auto 0;
  width: min(1400px, calc(100% - 24px));
}

.cw-header--compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand cta"
    "nav nav";
  align-items: center;
  gap: 12px 14px;
}

.cw-header--compact .cw-brand {
  grid-area: brand;
  min-width: 0;
}

.cw-header--compact .cw-nav {
  grid-area: nav;
  justify-content: flex-start;
  flex-wrap: wrap;
  overflow: visible;
  white-space: normal;
  min-width: 0;
  gap: 10px;
}

.cw-header--compact .cw-header__cta {
  grid-area: cta;
  justify-self: end;
}

.cw-wallet-card--locked {
  grid-column: 1 / -1;
  min-height: 176px;
  justify-content: center;
  gap: 12px;
}

.cw-wallet-card--locked .cw-btn {
  align-self: flex-start;
}

.cw-wallet-row--locked {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cw-wallet-row--locked p {
  max-width: 60ch;
}

@media (max-width: 960px) {
  .cw-header--compact {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "cta"
      "nav";
  }

  .cw-header--compact .cw-header__cta {
    justify-self: start;
  }
}

.cw-subpage-shell {
  padding-top: 16px;
}

.cw-subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.cw-subpage-hero__copy {
  padding: 8px 4px;
}

.cw-subpage-hero__copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.cw-stat-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cw-stat-strip .cw-wallet-card {
  min-height: 132px;
}

.cw-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: 18px;
}

.cw-badge-row {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  margin: 4px 0 14px;
  border: 1px solid rgba(28, 47, 87, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #224;
  font-weight: 700;
  font-size: 0.92rem;
}

.cw-wallet-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(28, 47, 87, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 247, 255, 0.92));
  box-shadow: 0 18px 40px rgba(40, 60, 120, 0.08);
}

.cw-wallet-card strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.02;
}

.cw-wallet-card p {
  margin: 0;
  color: #61708e;
}

.cw-wallet-activity {
  display: grid;
  gap: 10px;
}

.cw-wallet-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(28, 47, 87, 0.09);
  background: rgba(255, 255, 255, 0.78);
}

.cw-wallet-row p {
  margin: 4px 0 0;
  color: #61708e;
  font-size: 0.92rem;
}

.cw-wallet-row__status--pending {
  background: rgba(255, 179, 0, 0.13);
  color: #9a5b00;
}

.cw-wallet-row__status--confirmed {
  background: rgba(51, 166, 102, 0.13);
  color: #18653a;
}

.cw-wallet-row__status--withdrawable {
  background: rgba(48, 120, 255, 0.13);
  color: #2457d9;
}

.cw-note-list,
.cw-action-grid {
  display: grid;
  gap: 12px;
}

.cw-note-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(240, 245, 255, 0.9);
  border: 1px solid rgba(28, 47, 87, 0.08);
  color: #31425e;
}

.cw-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cw-loan-calculator {
  display: grid;
  gap: 14px;
}

.cw-loan-calculator .cw-field {
  display: grid;
  gap: 8px;
}

.cw-loan-calculator .cw-field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: #31425e;
}

.cw-loan-calculator input[type="range"] {
  width: 100%;
  accent-color: #2b66ff;
}

.cw-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.cw-faq-stack {
  display: grid;
  gap: 12px;
}

.cw-faq-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(28, 47, 87, 0.09);
}

.cw-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: #18233c;
}

.cw-faq-item summary::-webkit-details-marker {
  display: none;
}

.cw-faq-item p {
  margin: 10px 0 0;
  color: #61708e;
}

@media (max-width: 1080px) {
  .cw-subpage-hero,
  .cw-grid-2 {
    grid-template-columns: 1fr;
  }

  .cw-result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cw-header--compact {
    width: min(100% - 16px, 1400px);
  }

  .cw-wallet-row {
    grid-template-columns: 1fr;
  }

  .cw-action-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium login refresh */
body.cw-login-page {
  background:
    radial-gradient(circle at top left, rgba(58, 126, 255, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(20, 153, 85, 0.12), transparent 24%),
    linear-gradient(180deg, #edf4ff 0%, #f7fbf8 52%, #eef6f0 100%);
  color: var(--text);
}

body.cw-login-page .cw-login-header,
body.cw-login-page .cw-login-card,
body.cw-login-page .cw-login-summary,
body.cw-login-page .cw-login-footer {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(188, 207, 235, 0.82);
  box-shadow: 0 22px 48px rgba(20, 46, 82, 0.08);
  backdrop-filter: blur(18px);
}

body.cw-login-page .cw-login-brand strong,
body.cw-login-page .cw-login-footer strong,
body.cw-login-page .cw-login-summary h2,
body.cw-login-page .cw-login-hero h1 {
  color: var(--text);
}

body.cw-login-page .cw-login-brand span,
body.cw-login-page .cw-login-footer p,
body.cw-login-page .cw-login-hero__copy,
body.cw-login-page .cw-login-point span,
body.cw-login-page .cw-login-summary__item {
  color: var(--muted);
}

body.cw-login-page .cw-login-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 207, 235, 0.82);
  background:
    radial-gradient(circle at top right, rgba(26, 179, 106, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(58, 126, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.96));
  box-shadow: 0 26px 64px rgba(26, 47, 84, 0.08);
}

body.cw-login-page .cw-login-hero::after {
  inset: auto -2% -16% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(27, 186, 98, 0.18), transparent 70%);
}

body.cw-login-page .cw-login-point {
  background: rgba(247, 251, 255, 0.96);
  border-color: rgba(188, 207, 235, 0.76);
}

body.cw-login-page .cw-login-hero__stats span,
body.cw-login-page .cw-badge-row {
  background: rgba(247, 251, 255, 0.98);
  border-color: rgba(188, 207, 235, 0.78);
  color: var(--text);
}

body.cw-login-page .cw-login-tabs {
  background: rgba(241, 247, 255, 0.96);
}

body.cw-login-page .cw-login-tab {
  color: var(--muted);
}

body.cw-login-page .cw-login-tab.is-active {
  background: linear-gradient(180deg, #2cd07d, #159958);
  color: #fff;
}

body.cw-login-page .cw-field label {
  color: var(--text);
}

body.cw-login-page .cw-field input,
body.cw-login-page .cw-field select {
  background: rgba(255, 255, 255, 0.98);
}

body.cw-login-page .cw-login-summary--accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.96)),
    #fbfdff;
}

body.cw-login-page .cw-login-alert[data-tone="success"] {
  background: rgba(27, 186, 98, 0.12);
  color: #0f7a43;
  border-color: rgba(27, 186, 98, 0.18);
}

body.cw-login-page .cw-login-alert[data-tone="info"] {
  background: rgba(58, 126, 255, 0.12);
  color: #1d5ce0;
  border-color: rgba(58, 126, 255, 0.18);
}

body.cw-login-page .cw-login-alert[data-tone="error"] {
  background: rgba(255, 90, 90, 0.12);
  color: #b12c2c;
  border-color: rgba(255, 90, 90, 0.18);
}
