:root {
    --cwiz2-green: #43A93C;
    --cwiz2-green-dark: #2F7D2B;
    --cwiz2-green-soft: #ECF8EF;
    --cwiz2-navy: #172033;
    --cwiz2-text: #1F2937;
    --cwiz2-muted: #667085;
    --cwiz2-line: #E6EAF0;
    --cwiz2-bg: #F6F8FB;
    --cwiz2-white: #FFFFFF;
    --cwiz2-blue: #2563EB;
    --cwiz2-orange: #F97316;
    --cwiz2-shadow: 0 24px 70px rgba(18, 33, 58, 0.13);
    --cwiz2-soft-shadow: 0 12px 32px rgba(18, 33, 58, 0.08);
    --cwiz2-radius-xl: 28px;
    --cwiz2-radius-lg: 22px;
    --cwiz2-radius-md: 16px;
}

html:has(.cwiz2-landing) {
    scroll-behavior: smooth;
}

.cwiz2-landing,
.cwiz2-landing * {
    box-sizing: border-box;
}

.cwiz2-landing {
    font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
    color: var(--cwiz2-text);
    background: var(--cwiz2-bg);
    letter-spacing: -0.025em;
}

.cwiz2-landing a {
    color: inherit;
    text-decoration: none;
}

.cwiz2-landing .cwiz-page-rail {
    position: fixed;
    left: max(12px, calc((100vw - 1280px) / 2 - 168px));
    top: 50%;
    transform: translateY(-50%) translateX(-12px);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 148px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.cwiz2-landing .cwiz-page-rail.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.cwiz2-landing .cwiz-page-rail a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid transparent;
    color: var(--cwiz2-muted);
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.cwiz2-landing .cwiz-page-rail a:hover {
    background: #fff;
    border-color: var(--cwiz2-line);
    color: var(--cwiz2-navy);
    box-shadow: var(--cwiz2-soft-shadow);
}

.cwiz2-landing .cwiz-page-rail a.is-active {
    background: #fff;
    border-color: var(--cwiz2-line);
    box-shadow: var(--cwiz2-soft-shadow);
}

.cwiz2-landing .cwiz-page-rail a.is-active .rail-no,
.cwiz2-landing .cwiz-page-rail a.is-active .rail-ko {
    color: #43A93C;
}

.cwiz2-landing .cwiz-page-rail a.is-active .rail-en {
    color: #43A93C;
    opacity: 0.72;
}

.cwiz2-landing .cwiz-page-rail .rail-no {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.4;
    color: #98A2B3;
}

.cwiz2-landing .cwiz-page-rail .rail-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cwiz2-landing .cwiz-page-rail .rail-ko {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.cwiz2-landing .cwiz-page-rail .rail-en {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #98A2B3;
}

.cwiz2-landing .container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.cwiz2-landing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: .18s ease;
    white-space: nowrap;
}

.cwiz2-landing .btn-primary {
    background: var(--cwiz2-green);
    color: #fff;
    box-shadow: 0 12px 26px rgba(67, 169, 60, .24);
}

.cwiz2-landing .btn-primary:hover {
    background: var(--cwiz2-green-dark);
    transform: translateY(-2px);
}

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

.cwiz2-landing .btn-ghost:hover {
    border-color: var(--cwiz2-green);
    color: var(--cwiz2-green-dark);
    transform: translateY(-2px);
}

.cwiz2-landing .hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 18%, rgba(67, 169, 60, .20), transparent 30%),
        radial-gradient(circle at 16% 14%, rgba(37, 99, 235, .12), transparent 32%),
        linear-gradient(180deg, #FFFFFF 0%, #F7FAF8 100%);
    padding: 88px 0 72px;
}

.cwiz2-landing .hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.cwiz2-landing .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--cwiz2-green-soft);
    color: var(--cwiz2-green-dark);
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 18px;
}

.cwiz2-landing .hero h1 {
    margin: 0;
    color: var(--cwiz2-navy);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.cwiz2-landing .hero h1 span {
    color: var(--cwiz2-green);
}

.cwiz2-landing .hero p {
    margin: 22px 0 0;
    color: #475467;
    font-size: 19px;
    line-height: 1.75;
    font-weight: 600;
}

.cwiz2-landing .hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cwiz2-landing .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
}

.cwiz2-landing .metric-card {
    padding: 17px 16px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--cwiz2-line);
    border-radius: 18px;
    box-shadow: var(--cwiz2-soft-shadow);
}

.cwiz2-landing .metric-card strong {
    display: block;
    color: var(--cwiz2-navy);
    font-size: 24px;
    font-weight: 950;
}

.cwiz2-landing .metric-card span {
    display: block;
    margin-top: 4px;
    color: var(--cwiz2-muted);
    font-size: 13px;
    font-weight: 700;
}

.cwiz2-landing .hero-visual {
    position: relative;
    min-height: 520px;
}

.cwiz2-landing .browser-mock {
    position: relative;
    background: #fff;
    border: 1px solid #DCE3EA;
    border-radius: 26px;
    box-shadow: var(--cwiz2-shadow);
    overflow: hidden;
}

.cwiz2-landing .browser-bar {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: #F8FAFC;
    border-bottom: 1px solid #E7ECF2;
}

.cwiz2-landing .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #CBD5E1;
}

.cwiz2-landing .dot:nth-child(1) {
    background: #FF6B6B;
}

.cwiz2-landing .dot:nth-child(2) {
    background: #FFB020;
}

.cwiz2-landing .dot:nth-child(3) {
    background: #29C36A;
}

.cwiz2-landing .mock-body {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 430px;
}

.cwiz2-landing .mock-side {
    background: #F6F8FB;
    border-right: 1px solid #E7ECF2;
    padding: 20px 14px;
}

.cwiz2-landing .mock-menu {
    display: grid;
    gap: 10px;
}

.cwiz2-landing .mock-menu div {
    height: 38px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #E7ECF2;
    color: #667085;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 800;
}

.cwiz2-landing .mock-menu div.active {
    color: var(--cwiz2-green-dark);
    background: var(--cwiz2-green-soft);
    border-color: #CBEFD2;
}

.cwiz2-landing .mock-main {
    padding: 22px;
}

.cwiz2-landing .mock-title-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.cwiz2-landing .mock-title h3 {
    margin: 0 0 5px;
    color: var(--cwiz2-navy);
    font-size: 19px;
}

.cwiz2-landing .mock-title span {
    color: var(--cwiz2-muted);
    font-size: 13px;
    font-weight: 700;
}

.cwiz2-landing .mock-btn {
    height: 34px;
    border-radius: 10px;
    background: var(--cwiz2-green);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 900;
}

.cwiz2-landing .mock-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.cwiz2-landing .mock-stat {
    border-radius: 14px;
    border: 1px solid #E7ECF2;
    padding: 13px;
    background: #fff;
}

.cwiz2-landing .mock-stat b {
    display: block;
    font-size: 20px;
    color: var(--cwiz2-navy);
}

.cwiz2-landing .mock-stat small {
    color: var(--cwiz2-muted);
    font-weight: 800;
}

.cwiz2-landing .mock-table {
    border: 1px solid #E7ECF2;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.cwiz2-landing .mock-row {
    display: grid;
    grid-template-columns: .8fr 1.1fr 1fr .8fr .8fr;
    gap: 12px;
    padding: 13px 14px;
    border-bottom: 1px solid #EEF2F6;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    color: #4B5563;
}

.cwiz2-landing .mock-row.head {
    background: #F8FAFC;
    color: #667085;
}

.cwiz2-landing .mock-row:last-child {
    border-bottom: 0;
}

.cwiz2-landing .status-pill {
    display: inline-flex;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: #DCFCE7;
    color: #15803D;
}

.cwiz2-landing .warning-pill {
    background: #FEF3C7;
    color: #B45309;
}

.cwiz2-landing .danger-pill {
    background: #FEE2E2;
    color: #B91C1C;
}

.cwiz2-landing .floating-card {
    position: absolute;
    right: -22px;
    bottom: 20px;
    width: 255px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid #E7ECF2;
    box-shadow: 0 18px 50px rgba(18, 33, 58, .18);
    padding: 18px;
}

.cwiz2-landing .floating-card strong {
    display: block;
    color: var(--cwiz2-navy);
    font-size: 16px;
    margin-bottom: 11px;
}

.cwiz2-landing .progress {
    height: 9px;
    border-radius: 999px;
    background: #E7ECF2;
    overflow: hidden;
}

.cwiz2-landing .progress span {
    display: block;
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, var(--cwiz2-green), #8BE067);
}

.cwiz2-landing .floating-card p {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--cwiz2-muted);
    font-weight: 700;
    line-height: 1.45;
}

.cwiz2-landing section {
    padding: 92px 0;
}

.cwiz2-landing .section-head {
    text-align: center;
    margin-bottom: 42px;
}

.cwiz2-landing .section-head .eyebrow {
    margin-bottom: 14px;
}

.cwiz2-landing .section-head h2 {
    margin: 0;
    color: var(--cwiz2-navy);
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.22;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.cwiz2-landing .section-head p {
    margin: 16px auto 0;
    max-width: 760px;
    color: var(--cwiz2-muted);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 600;
}

.cwiz2-landing .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cwiz2-landing .feature-card {
    background: #fff;
    border: 1px solid var(--cwiz2-line);
    border-radius: 24px;
    padding: 26px 22px;
    box-shadow: var(--cwiz2-soft-shadow);
    transition: .18s ease;
}

.cwiz2-landing .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cwiz2-shadow);
}

.cwiz2-landing .icon-box {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--cwiz2-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cwiz2-green-dark);
    font-size: 25px;
    margin-bottom: 18px;
}

.cwiz2-landing .feature-card h3 {
    margin: 0;
    color: var(--cwiz2-navy);
    font-size: 20px;
    font-weight: 950;
}

.cwiz2-landing .feature-card p {
    margin: 12px 0 0;
    color: var(--cwiz2-muted);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
}

.cwiz2-landing .compare {
    background: #fff;
}

.cwiz2-landing .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.cwiz2-landing .compare-box {
    border-radius: 28px;
    border: 1px solid var(--cwiz2-line);
    padding: 28px;
    background: #F9FAFB;
}

.cwiz2-landing .compare-box.after {
    background: linear-gradient(180deg, #F0FAF2, #FFFFFF);
    border-color: #BFE8C5;
}

.cwiz2-landing .compare-box h3 {
    margin: 0 0 20px;
    color: var(--cwiz2-navy);
    font-size: 24px;
    font-weight: 950;
}

.cwiz2-landing .compare-list {
    display: grid;
    gap: 12px;
}

.cwiz2-landing .compare-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #EEF2F6;
    font-weight: 750;
    color: #344054;
    line-height: 1.45;
}

.cwiz2-landing .compare-item .mark {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 950;
}

.cwiz2-landing .before .mark {
    background: #FEE2E2;
    color: #B91C1C;
}

.cwiz2-landing .after .mark {
    background: #DCFCE7;
    color: #15803D;
}

.cwiz2-landing .function-block {
    display: grid;
    gap: 90px;
}

.cwiz2-landing .function-row {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 42px;
    align-items: center;
}

.cwiz2-landing .function-row:nth-child(even) .function-text {
    order: 2;
}

.cwiz2-landing .function-row:nth-child(even) .screen-card {
    order: 1;
}

.cwiz2-landing .function-text .num {
    color: var(--cwiz2-green);
    font-weight: 950;
    font-size: 15px;
    margin-bottom: 10px;
}

.cwiz2-landing .function-text h3 {
    margin: 0;
    color: var(--cwiz2-navy);
    font-size: 32px;
    line-height: 1.25;
    font-weight: 950;
}

.cwiz2-landing .function-text p {
    margin: 16px 0 0;
    color: var(--cwiz2-muted);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 600;
}

.cwiz2-landing .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.cwiz2-landing .tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--cwiz2-line);
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}

.cwiz2-landing .screen-card {
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--cwiz2-line);
    box-shadow: var(--cwiz2-shadow);
    padding: 12px;
    position: relative;
    overflow: hidden;
    height: fit-content;
    align-self: start;
}

.cwiz2-landing .screen-card::before {
    content: "";
    position: absolute;
    inset: auto -70px -90px auto;
    width: 220px;
    height: 220px;
    background: var(--cwiz2-green-soft);
    border-radius: 50%;
    opacity: .9;
}

.cwiz2-landing .screen-image-wrap {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #E7ECF2;
    background: #fff;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.cwiz2-landing .screen-image {
    display: block;
    width: 100%;
    height: auto;
    filter: contrast(1.04) saturate(1.02);
    image-rendering: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.cwiz2-landing .effects {
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F8FB 100%);
}

.cwiz2-landing .effects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.cwiz2-landing .effect-card {
    background: #fff;
    border: 1px solid var(--cwiz2-line);
    border-radius: 22px;
    padding: 22px 18px;
    box-shadow: var(--cwiz2-soft-shadow);
}

.cwiz2-landing .effect-card b {
    display: block;
    color: var(--cwiz2-navy);
    font-size: 18px;
    margin-bottom: 10px;
}

.cwiz2-landing .effect-card p {
    margin: 0;
    color: var(--cwiz2-muted);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.cwiz2-landing .roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cwiz2-landing .role-card {
    border-radius: 28px;
    padding: 34px;
    border: 1px solid var(--cwiz2-line);
    background: #fff;
    box-shadow: var(--cwiz2-soft-shadow);
    min-height: 260px;
}

.cwiz2-landing .role-card.admin {
    background: linear-gradient(135deg, #F5FBF5, #FFFFFF);
    border-color: #BFE8C5;
}

.cwiz2-landing .role-card.operator {
    background: linear-gradient(135deg, #F5F9FF, #FFFFFF);
    border-color: #BFDBFE;
}

.cwiz2-landing .role-card.user {
    background: linear-gradient(135deg, #F4FBFB, #FFFFFF);
    border-color: #B7E5E3;
}

.cwiz2-landing .role-head {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cwiz2-landing .role-icon {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex: 0 0 74px;
}

.cwiz2-landing .role-card.admin .role-icon {
    background: #EFF8F0;
    color: #57A856;
}

.cwiz2-landing .role-card.operator .role-icon {
    background: #EEF4FF;
    color: #4E88F4;
}

.cwiz2-landing .role-card.user .role-icon {
    background: #EEF8F7;
    color: #33A39C;
}

.cwiz2-landing .role-card h3 {
    margin: 0;
    color: var(--cwiz2-navy);
    font-size: 26px;
    font-weight: 950;
}

.cwiz2-landing .role-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 26px 0;
}

.cwiz2-landing .role-card p {
    margin: 0;
    color: var(--cwiz2-muted);
    line-height: 1.75;
    font-size: 16px;
    font-weight: 600;
}

.cwiz2-landing .role-list {
    margin: 24px 0 0;
    display: grid;
    gap: 16px;
}

.cwiz2-landing .role-list span {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1F2937;
    font-weight: 800;
    line-height: 1.5;
}

.cwiz2-landing .role-list span:before {
    content: "✓";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    flex: 0 0 24px;
    margin-top: 1px;
    background: var(--cwiz2-green);
}

.cwiz2-landing .role-card.operator .role-list span:before {
    background: #4E88F4;
}

.cwiz2-landing .role-card.user .role-list span:before {
    background: #33A39C;
}

.cwiz2-landing .security {
    background: var(--cwiz2-navy);
    color: #fff;
}

.cwiz2-landing .security .section-head h2,
.cwiz2-landing .security .section-head p {
    color: #fff;
}

.cwiz2-landing .security .section-head p {
    opacity: .74;
}

.cwiz2-landing .security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cwiz2-landing .security-card {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
}

.cwiz2-landing .security-card b {
    display: block;
    font-size: 18px;
    margin-bottom: 9px;
}

.cwiz2-landing .security-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
    font-weight: 600;
}

.cwiz2-landing .cta {
    padding: 86px 0;
    background: linear-gradient(135deg, #F0FAF2, #FFFFFF);
}

.cwiz2-landing .cta-box {
    border-radius: 34px;
    background: #fff;
    border: 1px solid #DDEFE1;
    box-shadow: var(--cwiz2-shadow);
    padding: 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.cwiz2-landing .cta h2 {
    margin: 0;
    color: var(--cwiz2-navy);
    font-size: 38px;
    line-height: 1.25;
    font-weight: 950;
}

.cwiz2-landing .cta p {
    margin: 14px 0 0;
    color: var(--cwiz2-muted);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 600;
}

.cwiz2-landing .cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@keyframes cwiz2HeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes cwiz2CardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-0.3deg); }
}

@keyframes cwiz2GlowSweep {
    0% { transform: translateX(-140%) skewX(-18deg); opacity: 0; }
    18% { opacity: .55; }
    45% { opacity: .12; }
    100% { transform: translateX(160%) skewX(-18deg); opacity: 0; }
}

.cwiz2-landing .hero-float {
    animation: cwiz2HeroFloat 6.5s ease-in-out infinite;
    will-change: transform;
}

.cwiz2-landing .floating-soft {
    animation: cwiz2CardFloat 5.2s ease-in-out infinite;
    will-change: transform;
}

.cwiz2-landing .reveal {
    opacity: 0;
    will-change: opacity, transform, filter;
    transition-property: opacity, transform, filter;
    transition-duration: .78s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
    filter: blur(6px);
}

.cwiz2-landing .reveal-up {
    transform: translateY(42px);
}

.cwiz2-landing .reveal-left {
    transform: translateX(-54px);
}

.cwiz2-landing .reveal-right {
    transform: translateX(54px);
}

.cwiz2-landing .reveal-scale {
    transform: translateY(34px) scale(.96);
}

.cwiz2-landing .reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

.cwiz2-landing .stagger-1 { transition-delay: .06s; }
.cwiz2-landing .stagger-2 { transition-delay: .14s; }
.cwiz2-landing .stagger-3 { transition-delay: .22s; }
.cwiz2-landing .stagger-4 { transition-delay: .30s; }
.cwiz2-landing .stagger-5 { transition-delay: .38s; }

.cwiz2-landing .feature-card.reveal.active:hover {
    transform: translateY(-5px);
}

.cwiz2-landing .screen-card.reveal.active .screen-image-wrap {
    animation: none;
    transform-origin: center center;
}

.cwiz2-landing .screen-card.reveal.active:hover {
    transform: translateY(-4px);
    transition: transform .25s ease, box-shadow .25s ease;
}

.cwiz2-landing .screen-card.reveal.active::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 90px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    animation: cwiz2GlowSweep 5.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.cwiz2-landing .compare-box.reveal.active,
.cwiz2-landing .role-card.reveal.active,
.cwiz2-landing .cta-box.reveal.active {
    transition-delay: .04s;
}

@media (prefers-reduced-motion: reduce) {
    .cwiz2-landing .hero-float,
    .cwiz2-landing .floating-soft,
    .cwiz2-landing .screen-card.reveal.active .screen-image-wrap,
    .cwiz2-landing .screen-card.reveal.active::after {
        animation: none !important;
    }

    .cwiz2-landing .reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

@media (max-width: 1024px) {
    .cwiz2-landing .cwiz-page-rail {
        display: none;
    }

    .cwiz2-landing .hero-grid,
    .cwiz2-landing .function-row,
    .cwiz2-landing .compare-grid,
    .cwiz2-landing .roles-grid,
    .cwiz2-landing .cta-box {
        grid-template-columns: 1fr;
    }

    .cwiz2-landing .function-row:nth-child(even) .function-text,
    .cwiz2-landing .function-row:nth-child(even) .screen-card {
        order: initial;
    }

    .cwiz2-landing .feature-grid,
    .cwiz2-landing .effects-grid,
    .cwiz2-landing .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cwiz2-landing .mock-body {
        grid-template-columns: 1fr;
    }

    .cwiz2-landing .mock-side {
        display: none;
    }

    .cwiz2-landing .floating-card {
        right: 12px;
        bottom: -36px;
    }

    .cwiz2-landing .hero-visual {
        min-height: 500px;
    }
}

@media (max-width: 760px) {
    .cwiz2-landing .container {
        width: min(100% - 28px, 1180px);
    }

    .cwiz2-landing .hero {
        padding: 52px 0;
    }

    .cwiz2-landing .hero-metrics,
    .cwiz2-landing .feature-grid,
    .cwiz2-landing .effects-grid,
    .cwiz2-landing .security-grid {
        grid-template-columns: 1fr;
    }

    .cwiz2-landing .mock-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .cwiz2-landing .mock-row {
        grid-template-columns: 1fr 1fr;
    }

    .cwiz2-landing .cta-box {
        padding: 30px 22px;
    }

    .cwiz2-landing section {
        padding: 66px 0;
    }

    .cwiz2-landing .hero-actions,
    .cwiz2-landing .cta-actions {
        flex-direction: column;
    }

    .cwiz2-landing .btn {
        width: 100%;
    }
}
