:root {
            --hero-bg: #22214e;
            --heading: #25234f;
            --text: #666674;
            --muted: #8a8a9a;
            --line: #e8e9f2;
            --soft: #f7f8fc;
            --white: #ffffff;
            --accent: #2f66ff;
            --accent-soft: #edf3ff;
            --success: #14a46c;
            --warning: #ffb020;
            --shadow: 0 24px 70px rgba(37, 35, 79, 0.16);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--white);
            color: var(--text);
            font-family: "Open Sans", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.65;
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--heading);
            font-family: "Poppins", Arial, sans-serif;
            letter-spacing: 0;
            line-height: 1.12;
            margin: 0;
        }

        h1 {
            color: var(--white);
            font-size: clamp(42px, 7vw, 82px);
            max-width: 960px;
        }

        h2 {
            font-size: clamp(32px, 4vw, 52px);
            max-width: 820px;
        }

        h3 {
            font-size: 21px;
        }

        p {
            margin: 0;
        }

        a {
            color: inherit;
        }

	        .site-header {
	            background: var(--hero-bg);
	            color: rgba(255, 255, 255, 0.78);
	            position: relative;
	            z-index: 3;
	        }

	        .early-bird-bar {
	            background: rgba(255, 255, 255, 0.08);
	            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	            color: rgba(255, 255, 255, 0.86);
	        }

	        .early-bird-inner {
	            align-items: center;
	            display: flex;
	            gap: 12px;
	            justify-content: center;
	            margin: 0 auto;
	            max-width: 1180px;
	            min-height: 42px;
	            padding: 8px 24px;
	            text-align: center;
	        }

	        .early-bird-badge {
	            background: var(--warning);
	            border-radius: 999px;
	            color: var(--heading);
	            flex: 0 0 auto;
	            font-family: "Poppins", Arial, sans-serif;
	            font-size: 12px;
	            font-weight: 800;
	            line-height: 1;
	            padding: 7px 10px;
	            text-transform: uppercase;
	        }

	        .early-bird-inner p {
	            font-size: 14px;
	            font-weight: 600;
	        }

	        .early-bird-inner a {
	            color: var(--white);
	            flex: 0 0 auto;
	            font-family: "Poppins", Arial, sans-serif;
	            font-size: 13px;
	            font-weight: 700;
	            text-decoration-color: rgba(255, 255, 255, 0.45);
	            text-underline-offset: 4px;
	        }

	        .nav {
	            align-items: center;
	            display: flex;
            justify-content: space-between;
            margin: 0 auto;
            max-width: 1180px;
            padding: 18px 24px;
        }

        .brand {
            align-items: center;
            color: var(--white);
            display: inline-flex;
            font-family: "Poppins", Arial, sans-serif;
            font-size: 17px;
            font-weight: 700;
            gap: 10px;
            text-decoration: none;
        }

        .brand-mark {
            align-items: center;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 8px;
            color: var(--white);
            display: inline-flex;
            font-size: 14px;
            height: 34px;
            justify-content: center;
            width: 34px;
        }

        .nav-links {
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            display: flex;
            gap: 6px;
            padding: 6px;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            font-family: "Open Sans", Arial, sans-serif;
            font-weight: 500;
            line-height: 1;
            padding: 13px 14px;
            text-decoration: none;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a.button-light {
            color: var(--hero-bg);
        }

        .nav-links .nav-cta {
            min-height: 40px;
            padding: 0 18px;
        }

        .button {
            align-items: center;
            border: 1px solid transparent;
            border-radius: 50px;
            display: inline-flex;
            font-family: "Poppins", Arial, sans-serif;
            font-size: 15px;
            font-weight: 500;
            justify-content: center;
            min-height: 48px;
            padding: 0 22px;
            text-decoration: none;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
        }

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

        .button-primary {
            background: var(--accent);
            box-shadow: 0 18px 34px rgba(47, 102, 255, 0.28);
            color: var(--white);
        }

        .button-light {
            background: var(--white);
            color: var(--hero-bg);
        }

        .button-ghost {
            border-color: rgba(255, 255, 255, 0.24);
            color: var(--white);
        }

        .hero {
            background: var(--hero-bg);
            color: rgba(255, 255, 255, 0.78);
            overflow: hidden;
            padding: 56px 24px 64px;
            position: relative;
        }

        .hero::after {
            background:
                linear-gradient(180deg, rgba(34, 33, 78, 0) 0%, var(--hero-bg) 88%),
                radial-gradient(circle at 85% 35%, rgba(47, 102, 255, 0.3), rgba(34, 33, 78, 0) 38%);
            content: "";
            inset: 0;
            pointer-events: none;
            position: absolute;
        }

        .hero-inner {
            align-items: start;
            display: grid;
            gap: 34px;
            grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.22fr);
            margin: 0 auto;
            max-width: 1180px;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .hero-heading {
            margin: 0 auto 34px;
            max-width: 1180px;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .eyebrow {
            color: #aebdff;
            font-family: "Poppins", Arial, sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0;
            margin-bottom: 18px;
            text-transform: uppercase;
        }

	        .hero-content {
	            max-width: 460px;
	            position: relative;
	            z-index: 3;
        }

        .hero-heading p {
            font-size: clamp(18px, 2vw, 21px);
            margin-top: 22px;
            max-width: 590px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 0;
        }

        .hero-proof {
            color: rgba(255, 255, 255, 0.68);
            display: grid;
            gap: 10px;
            margin-top: 28px;
        }

        .hero-proof span {
            align-items: center;
            display: inline-flex;
            font-size: 14px;
            gap: 8px;
        }

        .hero-proof span::before {
            background: var(--success);
            border-radius: 50%;
            content: "";
            height: 8px;
            width: 8px;
        }

        .hero-metrics {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            display: grid;
            gap: 16px;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-top: 34px;
            padding-top: 24px;
        }

        .hero-metrics div {
            display: grid;
            gap: 3px;
        }

        .hero-metrics strong {
            color: var(--white);
            font-family: "Poppins", Arial, sans-serif;
            font-size: 26px;
            line-height: 1;
        }

        .hero-metrics span {
            color: rgba(255, 255, 255, 0.66);
            font-size: 13px;
            font-weight: 700;
        }

        .option-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

        .option-highlights span {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 13px;
            font-weight: 700;
            padding: 8px 12px;
        }

        .hero-visual {
            margin: 0;
            max-width: 720px;
            position: relative;
            width: 100%;
            z-index: 2;
        }

        .hero-window-label {
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 10px 10px 0 0;
            color: rgba(255, 255, 255, 0.72);
            display: flex;
            justify-content: space-between;
            padding: 9px 14px;
        }

        .hero-window-label span {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .hero-window-label strong {
            color: var(--white);
            font-family: "Poppins", Arial, sans-serif;
            font-size: 13px;
        }

        .browser-frame {
            background: #f7f8fc;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 0 0 12px 12px;
            box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
            overflow: hidden;
        }

        .browser-top {
            align-items: center;
            background: #ffffff;
            border-bottom: 1px solid var(--line);
            display: flex;
            gap: 8px;
            height: 34px;
            padding: 0 14px;
        }

        .browser-dot {
            border-radius: 50%;
            height: 10px;
            width: 10px;
        }

        .dot-red {
            background: #ff6b6b;
        }

        .dot-yellow {
            background: #ffc64a;
        }

        .dot-green {
            background: #38d996;
        }

        .browser-url {
            background: #f0f2f8;
            border-radius: 5px;
            color: #8a8a9a;
            flex: 1;
            font-size: 12px;
            margin-left: 8px;
            padding: 5px 12px;
        }

        .mock-admin {
            display: grid;
            grid-template-columns: 165px minmax(0, 1fr);
            min-height: 360px;
        }

        .mock-sidebar {
            background: #25234f;
            color: rgba(255, 255, 255, 0.68);
            padding: 18px 14px;
        }

        .mock-sidebar strong {
            color: var(--white);
            display: block;
            font-family: "Poppins", Arial, sans-serif;
            margin-bottom: 16px;
        }

        .mock-menu {
            display: grid;
            gap: 6px;
        }

        .mock-menu span {
            border-radius: 5px;
            font-size: 13px;
            padding: 7px 10px;
        }

        .mock-menu .active {
            background: rgba(255, 255, 255, 0.12);
            color: var(--white);
        }

        .mock-content {
            background: #f8f9fd;
            padding: 18px;
        }

        .mock-toolbar {
            align-items: center;
            display: flex;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .mock-toolbar h3 {
            color: var(--heading);
        }

        .mock-pill {
            background: var(--accent);
            border-radius: 5px;
            color: var(--white);
            font-size: 12px;
            font-weight: 700;
            padding: 8px 12px;
        }

        .mock-grid {
            display: grid;
            gap: 12px;
        }

        .addon-group {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 8px;
            overflow: hidden;
        }

        .group-head {
            align-items: center;
            background: #f2f4fa;
            border-bottom: 1px solid var(--line);
            display: grid;
            gap: 12px;
            grid-template-columns: 26px 1fr auto;
            padding: 11px 14px;
        }

        .drag {
            color: #9ba0b5;
            font-size: 18px;
            letter-spacing: 1px;
        }

        .group-head strong {
            color: var(--heading);
            font-family: "Poppins", Arial, sans-serif;
            font-size: 14px;
        }

        .group-body {
            display: grid;
            gap: 10px;
            padding: 13px;
        }

        .mock-input-row {
            display: grid;
            gap: 12px;
            grid-template-columns: 1fr;
        }

        .mock-input {
            background: #ffffff;
            border: 1px solid #dce0ec;
            border-radius: 5px;
            color: #85869a;
            font-size: 12px;
            min-height: 34px;
            padding: 8px 11px;
        }

        .field-row {
            align-items: center;
            background: #ffffff;
            border: 1px solid var(--line);
            border-radius: 7px;
            display: grid;
            gap: 10px;
            grid-template-columns: 24px 1fr auto auto;
            padding: 10px;
        }

        .field-row strong {
            color: var(--heading);
            font-size: 13px;
        }

        .tag {
            background: var(--accent-soft);
            border-radius: 999px;
            color: var(--accent);
            font-size: 11px;
            font-weight: 700;
            padding: 5px 9px;
            text-align: center;
        }

        main {
            overflow: hidden;
        }

        .section {
            padding: 110px 24px;
        }

        .section-inner {
            margin: 0 auto;
            max-width: 1180px;
            padding: 0 24px;
        }

        .section-heading {
            display: grid;
            gap: 16px;
            margin-bottom: 48px;
        }

        .section-heading p {
            font-size: 18px;
            max-width: 760px;
        }

        .feature-grid {
            display: grid;
            gap: 18px;
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .feature {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 28px;
        }

        .feature-icon {
            align-items: center;
            background: var(--accent-soft);
            border-radius: 7px;
            color: var(--accent);
            display: inline-flex;
            height: 42px;
            justify-content: center;
            margin-bottom: 18px;
            width: 42px;
        }

        .feature p {
            margin-top: 10px;
        }

        .main-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 28px;
        }

        .main-options span {
            background: var(--accent-soft);
            border: 1px solid #dbe6ff;
            border-radius: 999px;
            color: var(--heading);
            font-size: 13px;
            font-weight: 800;
            padding: 9px 13px;
        }

        .field-type-grid,
        .mode-grid {
            display: grid;
            gap: 14px;
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .field-type-grid article,
        .mode-grid article {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 8px;
            display: grid;
            gap: 9px;
            padding: 18px;
            transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
        }

        .field-type-grid article:hover,
        .mode-grid article:hover {
            border-color: #cfdcff;
            box-shadow: 0 14px 34px rgba(37, 35, 79, 0.08);
            transform: translateY(-2px);
        }

        .mini-icon {
            align-items: center;
            background: var(--accent-soft);
            border-radius: 8px;
            color: var(--accent);
            display: inline-flex;
            height: 38px;
            justify-content: center;
            width: 38px;
        }

        .mini-icon svg {
            height: 21px;
            width: 21px;
        }

        .mini-icon path,
        .mini-icon circle,
        .mini-icon rect {
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 2;
        }

        .field-type-grid strong,
        .mode-grid strong {
            color: var(--heading);
            font-family: "Poppins", Arial, sans-serif;
            font-size: 15px;
        }

        .field-type-grid span,
        .mode-grid span {
            color: var(--text);
            font-size: 14px;
            line-height: 1.5;
        }

        .feature-detail .section-heading {
            margin-bottom: 0;
        }

        .detail-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 8px;
        }

        .detail-pills span {
            background: var(--accent-soft);
            border: 1px solid #dbe6ff;
            border-radius: 999px;
            color: var(--heading);
            font-size: 13px;
            font-weight: 800;
            padding: 8px 12px;
        }

        .detail-panel {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 12px;
            box-shadow: 0 18px 44px rgba(37, 35, 79, 0.1);
            padding: 22px;
        }

        .swatch-demo {
            display: grid;
            gap: 14px;
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .swatch-card {
            border: 1px solid var(--line);
            border-radius: 10px;
            display: grid;
            gap: 8px;
            padding: 10px;
            position: relative;
        }

        .swatch-card.is-selected {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(47, 102, 255, 0.12);
        }

        .swatch-tick {
            align-items: center;
            background: var(--accent);
            border: 2px solid var(--white);
            border-radius: 50%;
            color: var(--white);
            display: flex;
            font-size: 11px;
            height: 22px;
            justify-content: center;
            position: absolute;
            right: 16px;
            top: 16px;
            width: 22px;
        }

        .swatch-art {
            aspect-ratio: 1 / 1;
            border-radius: 8px;
        }

        .swatch-art.blue {
            background: linear-gradient(135deg, #22214e, #2f66ff);
        }

        .swatch-art.green {
            background: linear-gradient(135deg, #145c4b, #38d996);
        }

        .swatch-art.coral {
            background: linear-gradient(135deg, #f26b5b, #ffb020);
        }

        .swatch-card strong,
        .measurement-head strong,
        .logic-result strong {
            color: var(--heading);
            font-family: "Poppins", Arial, sans-serif;
        }

        .swatch-card > span:last-child {
            color: var(--accent);
            font-size: 13px;
            font-weight: 800;
        }

        .measurement-demo {
            display: grid;
            gap: 18px;
        }

        .measurement-head,
        .measurement-total {
            align-items: center;
            display: flex;
            justify-content: space-between;
        }

        .measurement-head span,
        .measurement-total span {
            color: var(--muted);
            font-size: 13px;
            font-weight: 800;
        }

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

        .measurement-grid label {
            display: grid;
            gap: 6px;
            position: relative;
        }

        .measurement-grid label span {
            color: var(--heading);
            font-size: 13px;
            font-weight: 800;
        }

        .measurement-grid input {
            border: 1px solid var(--line);
            border-radius: 8px;
            color: var(--heading);
            font: inherit;
            min-height: 46px;
            padding: 0 0 0 12px;
            width: 100%;
        }

        .measurement-grid em {
            bottom: 11px;
            color: var(--muted);
            font-style: normal;
            position: absolute;
            right: 12px;
        }

        .logic-demo {
            display: grid;
            gap: 12px;
        }

        .logic-row {
            align-items: center;
            background: #f8f9fd;
            border: 1px solid var(--line);
            border-radius: 8px;
            display: grid;
            gap: 10px;
            grid-template-columns: 54px 1fr 40px 1fr;
            padding: 14px;
        }

        .logic-row span {
            background: var(--accent-soft);
            border-radius: 999px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 900;
            padding: 6px 9px;
            text-align: center;
        }

        .logic-row strong {
            color: var(--heading);
        }

        .logic-row em {
            color: var(--muted);
            font-style: normal;
            font-weight: 700;
        }

        .logic-result {
            background: var(--hero-bg);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.78);
            padding: 16px;
        }

        .logic-result strong {
            color: var(--white);
        }

        .split {
            align-items: center;
            display: grid;
            gap: 54px;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        }

        .light-band {
            background: var(--soft);
        }

        .frontend-shot {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .product-header {
            align-items: center;
            display: grid;
            gap: 20px;
            grid-template-columns: 110px 1fr;
            padding: 26px;
        }

        .shoe-art {
            background:
                radial-gradient(circle at 68% 70%, #f1f4ff 0 28%, transparent 29%),
                linear-gradient(145deg, #ffffff, #eef2ff);
            border: 1px solid var(--line);
            border-radius: 10px;
            height: 110px;
            position: relative;
        }

        .shoe-art::before {
            background: #25234f;
            border-radius: 42px 12px 24px 12px;
            bottom: 30px;
            content: "";
            height: 24px;
            left: 18px;
            position: absolute;
            transform: rotate(-12deg);
            width: 74px;
        }

        .shoe-art::after {
            background: #2f66ff;
            border-radius: 28px 9px 20px 9px;
            bottom: 43px;
            content: "";
            height: 16px;
            left: 38px;
            position: absolute;
            transform: rotate(-12deg);
            width: 56px;
        }

        .product-title {
            display: grid;
            gap: 8px;
        }

        .product-title h3 {
            font-size: 24px;
        }

        .price {
            color: var(--heading);
            font-family: "Poppins", Arial, sans-serif;
            font-size: 24px;
            font-weight: 700;
        }

        .frontend-options {
            border-top: 1px solid var(--line);
            display: grid;
            gap: 22px;
            padding: 26px;
        }

        .option-block {
            display: grid;
            gap: 12px;
        }

        .option-block h4 {
            font-size: 15px;
        }

        .choice-row {
            align-items: center;
            display: grid;
            gap: 12px;
            grid-template-columns: 22px 1fr auto;
            min-height: 34px;
        }

        .radio,
        .check {
            border: 2px solid #dbe1ef;
            display: inline-flex;
            height: 18px;
            width: 18px;
        }

        .radio {
            border-radius: 50%;
        }

        .check {
            border-radius: 3px;
        }

        .radio.active {
            border-color: var(--accent);
            box-shadow: inset 0 0 0 4px var(--white);
            background: var(--accent);
        }

        .check.active {
            align-items: center;
            background: var(--accent);
            border-color: var(--accent);
            color: var(--white);
            justify-content: center;
        }

        .choice-row strong {
            color: var(--heading);
            font-weight: 700;
        }

        .choice-row .active-text {
            color: var(--accent);
        }

        .choice-price {
            color: var(--heading);
            font-weight: 700;
        }

        .select-ui {
            border: 2px solid #bcd5ff;
            border-radius: 9px;
            overflow: hidden;
        }

        .select-top {
            align-items: center;
            display: flex;
            justify-content: space-between;
            min-height: 54px;
            padding: 0 16px;
        }

        .select-menu {
            border-top: 1px solid var(--line);
            display: grid;
            gap: 7px;
            padding: 10px;
        }

        .select-menu span {
            background: #edf3ff;
            border-radius: 5px;
            color: var(--accent);
            font-weight: 700;
            padding: 10px 12px;
        }

        .totals-box {
            background: #f8f9fd;
            border: 1px solid var(--line);
            border-radius: 8px;
            display: grid;
            gap: 10px;
            padding: 16px;
        }

        .totals-box div {
            display: flex;
            justify-content: space-between;
        }

        .totals-box strong {
            color: var(--heading);
        }

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

        .builder-heading {
            margin-bottom: 42px;
        }

        .builder-layout {
            align-items: stretch;
            display: grid;
            gap: 28px;
            grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
        }

        .builder-cards {
            display: grid;
            gap: 14px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .builder-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 8px;
            display: grid;
            gap: 12px;
            padding: 22px;
            transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
        }

        .builder-card:hover {
            border-color: #cfdcff;
            box-shadow: 0 14px 34px rgba(37, 35, 79, 0.08);
            transform: translateY(-2px);
        }

        .builder-icon {
            align-items: center;
            background: var(--accent-soft);
            border-radius: 8px;
            color: var(--accent);
            display: inline-flex;
            height: 42px;
            justify-content: center;
            width: 42px;
        }

        .builder-icon svg {
            height: 22px;
            width: 22px;
        }

        .builder-icon path {
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 2;
        }

        .builder-card p {
            font-size: 14px;
            line-height: 1.55;
        }

        .builder-preview {
            background: var(--hero-bg);
            border-radius: 12px;
            box-shadow: var(--shadow);
            color: rgba(255, 255, 255, 0.78);
            display: grid;
            gap: 18px;
            overflow: hidden;
            padding: 22px;
        }

        .builder-preview-top {
            align-items: center;
            display: flex;
            justify-content: space-between;
        }

        .builder-preview-top span {
            color: #aebdff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .builder-preview-top strong {
            color: var(--white);
            font-family: "Poppins", Arial, sans-serif;
        }

        .builder-canvas {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            display: grid;
            gap: 16px;
            grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
            padding: 16px;
        }

        .builder-layer {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            display: grid;
            gap: 12px;
            padding: 14px;
        }

        .builder-layer-label {
            color: rgba(255, 255, 255, 0.66);
            font-size: 12px;
            font-weight: 800;
        }

        .builder-image-placeholder {
            aspect-ratio: 1 / 1;
            background:
                radial-gradient(circle at 64% 64%, rgba(255, 255, 255, 0.95) 0 19%, transparent 20%),
                linear-gradient(145deg, rgba(174, 189, 255, 0.28), rgba(47, 102, 255, 0.46));
            border-radius: 8px;
        }

        .product-template-layer {
            gap: 10px;
        }

        .builder-product-title,
        .builder-price-row,
        .builder-quantity-row,
        .builder-button-row {
            background: rgba(255, 255, 255, 0.18);
            border-radius: 999px;
            height: 16px;
        }

        .builder-product-title {
            max-width: 76%;
        }

        .builder-price-row {
            max-width: 42%;
        }

        .builder-quantity-row {
            max-width: 48%;
        }

        .builder-button-row {
            background: var(--white);
            height: 42px;
            max-width: 100%;
        }

        .builder-addon-insert {
            background: var(--white);
            border: 2px solid #aebdff;
            border-radius: 8px;
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
            color: var(--text);
            display: grid;
            gap: 4px;
            margin: 4px 0;
            padding: 14px;
        }

        .builder-addon-insert span {
            color: var(--accent);
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .builder-addon-insert strong {
            color: var(--heading);
            font-family: "Poppins", Arial, sans-serif;
            font-size: 15px;
        }

        .builder-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .builder-badges span {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 12px;
            font-weight: 800;
            padding: 7px 10px;
        }

        .workflow {
            display: grid;
            gap: 18px;
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .step {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 24px;
            position: relative;
        }

        .step-number {
            color: var(--accent);
            font-family: "Poppins", Arial, sans-serif;
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .cart-shot {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 22px;
        }

        .cart-title {
            align-items: center;
            border-bottom: 1px solid var(--line);
            display: flex;
            justify-content: space-between;
            padding-bottom: 16px;
        }

        .cart-line {
            align-items: center;
            border-bottom: 1px solid var(--line);
            display: grid;
            gap: 14px;
            grid-template-columns: 54px 1fr auto;
            padding: 18px 0;
        }

        .thumb {
            background: linear-gradient(145deg, #eef2ff, #ffffff);
            border: 1px solid var(--line);
            border-radius: 8px;
            height: 54px;
            width: 54px;
        }

        .cart-line small {
            color: var(--muted);
            display: block;
        }

        .addon-line {
            background: #fbfcff;
            border: 1px solid var(--line);
            border-radius: 8px;
            display: grid;
            gap: 14px;
            grid-template-columns: 54px 1fr auto;
            margin-top: 16px;
            padding: 16px;
        }

        .addon-icon {
            align-items: center;
            background: var(--accent-soft);
            border-radius: 8px;
            color: var(--accent);
            display: flex;
            font-weight: 800;
            height: 54px;
            justify-content: center;
            width: 54px;
        }

        .pricing-section {
            background: #ffffff;
        }

        .pricing-heading {
            text-align: center;
        }

        .pricing-heading h2,
        .pricing-heading p {
            margin-left: auto;
            margin-right: auto;
        }

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

        .pricing-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: 30px;
            position: relative;
        }

        .pricing-card.is-featured {
            background: var(--hero-bg);
            border-color: var(--hero-bg);
            box-shadow: 0 28px 80px rgba(37, 35, 79, 0.22);
            color: rgba(255, 255, 255, 0.76);
            transform: translateY(-12px);
        }

        .pricing-card h3 {
            font-size: 24px;
        }

        .pricing-card p {
            margin-top: 8px;
        }

        .pricing-card.is-featured h3,
        .pricing-card.is-featured .price-row,
        .pricing-card.is-featured .pricing-list li {
            color: var(--white);
        }

        .pricing-card.is-featured .price-row del {
            color: rgba(255, 255, 255, 0.58);
        }

        .pricing-badge {
            background: var(--accent);
            border-radius: 999px;
            color: var(--white);
            font-size: 12px;
            font-weight: 800;
            padding: 7px 12px;
            position: absolute;
            right: 24px;
            top: 24px;
        }

        .pricing-card-header {
            padding-right: 72px;
        }

        .price-row {
            align-items: baseline;
            color: var(--heading);
            display: flex;
            font-family: "Poppins", Arial, sans-serif;
            gap: 12px;
            margin: 28px 0 22px;
        }

        .price-row del {
            color: #9093a3;
            font-size: 28px;
            font-weight: 700;
            text-decoration-thickness: 2px;
            text-decoration-color: currentColor;
        }

        .sale-price {
            align-items: flex-start;
            display: inline-flex;
            gap: 4px;
        }

        .sale-price span {
            font-size: 24px;
            font-weight: 700;
            margin-top: 10px;
        }

        .sale-price strong {
            font-size: 66px;
            line-height: 0.95;
        }

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

        .pricing-list li {
            align-items: flex-start;
            color: var(--text);
            display: flex;
            gap: 10px;
            font-weight: 600;
        }

        .pricing-list li::before {
            background: var(--success);
            border-radius: 50%;
            content: "";
            flex: 0 0 auto;
            height: 8px;
            margin-top: 9px;
            width: 8px;
        }

        .pricing-button {
            margin-top: auto;
            width: 100%;
        }

        .refund-policy {
            align-items: center;
            background:
                linear-gradient(135deg, rgba(47, 102, 255, 0.08), rgba(255, 255, 255, 0) 42%),
                var(--white);
            border: 1px solid var(--line);
            border-radius: 12px;
            box-shadow: 0 18px 48px rgba(37, 35, 79, 0.08);
            display: grid;
            gap: 26px;
            grid-template-columns: minmax(0, 1fr) auto;
            margin-top: 28px;
            padding: 24px;
        }

        .refund-policy-main {
            align-items: flex-start;
            display: grid;
            gap: 16px;
            grid-template-columns: 54px minmax(0, 1fr);
        }

        .refund-icon {
            align-items: center;
            background: rgba(47, 102, 255, 0.1);
            border: 1px solid rgba(47, 102, 255, 0.18);
            border-radius: 12px;
            color: var(--accent);
            display: inline-flex;
            height: 54px;
            justify-content: center;
            width: 54px;
        }

        .refund-icon svg {
            height: 28px;
            width: 28px;
        }

        .refund-icon path {
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.8;
        }

        .refund-policy h3 {
            font-size: 24px;
            margin-top: 4px;
        }

        .refund-policy-main p:last-child {
            margin-top: 8px;
            max-width: 720px;
        }

        .refund-policy-points {
            display: grid;
            gap: 10px;
            min-width: 260px;
        }

        .refund-policy-points span {
            align-items: center;
            background: var(--soft);
            border: 1px solid var(--line);
            border-radius: 999px;
            color: var(--heading);
            display: flex;
            font-size: 13px;
            font-weight: 700;
            gap: 9px;
            padding: 9px 13px;
            white-space: nowrap;
        }

        .refund-policy-points span::before {
            background: var(--accent);
            border-radius: 50%;
            content: "";
            flex: 0 0 auto;
            height: 7px;
            width: 7px;
        }

        .changelog-wrap {
            display: grid;
            gap: 28px;
        }

        .changelog-wrap .section-heading {
            margin-bottom: 0;
        }

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

        .changelog-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 10px;
            box-shadow: 0 18px 44px rgba(37, 35, 79, 0.08);
            padding: 22px;
        }

        .changelog-card.is-current {
            border-color: #cfdcff;
        }

        .changelog-version {
            align-items: center;
            border-bottom: 1px solid var(--line);
            display: flex;
            gap: 12px;
            justify-content: space-between;
            margin-bottom: 16px;
            padding-bottom: 14px;
        }

        .changelog-version strong {
            color: var(--heading);
            font-family: "Poppins", Arial, sans-serif;
            font-size: 21px;
        }

        .changelog-version span {
            background: var(--accent-soft);
            border-radius: 999px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 800;
            padding: 7px 11px;
        }

        .changelog-list {
            display: grid;
            gap: 9px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .changelog-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 0 0 16px;
        }

        .changelog-highlights span {
            background: #f7f8fc;
            border: 1px solid var(--line);
            border-radius: 999px;
            color: var(--heading);
            font-size: 12px;
            font-weight: 800;
            padding: 6px 10px;
        }

        .changelog-list li {
            border-left: 3px solid var(--accent);
            color: var(--text);
            font-size: 14px;
            line-height: 1.5;
            padding-left: 14px;
        }

        .cta {
            background: var(--hero-bg);
            color: rgba(255, 255, 255, 0.74);
            padding: 96px 24px;
            text-align: center;
        }

        .cta h2 {
            color: var(--white);
            margin: 0 auto;
        }

        .cta p {
            font-size: 18px;
            margin: 18px auto 32px;
            max-width: 700px;
        }

        .footer {
            background: #19183a;
            color: rgba(255, 255, 255, 0.6);
            padding: 28px 24px;
            text-align: center;
        }

        .docs-hero {
            background: var(--hero-bg);
            color: rgba(255, 255, 255, 0.78);
            padding: 62px 24px 70px;
        }

        .docs-hero h1 {
            max-width: 920px;
        }

        .docs-hero p:last-child {
            font-size: 19px;
            margin-top: 22px;
            max-width: 760px;
        }

        .docs-main {
            background: var(--soft);
        }

        .docs-layout {
            display: grid;
            gap: 28px;
            grid-template-columns: 240px minmax(0, 1fr);
            margin: 0 auto;
            max-width: 1180px;
            padding-top: 76px;
        }

        .docs-sidebar {
            align-self: start;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 8px;
            display: grid;
            gap: 4px;
            padding: 10px;
            position: sticky;
            top: 24px;
        }

        .docs-sidebar a {
            border-radius: 6px;
            color: var(--heading);
            font-size: 14px;
            font-weight: 700;
            padding: 10px 12px;
            text-decoration: none;
        }

        .docs-sidebar a:hover {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .docs-content {
            display: grid;
            gap: 22px;
        }

        .docs-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 30px;
        }

        .docs-card h2 {
            font-size: clamp(26px, 3vw, 36px);
            margin-bottom: 18px;
        }

        .docs-card h3 {
            font-size: 18px;
        }

        .docs-card p,
        .docs-card li {
            color: var(--text);
        }

        .docs-card ol,
        .docs-card ul {
            display: grid;
            gap: 10px;
            margin: 0 0 18px;
            padding-left: 22px;
        }

        .docs-card p + p,
        .docs-card ol + p {
            margin-top: 14px;
        }

        .docs-note {
            background: var(--accent-soft);
            border: 1px solid #dbe6ff;
            border-radius: 8px;
            color: var(--heading);
            padding: 14px 16px;
        }

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

        .docs-grid article {
            background: var(--soft);
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 18px;
        }

        .docs-grid article p {
            margin-top: 8px;
        }

        @media (max-width: 980px) {
            .hero {
                padding-bottom: 58px;
            }

            .hero-heading {
                margin-bottom: 30px;
            }

            .hero-inner {
                gap: 34px;
                grid-template-columns: 1fr;
            }

	            .hero-content {
	                max-width: 760px;
	            }

            .hero-visual {
                max-width: 860px;
                width: 100%;
            }

            .feature-grid,
            .workflow,
            .pricing-grid,
            .field-type-grid,
            .mode-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .pricing-card.is-featured {
                transform: none;
            }

            .refund-policy {
                grid-template-columns: 1fr;
            }

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

            .refund-policy-points span {
                justify-content: center;
                white-space: normal;
            }

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

            .builder-layout {
                grid-template-columns: 1fr;
            }

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

            .mock-admin {
                grid-template-columns: 1fr;
            }

            .mock-sidebar {
                display: none;
            }

            .docs-layout {
                grid-template-columns: 1fr;
            }

            .docs-sidebar {
                position: static;
            }
        }

	        @media (max-width: 720px) {
	            .early-bird-inner {
	                align-items: center;
	                flex-wrap: wrap;
	                gap: 8px 10px;
	                justify-content: flex-start;
	                min-height: 0;
	                padding: 10px 18px;
	                text-align: left;
	            }

	            .early-bird-inner p {
	                flex: 1 1 190px;
	                font-size: 13px;
	                line-height: 1.35;
	            }

	            .early-bird-inner a {
	                font-size: 12px;
	            }

	            .nav {
	                align-items: flex-start;
	                gap: 18px;
	            }

            .brand {
                font-size: 15px;
            }

            .nav-links a:not(.nav-cta) {
                display: none;
            }

            .nav-links {
                background: transparent;
                border: 0;
                padding: 0;
            }

            .hero {
                padding-bottom: 42px;
                padding-top: 40px;
            }

            .hero-heading {
                margin-bottom: 26px;
            }

            .hero-visual {
                width: 100%;
            }

            .hero-proof {
                display: grid;
            }

            .hero-metrics {
                grid-template-columns: 1fr;
            }

            .hero-window-label {
                align-items: flex-start;
                display: grid;
                gap: 4px;
            }

            .section {
                padding: 76px 18px;
            }

            .docs-hero {
                padding: 46px 18px 54px;
            }

            .docs-layout {
                padding-top: 54px;
            }

            .docs-card {
                padding: 22px;
            }

            .feature-grid,
            .workflow,
            .pricing-grid,
            .field-type-grid,
            .mode-grid,
            .builder-cards,
            .docs-grid,
            .swatch-demo,
            .measurement-grid {
                grid-template-columns: 1fr;
            }

            .builder-canvas {
                grid-template-columns: 1fr;
            }

            .builder-preview-top {
                align-items: flex-start;
                display: grid;
                gap: 4px;
            }

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

            .pricing-card {
                padding: 24px;
            }

            .refund-policy {
                padding: 20px;
            }

            .refund-policy-main {
                grid-template-columns: 1fr;
            }

            .refund-policy-points {
                grid-template-columns: 1fr;
            }

            .pricing-card-header {
                padding-right: 0;
            }

            .pricing-badge {
                position: static;
                width: fit-content;
                margin-bottom: 16px;
            }

            .changelog-version {
                align-items: flex-start;
                flex-direction: column;
            }

            .mock-content {
                padding: 18px;
            }

            .mock-input-row,
            .field-row {
                grid-template-columns: 1fr;
            }

            .product-header {
                grid-template-columns: 1fr;
            }

            .cart-line,
            .addon-line {
                grid-template-columns: 44px 1fr;
            }

            .cart-line .choice-price,
            .addon-line .choice-price {
                grid-column: 2;
            }
        }
