* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text,
.cld-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cld-skip-link:focus {
  position: fixed;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.cld-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.admin-bar .cld-header {
  top: 32px;
}

.cld-header__inner {
  max-width: 1280px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.cld-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
}

.cld-brand__mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--primary-light) 46%, var(--primary));
  color: var(--surface);
  font-weight: 900;
}

.cld-brand__text {
  font-size: 1.25rem;
}

.cld-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.cld-menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--primary);
}

.cld-nav {
  margin-left: auto;
}

.cld-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cld-nav__item {
  position: relative;
}

.cld-nav__link,
.cld-nav__submenu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  color: var(--text);
  font-weight: 700;
  font-size: .94rem;
  text-decoration: none;
}

.cld-nav__link:hover,
.cld-nav__submenu a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.cld-nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: 10px;
  margin: 8px 0 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.cld-nav__item--has-submenu:hover .cld-nav__submenu,
.cld-nav__item--has-submenu:focus-within .cld-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cld-nav__submenu a {
  width: 100%;
  justify-content: flex-start;
}

.cld-header__cta,
.cld-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #251506;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(246, 166, 35, .22);
}

.cld-header__cta:hover,
.cld-footer__cta:hover {
  background: var(--accent-hover);
  color: #251506;
}

.cld-main {
  min-height: 56vh;
}

.cld-site {
  --p: #3D205E;
  --p2: #6E42A6;
  --soft: #F4F0FA;
  --cta: #F6A623;
  --bg: #FAFBFD;
  --ink: #1E293B;
  --muted: #475569;
  --line: #E6DDF0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
}

.cld-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.cld-hero {
  background: linear-gradient(135deg, #fff 0%, #fbf8ff 48%, #efe7fb 100%);
  padding: var(--space-7) 0 var(--space-6);
  border-bottom: 1px solid var(--border);
}

.cld-kicker {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .45rem .75rem;
  border: 1px solid #eadff6;
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary);
  font-weight: 750;
  font-size: .86rem;
}

.cld-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: var(--space-5);
  align-items: center;
}

.cld-h1 {
  max-width: 820px;
  margin: 22px 0 18px;
  color: var(--text);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.04;
}

.cld-lead {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.16rem;
  line-height: 1.75;
}

.cld-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.cld-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.cld-btn-primary {
  background: var(--accent);
  color: #251506;
  box-shadow: 0 12px 28px rgba(246, 166, 35, .26);
}

.cld-btn--primary,
.cld-btn-primary:hover,
.cld-btn--primary:hover {
  background: var(--accent-hover);
  color: #251506;
}

.cld-btn--primary {
  background: var(--accent);
  color: #251506;
  box-shadow: 0 12px 28px rgba(246, 166, 35, .26);
}

.cld-btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--primary);
}

.cld-btn--secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--primary);
}

.cld-visual {
  padding: 22px;
  border: 1px solid #eadff6;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(61, 32, 94, .13);
}

.cld-window {
  overflow: hidden;
  border: 1px solid #e7e0ef;
  border-radius: 20px;
  background: var(--surface);
}

.cld-bar {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid #e7e0ef;
  background: #fbf8ff;
}

.cld-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #d9c8ec;
}

.cld-screen {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.cld-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid #eee7f5;
  border-radius: 16px;
  background: #fbf8ff;
}

.cld-pill {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
}

.cld-section {
  padding: var(--space-7) 0;
}

.cld-section:nth-child(even) {
  background: var(--surface);
}

.cld-title {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.cld-intro {
  max-width: 760px;
  margin: 0 0 var(--space-4);
  color: var(--text-muted);
  line-height: 1.7;
}

.cld-grid,
.cld-grid-2,
.cld-stats {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.cld-card,
.cld-stat {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.cld-card {
  padding: var(--space-4);
}

.cld-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1.12rem;
}

.cld-card p,
.cld-card li {
  color: var(--text-muted);
  line-height: 1.65;
}

.cld-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.cld-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
}

.cld-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: 28px;
  background: var(--primary);
  color: var(--surface);
}

.cld-strip h2 {
  margin: 0;
  color: var(--surface);
  font-size: 2rem;
}

.cld-strip p {
  margin: 10px 0 0;
  color: #e9ddf6;
}

.cld-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cld-benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cld-benefit {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.cld-benefit strong {
  display: block;
  color: var(--primary);
  font-size: 1.85rem;
  line-height: 1.12;
}

.cld-benefit span {
  color: var(--text-muted);
}

.cld-stat {
  padding: var(--space-3);
  color: var(--text-muted);
}

.cld-stat strong {
  display: block;
  color: var(--primary);
  font-size: 1.7rem;
}

.cld-faq details {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.cld-faq details + details {
  margin-top: 14px;
}

.cld-faq summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 800;
}

.cld-faq summary:focus-visible {
  outline: 3px solid rgba(246, 166, 35, .45);
  outline-offset: 4px;
}

.cld-faq p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.cld-process {
  counter-reset: cld-step;
}

.cld-process .cld-card::before {
  counter-increment: cld-step;
  content: counter(cld-step);
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #251506;
  font-weight: 900;
}

.cld-section--white {
  background: var(--surface);
}

.cld-section--soft {
  background: #FAFBFD;
}

.cld-cta {
  background: var(--surface);
}

.cld-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: 28px;
  background: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow-lg);
}

.cld-cta__box h2 {
  margin: 0;
  color: var(--surface);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cld-cta__box p {
  margin: 12px 0 0;
  color: #eadff6;
}

.cld-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.cld-footer {
  background: var(--primary);
  color: #eadff6;
}

.cld-footer__inner {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-4) var(--space-5);
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.cld-brand--footer {
  color: var(--surface);
}

.cld-footer__brand p {
  max-width: 320px;
}

.cld-footer__nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.cld-footer__nav h2 {
  margin: 0 0 8px;
  color: var(--surface);
  font-size: 1rem;
}

.cld-footer__nav a {
  color: #eadff6;
  text-decoration: none;
}

.cld-footer__nav a:hover {
  color: var(--surface);
}

.cld-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #d9c8ec;
  font-size: .95rem;
}

.cld-article,
.cld-archive {
  padding: var(--space-7) var(--space-4);
}

.cld-article__inner,
.cld-archive__inner {
  max-width: 860px;
  margin: 0 auto;
}

.cld-article__header h1,
.cld-archive h1 {
  margin: var(--space-3) 0;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.cld-post-list {
  display: grid;
  gap: var(--space-3);
}

.cld-post-card {
  padding: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

@media (max-width: 1023px) {
  .admin-bar .cld-header {
    top: 0;
  }

  .cld-header__inner {
    min-height: 68px;
    padding: 0 var(--space-3);
  }

  .cld-menu-toggle {
    display: block;
  }

  .cld-nav,
  .cld-header__cta {
    display: none;
  }

  .cld-header.is-open .cld-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    padding: var(--space-2) var(--space-3) var(--space-3);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-md);
  }

  .cld-nav__list {
    display: grid;
    align-items: stretch;
  }

  .cld-nav__link {
    width: 100%;
  }

  .cld-nav__submenu {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .cld-hero-grid,
  .cld-grid,
  .cld-grid--2,
  .cld-grid--3,
  .cld-grid--4,
  .cld-grid-2,
  .cld-stats,
  .cld-benefit-strip,
  .cld-footer__inner {
    grid-template-columns: 1fr;
  }

  .cld-hero,
  .cld-section {
    padding: var(--space-6) 0;
  }

  .cld-strip {
    display: grid;
  }

  .cld-cta__box {
    display: grid;
  }
}

@media (max-width: 640px) {
  .cld-wrap {
    padding: 0 var(--space-2);
  }

  .cld-h1 {
    font-size: 2.25rem;
  }

  .cld-card,
  .cld-strip {
    padding: var(--space-3);
  }

  .cld-row {
    display: grid;
  }
}

/* V2 premium home system */
.cld-home-v2 {
  --cld-violet-950: var(--primary-dark);
  --cld-violet-900: var(--primary);
  --cld-violet-800: #4b2a72;
  --cld-violet-700: var(--primary-light);
  --cld-violet-100: var(--bg-soft);
  --cld-orange: var(--accent);
  --cld-ink: var(--text);
  --cld-muted: var(--text-soft);
  --cld-line: var(--border-soft);
  --cld-glow: var(--shadow-xl);
  background:
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 34rem);
  color: var(--cld-ink);
  overflow: hidden;
}

.cld-home-v2 .cld-wrap {
  max-width: var(--container);
}

.cld-home-v2 .cld-section {
  position: relative;
  padding: var(--section-space) 0;
}

.cld-home-v2 .cld-eyebrow,
.cld-home-v2 .cld-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(110, 66, 166, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--cld-violet-900);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: var(--shadow-sm);
}

.cld-home-v2 .cld-eyebrow::before,
.cld-home-v2 .cld-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cld-orange);
  box-shadow: 0 0 0 5px rgba(246, 166, 35, .14);
}

.cld-home-v2 .cld-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.cld-home-v2 .cld-section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cld-home-v2 h1,
.cld-home-v2 h2,
.cld-home-v2 h3 {
  color: var(--cld-violet-950);
  letter-spacing: 0;
}

.cld-home-v2 h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.cld-home-v2 h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.cld-home-v2 p {
  color: var(--cld-muted);
}

.cld-home-v2 .cld-lead {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.cld-header {
  background: rgba(255, 255, 255, .86);
  border-bottom-color: rgba(61, 32, 94, .1);
  box-shadow: 0 8px 28px rgba(61, 32, 94, .05);
}

.cld-brand__mark {
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 22%, rgba(246, 166, 35, .78), transparent 20%),
    linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 78%);
  box-shadow: 0 10px 22px rgba(61, 32, 94, .16);
}

.cld-nav__link,
.cld-nav__submenu a {
  color: #31233f;
  font-weight: 760;
}

.cld-header__cta,
.cld-footer__cta,
.cld-home-v2 .cld-btn--primary {
  border: 1px solid rgba(246, 166, 35, .45);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(246, 166, 35, .22);
}

.cld-home-v2 .cld-btn--secondary {
  border: 1px solid rgba(61, 32, 94, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--cld-violet-900);
  box-shadow: var(--shadow-sm);
}

.cld-home-v2 .cld-hero {
  position: relative;
  padding: 74px 0 56px;
  border-bottom: 0;
  background:
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.cld-home-v2 .cld-hero::after {
  display: none;
}

.cld-home-v2 .cld-hero-grid {
  position: relative;
  z-index: 1;
  align-items: center;
  grid-template-columns: minmax(0, .96fr) minmax(430px, 1.04fr);
  gap: clamp(34px, 6vw, 76px);
}

.cld-home-v2 .cld-hero-copy {
  max-width: 650px;
}

.cld-home-v2 .cld-h1 {
  max-width: 760px;
  margin: 22px 0 22px;
  color: var(--cld-violet-950);
  font-size: clamp(2.55rem, 5vw, 4.85rem);
  line-height: 1;
}

.cld-home-v2 .cld-hero-copy p {
  max-width: 650px;
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  line-height: 1.72;
}

.cld-home-v2 .cld-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cld-home-v2 .cld-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.cld-home-v2 .cld-hero-proof li {
  padding: 9px 12px;
  border: 1px solid rgba(61, 32, 94, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  color: #3f334b;
  font-size: .9rem;
  font-weight: 720;
}

.cld-home-v2 .cld-hero__visual {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 242, 255, .72));
  box-shadow: var(--cld-glow);
}

.cld-home-v2 .cld-hero__visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(61, 32, 94, .1);
  border-radius: 26px;
  pointer-events: none;
}

.cld-home-v2 .cld-hero__visual img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 24px;
  filter: drop-shadow(0 18px 28px rgba(61, 32, 94, .12));
}

.cld-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 18px;
}

.cld-bento__main,
.cld-bento__item,
.cld-product-card,
.cld-faq-v2 details {
  border: 1px solid rgba(61, 32, 94, .1);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-md);
}

.cld-bento__main {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 440px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 95% 92%, rgba(61, 32, 94, .09), transparent 15rem),
    linear-gradient(145deg, #fff 0%, var(--bg-soft) 100%);
}

.cld-bento__main::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -120px;
  width: 240px;
  height: 320px;
  border-radius: 999px;
  background: rgba(61, 32, 94, .08);
  transform: rotate(18deg);
  pointer-events: none;
}

.cld-bento__main > * {
  position: relative;
  z-index: 1;
}

.cld-bento__main h3 {
  max-width: 460px;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.cld-bento__main p {
  max-width: 560px;
  font-size: 1.05rem;
}

.cld-bento__stack {
  display: grid;
  gap: 18px;
}

.cld-bento__item {
  display: grid;
  min-height: 158px;
  padding: 26px;
  border-radius: 28px;
}

.cld-bento__item--violet {
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cld-bento__item--violet h3,
.cld-bento__item--violet p {
  color: #fff;
}

.cld-icon-tile {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.cld-icon-tile img {
  width: 34px;
  height: 34px;
}

.cld-icon-tile--violet {
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.cld-home-v2 .cld-dark-panel {
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 92%);
  color: #fff;
}

.cld-dark-panel h2,
.cld-dark-panel h3,
.cld-dark-panel p {
  color: #fff;
}

.cld-dark-panel .cld-eyebrow {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.cld-market-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.cld-market-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .08);
}

.cld-market-card:first-child {
  min-height: 420px;
  background: rgba(255, 255, 255, .14);
}

.cld-market-card p {
  color: rgba(255, 255, 255, .78);
}

.cld-market-card img {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
}

.cld-product-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.cld-product-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.cld-product-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: rgba(246, 166, 35, .13);
}

.cld-product-card:nth-child(2) {
  margin-top: 18px;
}

.cld-product-card:nth-child(3) {
  margin-top: 36px;
}

.cld-product-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
}

.cld-metric-ribbon {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(61, 32, 94, .1);
  border-radius: var(--radius-2xl);
  background: rgba(61, 32, 94, .1);
  box-shadow: var(--shadow-md);
}

.cld-metric {
  min-height: 220px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, .94);
}

.cld-metric strong {
  display: block;
  margin-bottom: 12px;
  color: var(--cld-violet-900);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: .9;
}

.cld-metric span {
  display: block;
  color: var(--cld-ink);
  font-weight: 820;
}

.cld-metric p {
  margin: 12px 0 0;
}

.cld-comparison-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(61, 32, 94, .1);
  border-radius: var(--radius-2xl);
  background:
    #fff;
  box-shadow: var(--shadow-md);
}

.cld-comparison-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cld-comparison-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  background: #F7F2FF;
  color: var(--cld-ink);
  font-weight: 720;
}

.cld-comparison-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 5px;
  background: var(--cld-orange);
  box-shadow: 0 0 0 5px rgba(246, 166, 35, .12);
}

.cld-process-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: cld-process-v2;
}

.cld-process-v2 article {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(61, 32, 94, .1);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.cld-process-v2 article::before {
  counter-increment: cld-process-v2;
  content: "0" counter(cld-process-v2);
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(61, 32, 94, .18);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: .8;
}

.cld-faq-v2 {
  display: grid;
  max-width: 900px;
  gap: 14px;
  margin: 0 auto;
}

.cld-faq-v2 details {
  padding: 22px 26px;
  border-radius: 24px;
}

.cld-faq-v2 summary {
  cursor: pointer;
  color: var(--cld-violet-950);
  font-size: 1.02rem;
  font-weight: 850;
}

.cld-faq-v2 p {
  margin: 14px 0 0;
}

.cld-final-cta {
  padding: var(--section-space) 0;
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cld-final-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

.cld-final-cta h2 {
  margin: 0 0 12px;
}

.cld-final-cta p {
  max-width: 680px;
  margin: 0;
}

@media (max-width: 1023px) {
  .cld-home-v2 .cld-section,
  .cld-home-v2 .cld-hero,
  .cld-final-cta {
    padding: 68px 0;
  }

  .cld-home-v2 .cld-hero-grid,
  .cld-bento,
  .cld-market-grid,
  .cld-product-rail,
  .cld-metric-ribbon,
  .cld-comparison-panel,
  .cld-process-v2,
  .cld-final-cta__box {
    grid-template-columns: 1fr;
  }

  .cld-product-card:nth-child(2),
  .cld-product-card:nth-child(3) {
    margin-top: 0;
  }

  .cld-market-card,
  .cld-market-card:first-child,
  .cld-product-card,
  .cld-bento__main {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .cld-home-v2 .cld-section,
  .cld-home-v2 .cld-hero,
  .cld-final-cta {
    padding: 52px 0;
  }

  .cld-home-v2 .cld-h1 {
    font-size: clamp(2.35rem, 13vw, 3.3rem);
  }

  .cld-home-v2 .cld-hero__visual,
  .cld-bento__main,
  .cld-bento__item,
  .cld-market-card,
  .cld-product-card,
  .cld-comparison-panel,
  .cld-process-v2 article,
  .cld-final-cta__box {
    border-radius: 24px;
  }

  .cld-home-v2 .cld-hero-actions {
    display: grid;
  }

  .cld-home-v2 .cld-btn {
    width: 100%;
  }
}

