:root {
    --bg: #0b1020;
    --panel: #121a30;
    --panel-2: #16203c;
    --card: #0f172a;
    --text: #ebf2ff;
    --muted: #a8b3cf;
    --line: rgba(255, 255, 255, 0.08);
    --accent: #79a8ff;
    --accent-2: #98f5e1;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: linear-gradient(180deg, #0b1020 0%, #0e1528 100%);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.site-header {
    position: sticky; top: 0; z-index: 20;
    background: rgba(8, 12, 24, 0.9); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav-shell, .footer-grid, .hero-grid, .archive-shell, .dashboard-shell, .doc-layout {
    display: grid; gap: 24px;
}
.nav-shell { grid-template-columns: 1fr auto auto; align-items: center; padding: 18px 0; }
.brand-link { font-weight: 800; font-size: 1.15rem; }
.brand-tagline { margin: 4px 0 0; color: var(--muted); font-size: 0.92rem; }
.menu-list { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.button {
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px; padding: 12px 18px; border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent), #6b84ff); color: #06101e; font-weight: 700;
}
.button.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.hero { padding: 72px 0 32px; }
.hero-grid { grid-template-columns: 1.4fr 1fr; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 4vw, 4.3rem); line-height: 1.05; margin: 14px 0; }
.hero p, .lead { color: var(--muted); font-size: 1.08rem; }
.hero-panel, .content-grid, .tab-row, .badge-row, .hero-actions, .stack-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.metric-card, .card, .feature-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.metric-card { flex: 1 1 160px; min-height: 140px; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; }
.metric-card strong { font-size: 2rem; }
.metric-card span { color: var(--muted); }
.section-gap { padding: 34px 0; }
.section-gap-small { margin-top: 24px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 20px; }
.eyebrow { color: var(--accent-2); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.content-grid.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.content-grid.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .feature-box { padding: 24px; }
.empty-state { text-align: center; }
.product-card h3 { margin-bottom: 10px; }
.product-thumb { margin: -24px -24px 16px; overflow: hidden; border-radius: 18px 18px 0 0; }
.badge {
    display: inline-flex; align-items: center; border: 1px solid var(--line);
    background: rgba(255,255,255,0.04); border-radius: 999px; padding: 6px 10px; font-size: 0.85rem;
}
.product-meta-row, .meta-list li { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.meta-list, .simple-list { list-style: none; padding: 0; margin: 0; }
.meta-list li, .simple-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.categories-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.archive-shell { grid-template-columns: 280px 1fr; align-items: start; }
.filter-panel, .dashboard-sidebar, .doc-sidebar, .product-sidebar { position: sticky; top: 96px; }
.product-hero-shell { display: grid; grid-template-columns: 1.5fr 0.8fr; gap: 24px; }
.tab { padding: 12px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); }
.tab.active { color: var(--text); background: rgba(121, 168, 255, 0.12); border-color: rgba(121, 168, 255, 0.3); }
.dashboard-shell { grid-template-columns: 280px 1fr; align-items: start; }
.doc-layout { grid-template-columns: 280px 1fr; align-items: start; }
.site-footer { padding: 40px 0 80px; border-top: 1px solid var(--line); margin-top: 40px; }
.footer-grid { grid-template-columns: 1.5fr 1fr; }
.entry-content p { color: var(--muted); }
@media (max-width: 1024px) {
    .hero-grid, .archive-shell, .dashboard-shell, .doc-layout, .product-hero-shell, .footer-grid, .nav-shell { grid-template-columns: 1fr; }
    .content-grid, .content-grid.two-col, .content-grid.three-col, .categories-strip { grid-template-columns: 1fr 1fr; }
    .filter-panel, .dashboard-sidebar, .doc-sidebar, .product-sidebar { position: static; }
}
@media (max-width: 720px) {
    .content-grid, .content-grid.two-col, .content-grid.three-col, .categories-strip { grid-template-columns: 1fr; }
    .menu-list, .header-actions { flex-wrap: wrap; }
    .hero { padding-top: 48px; }
}


.account-layout{display:grid;grid-template-columns:280px 1fr;gap:24px;padding:48px 0}.account-sidebar,.content-card,.auth-card,.auth-aside{background:#111827;color:#f9fafb;border-radius:20px;padding:24px}.account-sidebar ul{list-style:none;padding:0;margin:16px 0 0}.account-sidebar li{margin:0 0 10px}.account-sidebar a{color:#e5e7eb;text-decoration:none}.account-sidebar .is-active a{font-weight:700}.account-content{display:flex;flex-direction:column;gap:24px}.stats-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.stat-card{background:#111827;color:#fff;border-radius:18px;padding:20px}.table-card{overflow:auto}.account-table{width:100%;border-collapse:collapse}.account-table th,.account-table td{padding:14px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left}.status-badge{display:inline-block;padding:6px 10px;border-radius:999px;background:#1f2937}.button-row{display:flex;gap:12px;flex-wrap:wrap}.auth-shell{display:grid;grid-template-columns:1.1fr .9fr;gap:24px;padding:48px 0}.auth-card form p{margin-bottom:16px}.auth-card input[type=text],.auth-card input[type=password],.auth-card input[type=email]{width:100%;padding:12px;border-radius:12px;border:1px solid #d1d5db}.auth-card input[type=submit],.button{display:inline-block;padding:12px 18px;border-radius:12px;background:#2563eb;color:#fff;text-decoration:none;border:none}.button-secondary{background:#374151}.download-panel{display:flex;flex-direction:column;gap:12px;background:#111827;color:#fff;padding:20px;border-radius:20px}.download-panel .meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;font-size:14px}.download-panel .meta span{display:block;color:#9ca3af}.download-panel .meta strong{display:block}.notice-inline{padding:12px 14px;border-radius:14px;background:#eff6ff;color:#1d4ed8}
@media(max-width:960px){.account-layout,.auth-shell{grid-template-columns:1fr}.stats-grid{grid-template-columns:1fr}}


.plan-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;margin:14px 0 18px;}
.plan-card{border:1px solid #d7deea;border-radius:14px;padding:14px;background:#fff;}
.plan-card ul{margin:10px 0 0 18px;padding:0;}
.plan-price{display:block;font-size:1.1rem;font-weight:700;margin-top:6px;}
.settings-grid{display:grid;gap:12px;margin:0 0 18px;}
.setting-row{display:flex;gap:10px;align-items:flex-start;padding:12px 14px;border:1px solid #d7deea;border-radius:12px;background:#fff;}

.ideiy-auth-form p { margin: 0 0 14px; }
.ideiy-auth-form label { display: block; font-weight: 600; margin-bottom: 6px; }
.ideiy-auth-form input[type="text"],
.ideiy-auth-form input[type="email"],
.ideiy-auth-form input[type="password"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 12px;
    padding: 0 14px;
    background: #fff;
}
.auth-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.notice { padding: 12px 14px; border-radius: 12px; margin: 0 0 16px; }
.notice-success { background: #f0fdf4; border: 1px solid #86efac; }
.notice-error { background: #fef2f2; border: 1px solid #fca5a5; }

.stats-grid-4{grid-template-columns:repeat(4,minmax(0,1fr));}
.stats-grid-5{grid-template-columns:repeat(5,minmax(0,1fr));}
.dashboard-hero-card{background:linear-gradient(135deg,rgba(121,168,255,.16),rgba(152,245,225,.08));border:1px solid rgba(121,168,255,.25)}
.dashboard-block-grid{align-items:start}
.compact-heading{margin-bottom:14px}
.notification-filters,.quick-access-grid,.license-mini-grid{display:grid;gap:12px}
.notification-filters{grid-template-columns:repeat(auto-fit,minmax(120px,1fr));margin-bottom:18px}
.filter-pill{display:inline-flex;justify-content:center;align-items:center;padding:10px 14px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.03)}
.filter-pill.is-active{background:rgba(121,168,255,.16);border-color:rgba(121,168,255,.35)}
.notification-list{display:flex;flex-direction:column;gap:14px}
.notification-item{border:1px solid var(--line);border-radius:18px;padding:18px;background:rgba(255,255,255,.03)}
.notification-item h3{margin:8px 0 8px;font-size:1.02rem}
.notification-item p{margin:0 0 12px;color:var(--muted)}
.notification-meta-row{display:flex;justify-content:space-between;gap:12px;align-items:center}
.notification-time{font-size:.9rem;color:var(--muted)}
.severity-danger{border-color:rgba(248,113,113,.5);background:rgba(127,29,29,.18)}
.severity-warning{border-color:rgba(251,191,36,.45);background:rgba(120,53,15,.16)}
.severity-success{border-color:rgba(74,222,128,.4);background:rgba(20,83,45,.16)}
.severity-info{border-color:rgba(96,165,250,.35)}
.compact-list .notification-item{padding:14px}
.quick-access-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.quick-link-card{display:flex;flex-direction:column;gap:6px;padding:18px;border-radius:18px;border:1px solid var(--line);background:rgba(255,255,255,.03)}
.quick-link-card span{color:var(--muted)}
.license-mini-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.license-mini-card{padding:16px;border-radius:18px;border:1px solid var(--line);background:rgba(255,255,255,.03)}
.license-mini-card h3{margin:0 0 10px;font-size:1rem}
.menu-count{display:inline-flex;align-items:center;justify-content:center;min-width:24px;height:24px;padding:0 7px;border-radius:999px;background:#2563eb;color:#fff;font-size:.8rem}
.account-menu{display:flex;flex-wrap:wrap;gap:10px}
.account-menu a{display:inline-flex;gap:8px;align-items:center;padding:10px 14px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.03)}
.account-menu a.is-active{background:rgba(121,168,255,.16);border-color:rgba(121,168,255,.35)}
@media(max-width:960px){.stats-grid-4,.stats-grid-5,.quick-access-grid,.license-mini-grid{grid-template-columns:1fr 1fr}}
@media(max-width:720px){.stats-grid-4,.stats-grid-5,.quick-access-grid,.license-mini-grid{grid-template-columns:1fr}}

:root{
    --bg:#07111f;
    --panel:#101a2f;
    --panel-2:#132342;
    --card:#0f1b33;
    --text:#f8fbff;
    --muted:#b7c4e3;
    --line:rgba(255,255,255,.10);
    --accent:#7c4dff;
    --accent-2:#00d4ff;
    --accent-3:#ff6ec7;
    --success:#32d296;
    --warning:#ffb84d;
    --danger:#ff6b6b;
    --shadow:0 24px 70px rgba(2,8,23,.42);
}
body{
    background:
      radial-gradient(circle at top right, rgba(124,77,255,.22), transparent 28%),
      radial-gradient(circle at top left, rgba(0,212,255,.15), transparent 24%),
      linear-gradient(180deg,#07111f 0%,#0b1630 55%,#0d1b36 100%);
}
.site-header{background:rgba(6,12,24,.74);border-bottom:1px solid rgba(255,255,255,.08);box-shadow:0 12px 30px rgba(2,8,23,.18)}
.brand-link{font-size:1.2rem;letter-spacing:.01em}
.button{background:linear-gradient(135deg,var(--accent),var(--accent-3));color:#fff;box-shadow:0 16px 34px rgba(124,77,255,.28)}
.button.secondary,.button.ghost{background:rgba(255,255,255,.05);color:var(--text);border-color:rgba(255,255,255,.12)}
.button.vibrant{background:linear-gradient(135deg,var(--accent-2),#4df3b7);color:#031321}
.panel,.content-card,.auth-card,.auth-aside,.account-sidebar,.stat-card,.card,.feature-box,.plan-card,.setting-row,.notification-item,.quick-link-card,.license-mini-card,.download-panel,.table-card{
    background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--shadow);
    backdrop-filter:blur(14px);
}
.hero h1{background:linear-gradient(90deg,#ffffff 0%,#dce6ff 45%,#b2fbff 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
.badge,.status-badge,.menu-count{background:linear-gradient(135deg,rgba(124,77,255,.24),rgba(0,212,255,.18));border-color:rgba(255,255,255,.14)}
.account-table th{color:#dbe5ff}
.account-table td,.muted,.lead,.entry-content p,.hero p{color:var(--muted)}
.account-table tr:hover td{background:rgba(255,255,255,.02)}
.plan-card{background:linear-gradient(180deg,rgba(124,77,255,.11),rgba(255,255,255,.05))}
.quick-link-card:hover,.plan-card:hover,.product-card:hover,.card:hover{transform:translateY(-2px);transition:.2s ease}
.notice-inline,.notice{border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.08);color:#fff}
.notice-success{background:rgba(50,210,150,.12);border-color:rgba(50,210,150,.35)}
.notice-error{background:rgba(255,107,107,.14);border-color:rgba(255,107,107,.36)}
.ideiy-auth-form input[type="text"],.ideiy-auth-form input[type="email"],.ideiy-auth-form input[type="password"],.auth-card input[type=text],.auth-card input[type=password],.auth-card input[type=email]{background:rgba(255,255,255,.95);border-color:rgba(124,77,255,.14)}
.product-side-card{position:relative;overflow:hidden}
.product-side-card::before{content:"";position:absolute;inset:-1px auto auto -1px;width:120px;height:120px;background:radial-gradient(circle,rgba(0,212,255,.22),transparent 65%);pointer-events:none}

.notification-toolbar{display:flex;justify-content:space-between;gap:14px;align-items:center;flex-wrap:wrap;margin-bottom:18px}
.notification-item .button-row{margin-top:8px}
.hero,.section-gap{position:relative}
.hero::after{content:"";position:absolute;right:5%;top:10%;width:220px;height:220px;background:radial-gradient(circle,rgba(255,110,199,.18),transparent 68%);pointer-events:none;filter:blur(8px)}
.card,.feature-box,.stat-card,.content-card,.auth-card,.auth-aside,.account-sidebar{border-radius:22px}
.product-card,.plan-card,.quick-link-card,.license-mini-card,.notification-item{box-shadow:0 18px 48px rgba(11,23,54,.28)}
.button:hover{transform:translateY(-1px);transition:.18s ease;box-shadow:0 18px 38px rgba(124,77,255,.34)}

/* Phase 28: separate seller/customer dashboard + compact heights */
.stats-grid-3{grid-template-columns:repeat(3,minmax(0,1fr));}
.compact-card{padding:18px !important;}
.compact-stats-grid{gap:12px;}
.compact-stat-card{padding:16px !important;min-height:auto;}
.compact-stat-card h3{margin:0 0 8px;font-size:.95rem;}
.compact-stat-card strong{font-size:1.65rem;line-height:1.15;display:block;}
.compact-table th,.compact-table td{padding:10px 12px;}
.compact-item{padding:14px 14px 12px !important;}
.compact-item h3{margin:6px 0 4px;font-size:1rem;}
.compact-item p{margin:0;font-size:.95rem;}
.compact-link-card{padding:14px !important;gap:4px !important;min-height:auto;}
.compact-license-card{padding:14px !important;}
.account-sidebar ul{display:flex;flex-direction:column;gap:8px;}
.account-sidebar li{margin:0;}
.account-sidebar a{display:block;padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.03);}
.account-sidebar .is-active a{background:rgba(121,168,255,.14);}
.admin-quick-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
.seller-hero-card{background:linear-gradient(135deg,rgba(255,166,0,.16),rgba(255,90,95,.10));border:1px solid rgba(255,166,0,.22);}
@media(max-width:960px){.stats-grid-3,.admin-quick-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:720px){.stats-grid-3,.admin-quick-grid{grid-template-columns:1fr;}}

/* Phase 29: improved product content area */
.product-content-card{padding:24px 28px;}
.product-content{max-width:100%;}
.prose-content{font-size:16px;line-height:1.75;color:var(--text);}
.prose-content > *:first-child{margin-top:0;}
.prose-content > *:last-child{margin-bottom:0;}
.prose-content h1,.prose-content h2,.prose-content h3,.prose-content h4{color:#fff;line-height:1.25;margin:0 0 14px;}
.prose-content h2{font-size:1.55rem;margin-top:28px;}
.prose-content h3{font-size:1.2rem;margin-top:22px;}
.prose-content p,.prose-content ul,.prose-content ol,.prose-content blockquote,.prose-content pre{margin:0 0 16px;}
.prose-content ul,.prose-content ol{padding-left:22px;}
.prose-content li{margin-bottom:8px;}
.prose-content a{color:#7dd3fc;text-decoration:none;border-bottom:1px solid rgba(125,211,252,.25);}
.prose-content code{background:rgba(255,255,255,.08);padding:2px 7px;border-radius:8px;color:#d8f3ff;}
.prose-content pre{background:rgba(3,10,24,.72);border:1px solid rgba(255,255,255,.08);padding:16px 18px;border-radius:16px;overflow:auto;}
.prose-content blockquote{padding:14px 16px;border-left:4px solid var(--accent-2);background:rgba(255,255,255,.04);border-radius:14px;color:#dce6ff;}
.prose-content img{max-width:100%;height:auto;border-radius:18px;box-shadow:0 16px 40px rgba(2,8,23,.28);}
.prose-content table{width:100%;border-collapse:collapse;margin:0 0 18px;background:rgba(255,255,255,.03);border-radius:14px;overflow:hidden;display:block;}
.prose-content table th,.prose-content table td{padding:12px 14px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left;}
@media(max-width:720px){.product-content-card{padding:18px 16px;}.prose-content{font-size:15px;line-height:1.68;}}


/* Phase 33 language switcher */
.lang-switcher{display:inline-flex;align-items:center;gap:6px;padding:4px;background:rgba(124,77,255,.08);border:1px solid rgba(124,77,255,.14);border-radius:999px}
.lang-link{display:inline-flex;align-items:center;justify-content:center;min-width:36px;height:32px;padding:0 10px;border-radius:999px;font-size:12px;font-weight:700;text-decoration:none;color:inherit;opacity:.8}
.lang-link.active{background:linear-gradient(135deg,var(--accent),var(--accent-2));color:#fff;opacity:1;box-shadow:0 8px 18px rgba(124,77,255,.18)}
.header-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}


/* Phase 35 targeted sidebar/layout fix */
.account-grid,
.account-layout{
    display:grid;
    grid-template-columns:280px minmax(0,1fr);
    gap:24px;
    padding:40px 0;
    align-items:start;
}
.account-sidebar{
    position:sticky;
    top:96px;
    align-self:start;
    background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
}
.account-sidebar h3{margin:0 0 14px;font-size:1.4rem;}
.account-sidebar ul{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:8px;}
.account-sidebar li{margin:0;}
.account-sidebar a{
    display:flex;
    align-items:center;
    min-height:44px;
    padding:0 14px;
    border-radius:14px;
    color:var(--text);
    background:rgba(255,255,255,.03);
    border:1px solid transparent;
}
.account-sidebar li.is-active a,
.account-sidebar a:hover{
    background:rgba(121,168,255,.16);
    border-color:rgba(121,168,255,.28);
}
.account-content{min-width:0;gap:20px;}
.account-content > .content-card,
.account-content > .panel{min-width:0;}
.account-content .section-heading{display:block;margin-bottom:18px;}
.account-content .section-heading h1,
.account-content .section-heading h2{margin:6px 0 0;}
.account-content .section-heading .eyebrow{display:inline-block;margin-bottom:2px;}
.account-content .auth-card,
.account-content .content-card,
.account-content .panel{padding:24px;}
.account-content .account-table,
.account-content .table{width:100%;}
.account-content .button-row{align-items:center;}
@media (max-width: 1024px){
    .account-grid,
    .account-layout{grid-template-columns:1fr;}
    .account-sidebar{position:static;top:auto;}
}


/* Phase 39 commerce UI */
.purchase-panel{background:#fff;border:1px solid #dde7f5;border-radius:18px;padding:20px;box-shadow:0 16px 50px rgba(17,24,39,.08)}
.purchase-plan-list{display:grid;gap:12px}
.purchase-plan-card{display:block;border:1px solid #d8e2f2;border-radius:16px;padding:0;background:#f8fbff;cursor:pointer}
.purchase-plan-card input{margin:16px 0 0 16px}
.purchase-plan-card__body{display:flex;flex-direction:column;gap:6px;padding:10px 16px 16px}
.purchase-panel__methods{margin:10px 0 14px}
.cart-panel{background:#fff}
.cart-list{display:flex;flex-direction:column;gap:12px}
.cart-item{display:grid;grid-template-columns:minmax(0,1fr) auto auto;gap:16px;align-items:center;padding:16px;border:1px solid #e5ebf5;border-radius:16px;background:#f8fbff}
.cart-item__meta h3{margin:0 0 6px}
.cart-item__price{font-weight:700;color:#21304f}
.cart-summary{display:flex;justify-content:space-between;align-items:center;margin-top:18px;padding-top:18px;border-top:1px solid #e5ebf5;gap:16px;flex-wrap:wrap}
.empty-state{padding:28px;border:1px dashed #d8e2f2;border-radius:18px;background:#f8fbff}
.checkout-methods{display:grid;gap:12px;margin:14px 0 18px}
.checkout-method-card{display:block;border:1px solid #d8e2f2;border-radius:16px;padding:14px 16px;background:#f8fbff;cursor:pointer}
.checkout-method-card input{margin-right:10px}
.checkout-method-card__body{display:inline-flex;flex-direction:column;gap:4px;vertical-align:middle}
.checkout-help{padding:16px;border:1px solid #e5ebf5;border-radius:16px;background:#f8fbff}
@media (max-width: 768px){
  .cart-item{grid-template-columns:1fr}
  .cart-summary{align-items:flex-start}
}


/* Phase 40 cart/checkout visual fix */
.purchase-panel--light,
.cart-panel--light,
.checkout-panel--light,
.checkout-summary-panel.checkout-panel--light {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    border: 1px solid #d9e2f0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    color: #142033;
}
.purchase-panel--light *,
.cart-panel--light *,
.checkout-panel--light *,
.checkout-summary-panel.checkout-panel--light * {
    color: inherit;
}
.purchase-panel--light .muted,
.cart-panel--light .muted,
.checkout-panel--light .muted,
.checkout-summary-panel.checkout-panel--light .muted {
    color: #66758c !important;
}
.purchase-panel {
    margin-top: 16px;
    padding: 18px;
}
.purchase-panel__header strong {
    display: block;
    font-size: 1.05rem;
    color: #15233a;
    margin-bottom: 8px;
}
.purchase-panel__methods {
    margin: 0 0 12px;
    padding: 12px 14px;
    background: #eef4ff;
    border: 1px solid #d5e3ff;
    border-radius: 14px;
}
.purchase-plan-list {
    display: grid;
    gap: 12px;
}
.purchase-plan-card {
    display: block;
    cursor: pointer;
}
.purchase-plan-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.purchase-plan-card__body {
    display: block;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #d8e1ef;
    background: #fff;
    transition: all .2s ease;
}
.purchase-plan-card input[type="radio"]:checked + .purchase-plan-card__body {
    border-color: #7c4dff;
    background: #f5f1ff;
    box-shadow: 0 0 0 3px rgba(124,77,255,.10);
}
.purchase-plan-card__body strong {
    display: block;
    color: #18253d;
    margin-bottom: 6px;
    font-size: 1rem;
}
.purchase-plan-card__body .muted {
    display: block;
}
.purchase-actions {
    align-items: center;
}
.purchase-primary {
    background: linear-gradient(135deg, #7c4dff, #ff5fb7);
    color: #fff;
    border: none;
}
.button.secondary.purchase-secondary,
.button.purchase-secondary {
    background: #eef2ff;
    color: #22324d;
    border: 1px solid #d8e1ef;
}
.button.ghost.purchase-ghost,
.button.purchase-ghost {
    background: #fff;
    color: #22324d;
    border: 1px solid #d8e1ef;
}
.cart-list {
    display: grid;
    gap: 12px;
}
.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #d8e1ef;
    border-radius: 16px;
}
.cart-item__meta h3 {
    margin: 0 0 4px;
    color: #142033;
}
.cart-item__price {
    font-weight: 700;
    color: #142033;
}
.cart-summary {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #d8e1ef;
}
.checkout-methods {
    display: grid;
    gap: 12px;
    margin: 12px 0 18px;
}
.checkout-method-card {
    display: block;
    cursor: pointer;
}
.checkout-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.checkout-method-card__body {
    display: block;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #d8e1ef;
    border-radius: 16px;
}
.checkout-method-card input[type="radio"]:checked + .checkout-method-card__body {
    border-color: #7c4dff;
    background: #f5f1ff;
    box-shadow: 0 0 0 3px rgba(124,77,255,.10);
}
.checkout-method-card__body strong {
    color: #142033;
    display: block;
    margin-bottom: 4px;
}
@media (max-width: 900px) {
    .cart-item {
        grid-template-columns: 1fr;
    }
}



/* Phase 41 product page + cart redirect fix */
.grid-two{
    display:grid;
    grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);
    gap:28px;
    align-items:start;
}
.section-page{padding:28px 0 48px;}
.product-side-card{
    position:sticky;
    top:96px;
    display:flex;
    flex-direction:column;
    gap:18px;
}
.product-tabs{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:14px 0 18px;
}
.product-tabs a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.04);
    color:#dce7ff;
    font-size:.94rem;
    font-weight:600;
}
.product-side-card > h3{
    margin:0;
    font-size:1.12rem;
}
.product-meta-list{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:10px;
}
.product-meta-list li{
    display:flex;
    justify-content:space-between;
    gap:14px;
    align-items:flex-start;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.plan-compare{display:grid;gap:12px;}
.plan-grid{display:grid;gap:12px;}
.plan-card{
    padding:16px 18px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);
    background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.plan-card strong{display:block;margin-bottom:6px;}
.plan-card .plan-price{display:block;font-size:1.15rem;font-weight:800;margin-bottom:8px;}
.plan-card ul{margin:0;padding-left:18px;color:var(--muted);}
.cta-stack{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.purchase-panel{
    order:-1;
    margin-top:0;
}
.purchase-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.purchase-actions > *{
    flex:0 0 auto;
}
.purchase-primary,.purchase-secondary,.purchase-ghost{
    min-height:46px;
}
.purchase-panel__header p{margin:6px 0 0;}
.product-side-card .button{width:100%;}
.purchase-actions .button{width:auto;}
@media (max-width: 1024px){
    .grid-two{
        grid-template-columns:1fr;
    }
    .product-side-card{
        position:static;
        top:auto;
    }
}



/* Phase 41.2 cart and readability hotfix */
.purchase-box,
.cart-panel,
.checkout-panel,
.ideiy-cart,
.ideiy-checkout,
.product-purchase-box {
    background: #0f1c35 !important;
    color: #eaf1ff !important;
    border: 1px solid rgba(130, 155, 255, 0.24) !important;
}

.purchase-box .muted,
.cart-panel .muted,
.checkout-panel .muted,
.ideiy-cart .muted,
.ideiy-checkout .muted,
.product-purchase-box .muted {
    color: #b8c7ea !important;
}

.purchase-box .button,
.cart-panel .button,
.checkout-panel .button,
.ideiy-cart .button,
.ideiy-checkout .button,
.product-purchase-box .button {
    color: #ffffff !important;
}

.purchase-box .button.secondary,
.purchase-box .button.ghost,
.cart-panel .button.secondary,
.cart-panel .button.ghost,
.checkout-panel .button.secondary,
.checkout-panel .button.ghost,
.ideiy-cart .button.secondary,
.ideiy-cart .button.ghost,
.ideiy-checkout .button.secondary,
.ideiy-checkout .button.ghost,
.product-purchase-box .button.secondary,
.product-purchase-box .button.ghost {
    background: #eef3ff !important;
    color: #13264d !important;
    border-color: rgba(98, 117, 255, 0.18) !important;
}

.purchase-box select,
.purchase-box input,
.purchase-box textarea,
.cart-panel select,
.cart-panel input,
.cart-panel textarea,
.checkout-panel select,
.checkout-panel input,
.checkout-panel textarea,
.ideiy-cart select,
.ideiy-cart input,
.ideiy-cart textarea,
.ideiy-checkout select,
.ideiy-checkout input,
.ideiy-checkout textarea,
.product-purchase-box select,
.product-purchase-box input,
.product-purchase-box textarea {
    background: #ffffff !important;
    color: #152544 !important;
    border: 1px solid rgba(124, 141, 255, 0.22) !important;
}

.purchase-box .plan-option,
.purchase-box .license-option,
.cart-panel .plan-option,
.checkout-panel .plan-option,
.product-purchase-box .plan-option {
    background: rgba(255,255,255,0.08) !important;
    color: #f3f7ff !important;
}

.purchase-box .plan-option.is-active,
.purchase-box .license-option.is-active,
.cart-panel .plan-option.is-active,
.checkout-panel .plan-option.is-active,
.product-purchase-box .plan-option.is-active {
    background: rgba(121, 92, 255, 0.18) !important;
    border-color: rgba(138, 111, 255, 0.8) !important;
    box-shadow: 0 0 0 1px rgba(138, 111, 255, 0.45) inset !important;
}

a.button.continue-shopping,
.button.continue-shopping,
.purchase-box .continue-shopping,
.cart-panel .continue-shopping,
.checkout-panel .continue-shopping {
    background: #eef3ff !important;
    color: #152544 !important;
    border: 1px solid rgba(108, 125, 255, 0.18) !important;
    text-shadow: none !important;
}

.purchase-box table,
.cart-panel table,
.checkout-panel table,
.ideiy-cart table,
.ideiy-checkout table {
    background: transparent !important;
    color: #eaf1ff !important;
}

.purchase-box th,
.purchase-box td,
.cart-panel th,
.cart-panel td,
.checkout-panel th,
.checkout-panel td,
.ideiy-cart th,
.ideiy-cart td,
.ideiy-checkout th,
.ideiy-checkout td {
    border-color: rgba(130, 155, 255, 0.16) !important;
}

.social-auth-card { margin: 0 0 14px; }
.google-button { display:inline-flex; align-items:center; justify-content:center; width:100%; background:#fff !important; color:#1f2d52 !important; border:1px solid rgba(106,92,255,0.18) !important; }
.auth-divider { display:flex; align-items:center; gap:12px; margin:12px 0 16px; color:#7a86a8; font-size:13px; }
.auth-divider:before, .auth-divider:after { content:""; flex:1; height:1px; background:rgba(122,134,168,0.25); }


/* Phase 52 multilingual + premium cart polish */
.hero-copy{max-width:min(100%,920px)}
.hero h1{font-size:var(--hero-title-size,54px);line-height:1.08;max-width:24ch}
.cart-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);gap:24px;align-items:start}
.cart-panel--premium,
.checkout-panel--premium,
.cart-summary-card{border-radius:24px;padding:24px}
.cart-panel--premium{background:linear-gradient(180deg,#ffffff 0%,#f7faff 100%);border:1px solid #dbe5f3;box-shadow:0 22px 55px rgba(15,23,42,.12)}
.cart-item--premium{grid-template-columns:minmax(0,1fr) auto auto;padding:20px;border-radius:20px;background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);border:1px solid #d9e4f2;box-shadow:0 10px 26px rgba(15,23,42,.06)}
.cart-item__badge{display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;background:#eef3ff;color:#30405f;font-size:.78rem;font-weight:700;margin-bottom:10px}
.cart-item__meta .muted{color:#56657f !important}
.cart-item__actions{justify-self:end}
.cart-remove-link{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;background:#f4f7fb;border:1px solid #d3ddea;color:#1f2d45;font-weight:600}
.cart-remove-link:hover{background:#edf2f8;color:#111a2c}
.cart-summary-card{position:sticky;top:96px;background:linear-gradient(180deg,#ffffff 0%,#f7f8fd 100%);border:1px solid #dbe2ef;box-shadow:0 20px 45px rgba(15,23,42,.10)}
.cart-summary-lines{display:grid;gap:12px}
.cart-summary-lines p{display:flex;justify-content:space-between;align-items:center;gap:16px;margin:0;padding:12px 14px;border-radius:16px;background:#f8fbff;color:#1c2840}
.cart-summary-lines p span{color:#50607b}
.cart-summary-lines p strong{color:#10192b}
.cart-summary-lines .cart-summary-total{background:linear-gradient(135deg,rgba(124,77,255,.10),rgba(0,212,255,.10));border:1px solid rgba(124,77,255,.16)}
.cart-summary-actions{display:grid;gap:12px;margin-top:18px}
.cart-summary-actions .button{text-align:center;justify-content:center}
.checkout-notice{margin:0 0 18px;padding:14px 16px;border-radius:16px;background:#eef5ff;border:1px solid #d2e1ff;color:#20314c;font-weight:600}
.guest-checkout-note{margin-top:20px;padding:18px;border-radius:18px;background:#0f1a2e;color:#eef4ff;box-shadow:0 18px 40px rgba(10,16,28,.22)}
.guest-checkout-note strong{display:block;margin-bottom:8px;color:#fff}
.guest-checkout-note p{margin:0;color:#dbe6ff}
.guest-checkout-note--large{margin-top:4px}
.premium-coupon-box{margin:12px 0 18px;padding:14px;border-radius:18px;background:#f7faff;border:1px solid #d7e3f3}
.premium-coupon-form{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.premium-coupon-form input[type="text"]{flex:1 1 220px;min-height:46px;padding:12px 14px;border-radius:14px;border:1px solid #cfd9ea;background:#fff;color:#10192b}
.order-summary-table th,.order-summary-table td,.dashboard-table th,.dashboard-table td{color:#17243a;background:transparent}
.order-summary-table thead th,.dashboard-table thead th{background:#f3f7ff;color:#1e2e49}
.checkout-help-box{margin-top:18px;padding:16px;border-radius:16px;background:#f7faff;border:1px solid #d8e2f1;color:#2a3953 !important}
.checkout-help-box p,.checkout-help-box strong{color:#2a3953 !important}
.checkout-method-card__body,.checkout-method-card__body strong,.checkout-method-card__body small{color:#17243a}
.checkout-method-card.disabled .checkout-method-card__body{opacity:.9;background:#f5f7fb}
.brand-tagline{max-width:34ch}
@media (max-width: 1024px){
  .cart-layout,.checkout-grid-premium,.grid-two{grid-template-columns:1fr}
  .cart-summary-card,.product-side-card{position:static;top:auto}
}
@media (max-width: 768px){
  .site-header .nav-shell{gap:14px;flex-wrap:wrap}
  .brand-tagline{display:none}
  .hero{padding:34px 0 18px}
  .hero-grid{gap:18px}
  .hero h1{font-size:clamp(28px,8vw,40px);max-width:none}
  .hero p{font-size:.98rem}
  .hero-actions,.header-actions,.button-row,.premium-coupon-form{display:grid;grid-template-columns:1fr;gap:10px}
  .menu-list{gap:8px;flex-wrap:wrap}
  .metric-card,.feature-box,.card,.panel,.cart-panel--premium,.cart-summary-card{border-radius:20px}
  .cart-item--premium,.cart-item{grid-template-columns:1fr;align-items:flex-start}
  .cart-item__actions{justify-self:start}
  .cart-summary-lines p{padding:12px}
}


/* Phase 53 premium cart + checkout refinement */
.button--compact{padding:10px 16px !important;min-height:44px;font-size:.94rem;line-height:1.1;border-radius:14px;box-shadow:0 10px 24px rgba(124,77,255,.20)}
.purchase-actions .button--compact{padding:10px 14px !important;font-size:.92rem}
.section-heading--split{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;flex-wrap:wrap}
.premium-surface,.cart-panel--premium,.checkout-panel--premium,.cart-summary-card{position:relative;overflow:hidden}
.premium-surface::before,.cart-panel--premium::before,.checkout-panel--premium::before,.cart-summary-card::before{content:"";position:absolute;inset:-10% auto auto -8%;width:180px;height:180px;background:radial-gradient(circle,rgba(0,212,255,.12),transparent 68%);pointer-events:none}
.premium-panel-head{margin-bottom:20px}
.premium-kicker{display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;background:rgba(124,77,255,.08);border:1px solid rgba(124,77,255,.14);color:#5a47d6;font-size:.78rem;font-weight:800;letter-spacing:.03em;text-transform:uppercase}
.premium-panel-head h1,.premium-panel-head h2{margin:10px 0 8px;color:#13213b}
.premium-panel-head p{max-width:52ch;color:#62708a !important}
.cart-layout,.checkout-grid-premium{gap:28px}
.cart-panel--premium,.checkout-panel--premium{padding:28px;border-radius:28px;background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%) !important;border:1px solid rgba(203,216,237,.9) !important;box-shadow:0 28px 70px rgba(9,20,44,.18),0 10px 22px rgba(124,77,255,.06) !important}
.cart-summary-card,.checkout-summary-panel{padding:24px;border-radius:28px;background:linear-gradient(180deg,#ffffff 0%,#f7f9fe 100%) !important;border:1px solid rgba(210,221,240,.96) !important;box-shadow:0 26px 68px rgba(8,18,40,.16),0 8px 18px rgba(124,77,255,.06) !important}
.cart-panel--premium,.checkout-panel--premium,.cart-summary-card,.checkout-summary-panel,.cart-panel--premium *, .checkout-panel--premium *, .cart-summary-card *, .checkout-summary-panel *{color:#15233f}
.cart-panel--premium .muted,.checkout-panel--premium .muted,.cart-summary-card .muted,.checkout-summary-panel .muted{color:#62708a !important}
.cart-list{display:grid;gap:18px}
.cart-item--premium{position:relative;display:grid;grid-template-columns:minmax(0,1fr) auto auto;gap:18px;align-items:center;padding:22px;border-radius:22px;background:linear-gradient(180deg,#ffffff 0%,#f5f8fd 100%) !important;border:1px solid rgba(212,223,240,.95) !important;box-shadow:0 16px 40px rgba(10,20,40,.08)}
.cart-item__meta h3{margin:0 0 10px;font-size:1.35rem;color:#10203d}
.cart-item__meta p{margin:0;color:#62708a !important}
.cart-item__price{display:inline-flex;align-items:center;justify-content:center;min-width:108px;padding:12px 16px;border-radius:16px;background:linear-gradient(135deg,rgba(124,77,255,.08),rgba(0,212,255,.10));border:1px solid rgba(124,77,255,.14);font-weight:800;color:#142445}
.cart-remove-link{padding:10px 13px;border-radius:14px;background:#f4f7fb;border:1px solid #d3ddea;color:#1d2c49;font-size:.92rem;font-weight:700}
.cart-summary-lines{gap:14px}
.cart-summary-lines p{padding:14px 16px;border-radius:18px;background:#f6f9ff !important;border:1px solid rgba(218,227,241,.85);box-shadow:inset 0 1px 0 rgba(255,255,255,.85)}
.cart-summary-lines p span{font-weight:600;color:#60708b}
.cart-summary-lines p strong{font-size:1rem;color:#0f1c35}
.cart-summary-total strong{font-size:1.1rem}
.cart-summary-actions{display:flex;flex-wrap:wrap;gap:12px}
.cart-summary-actions .button{flex:1 1 180px}
.guest-checkout-note{border:1px solid rgba(124,77,255,.16);background:linear-gradient(180deg,#14213c 0%,#101a31 100%)}
.checkout-methods{display:grid;gap:16px}
.checkout-method-card{position:relative;display:block;padding:0;border:0;background:transparent}
.checkout-method-card input[type="radio"]{position:absolute;top:18px;left:18px;width:18px;height:18px;accent-color:var(--accent)}
.checkout-method-card__body{display:flex;flex-direction:column;gap:6px;padding:20px 20px 20px 48px;border-radius:20px;background:linear-gradient(180deg,#ffffff 0%,#f7faff 100%);border:1px solid rgba(212,223,240,.95);box-shadow:0 14px 34px rgba(9,20,44,.07);transition:.18s ease;color:#15233f !important}
.checkout-method-card:hover .checkout-method-card__body{transform:translateY(-1px);box-shadow:0 18px 42px rgba(9,20,44,.10)}
.checkout-method-card input[type="radio"]:checked + .checkout-method-card__body{border-color:rgba(124,77,255,.58);box-shadow:0 0 0 3px rgba(124,77,255,.12),0 22px 50px rgba(124,77,255,.12);background:linear-gradient(180deg,#fcfbff 0%,#f6f4ff 100%)}
.checkout-method-card__body strong{font-size:1.08rem;color:#12223d !important}
.checkout-method-card__body small{color:#62708a !important;line-height:1.55}
.checkout-method-card.disabled .checkout-method-card__body{opacity:1;background:linear-gradient(180deg,#fbfcff 0%,#f6f8fc 100%)}
.premium-coupon-box{padding:16px;border-radius:20px;background:linear-gradient(180deg,#f9fbff 0%,#f4f8ff 100%) !important;border:1px solid rgba(214,224,240,.92)}
.premium-coupon-form{gap:10px}
.premium-coupon-form input[type="text"]{min-height:48px;padding:12px 14px;border-radius:14px;border:1px solid rgba(199,211,233,.95);background:#fff;color:#12223d;font-weight:600}
.order-summary-table{width:100%;border-collapse:separate;border-spacing:0 10px;margin-top:4px}
.order-summary-table thead th,.dashboard-table thead th{padding:12px 14px;border:0;background:#eff4ff !important;color:#22324d !important;font-size:.86rem;text-transform:uppercase;letter-spacing:.03em}
.order-summary-table thead th:first-child{border-radius:14px 0 0 14px}
.order-summary-table thead th:last-child{border-radius:0 14px 14px 0}
.order-summary-table tbody tr{box-shadow:0 10px 24px rgba(12,22,42,.06)}
.order-summary-table tbody td{padding:14px 14px;background:#ffffff !important;color:#14233f !important;border-top:1px solid rgba(220,228,240,.95);border-bottom:1px solid rgba(220,228,240,.95)}
.order-summary-table tbody td:first-child{border-left:1px solid rgba(220,228,240,.95);border-radius:16px 0 0 16px;font-weight:700}
.order-summary-table tbody td:last-child{border-right:1px solid rgba(220,228,240,.95);border-radius:0 16px 16px 0;font-weight:800}
.checkout-help-box{padding:18px 18px 16px;border-radius:20px;background:linear-gradient(180deg,#f9fbff 0%,#f5f8ff 100%) !important;border:1px solid rgba(213,223,240,.95) !important;color:#22324d !important}
.checkout-help-box p,.checkout-help-box strong{color:#22324d !important}
.checkout-panel .button,.cart-panel .button,.ideiy-cart .button,.ideiy-checkout .button{justify-content:center;text-align:center}
@media (max-width: 1024px){.cart-summary-actions{display:grid;grid-template-columns:1fr 1fr}.checkout-grid-premium{grid-template-columns:1fr}.checkout-summary-panel{position:static;top:auto}}
@media (max-width: 768px){.button--compact{width:100%}.cart-summary-actions{grid-template-columns:1fr}.cart-item__price{min-width:auto;justify-self:start}.premium-panel-head p{max-width:none}.cart-panel--premium,.checkout-panel--premium,.cart-summary-card,.checkout-summary-panel{padding:20px;border-radius:22px}}

/* Phase 54 alignment + product/sidebar restoration */
.brand-area{display:flex;flex-direction:column;justify-content:center;gap:6px;min-width:0;max-width:560px}
.brand-link{display:block;line-height:1.08}
.brand-tagline{display:block;margin:0;max-width:46ch;font-size:.95rem;line-height:1.5;color:#c2d0ec;opacity:.96;letter-spacing:.01em;text-wrap:balance}

.cart-layout,.checkout-grid-premium{align-items:start !important}
.cart-layout > .panel,.cart-layout > .cart-summary-card,.checkout-grid-premium > .panel,.checkout-grid-premium > .checkout-summary-panel{align-self:start !important;margin-top:0 !important}
.cart-summary-card,.checkout-summary-panel{top:88px}
.checkout-summary-panel{position:sticky}
.cart-panel--premium,.checkout-panel--premium,.cart-summary-card,.checkout-summary-panel{backdrop-filter:blur(18px)}
.cart-panel--premium::after,.checkout-panel--premium::after,.cart-summary-card::after,.checkout-summary-panel::after{content:"";position:absolute;inset:auto 0 0 0;height:1px;background:linear-gradient(90deg,transparent,rgba(124,77,255,.22),transparent);pointer-events:none}
.cart-panel--premium,.checkout-panel--premium{background:linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(246,249,255,.98) 100%) !important}
.cart-summary-card,.checkout-summary-panel{background:linear-gradient(180deg,rgba(255,255,255,.99) 0%,rgba(247,249,254,.99) 100%) !important}
.premium-panel-head h1,.premium-panel-head h2{line-height:1.12}
.checkout-summary-panel .premium-panel-head,.cart-summary-card .premium-panel-head{margin-bottom:18px}
.order-summary-table tbody tr{box-shadow:none}
.order-summary-table tbody td{box-shadow:0 14px 34px rgba(12,22,42,.07)}
.order-summary-table tbody td + td{box-shadow:0 14px 34px rgba(12,22,42,.07)}

.product-side-card{position:sticky;top:96px;display:block;padding:0;background:transparent !important;border:0 !important;box-shadow:none !important;backdrop-filter:none !important;overflow:visible}
.product-side-stack{display:flex;flex-direction:column;gap:18px}
.product-purchase-card,.product-info-card,.product-actions-card{position:relative;overflow:hidden;padding:24px;border-radius:26px;background:linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(245,248,255,.98) 100%) !important;border:1px solid rgba(210,221,240,.95) !important;box-shadow:0 26px 64px rgba(8,18,40,.15),0 8px 18px rgba(124,77,255,.05) !important}
.product-purchase-card::before,.product-info-card::before,.product-actions-card::before{content:"";position:absolute;inset:-18% auto auto -10%;width:180px;height:180px;background:radial-gradient(circle,rgba(0,212,255,.11),transparent 70%);pointer-events:none}
.product-purchase-card *, .product-info-card *, .product-actions-card *{color:#15233f}
.product-purchase-card .muted,.product-info-card .muted,.product-actions-card .muted{color:#62708a !important}
.product-card-heading{margin-bottom:18px}
.product-card-heading h3{margin:10px 0 8px;color:#13213b;font-size:1.32rem}
.product-card-heading p{margin:0;max-width:34ch}
.product-meta-list{display:grid;gap:12px}
.product-meta-list li{display:grid;grid-template-columns:minmax(120px,.82fr) minmax(0,1fr);gap:16px;align-items:center;padding:15px 16px;border:1px solid rgba(216,225,240,.96);border-radius:18px;background:linear-gradient(180deg,#ffffff 0%,#f6f9ff 100%);box-shadow:0 14px 34px rgba(10,20,40,.06)}
.product-meta-list li strong{font-size:.93rem;color:#4f6180}
.product-meta-list li span{text-align:right;font-weight:700;color:#10203d;word-break:break-word}
.plan-compare-card .plan-grid{gap:14px}
.plan-compare-card .plan-card{padding:18px 18px 16px;border-radius:18px;background:linear-gradient(180deg,#ffffff 0%,#f6f8ff 100%);border:1px solid rgba(214,223,240,.96);box-shadow:0 12px 30px rgba(10,20,40,.05)}
.plan-compare-card .plan-card strong,.plan-compare-card .plan-price{color:#11213d}
.plan-compare-card .plan-card ul{color:#5f708a}
.product-actions-card .cta-stack{gap:10px}
.product-actions-card .button,.product-purchase-card .button{width:100%}
.product-guest-note{margin-top:16px;padding:16px 18px;border-radius:18px;background:linear-gradient(180deg,#14213c 0%,#101a31 100%);border:1px solid rgba(124,77,255,.18)}
.purchase-actions .button--compact{min-height:42px;padding:9px 14px !important}

@media (max-width: 1024px){
  .product-side-card{position:static;top:auto}
  .cart-summary-card,.checkout-summary-panel{position:static;top:auto}
}
@media (max-width: 768px){
  .brand-tagline{display:none}
  .product-purchase-card,.product-info-card,.product-actions-card{padding:20px;border-radius:22px}
  .product-meta-list li{grid-template-columns:1fr;gap:8px}
  .product-meta-list li span{text-align:left}
}

.hero-grid{grid-template-columns:minmax(0,2.35fr) minmax(320px,.9fr);align-items:center;column-gap:28px;}
.hero-copy{max-width:none;padding-right:14px;}
.hero-copy p{max-width:68ch}
.hero h1{max-width:30ch;}
.hero-panel{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));align-items:stretch;}
.hero-panel .metric-card{min-height:164px;}
@media (max-width: 1160px){
  .hero-grid{grid-template-columns:minmax(0,1.75fr) minmax(290px,.95fr);}
  .hero-panel{grid-template-columns:1fr;}
}
@media (max-width: 1024px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-copy{padding-right:0;}
  .hero-panel{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width: 768px){
  .hero-panel{grid-template-columns:1fr;}
  .hero h1{max-width:none;}
}
.resource-premium-note{padding:16px;border-radius:18px;background:linear-gradient(180deg,#f8fbff 0%,#f2f7ff 100%);border:1px solid rgba(210,221,240,.95);color:#1e2d49;box-shadow:0 12px 28px rgba(15,23,42,.06);}
.resource-premium-note strong{display:block;margin-bottom:8px;color:#12223d;}
.resource-premium-note p{margin:0;color:#5d6c86;}


/* Phase 56 hero, product CTA, auth button refinements */
.hero-grid{grid-template-columns:minmax(0,1.75fr) minmax(420px,.95fr);align-items:center;column-gap:34px;}
.hero-copy{padding-right:26px;}
.hero h1{max-width:18ch;}
.hero-copy p{max-width:74ch;}
.hero-panel{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;align-items:stretch;}
.hero-panel .metric-card{min-height:170px;}
.hero-panel .metric-card:nth-child(3){grid-column:1 / -1;}
@media (max-width: 1160px){
  .hero-grid{grid-template-columns:minmax(0,1.45fr) minmax(360px,.95fr);}
  .hero h1{max-width:20ch;}
}
@media (max-width: 1024px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-copy{padding-right:0;}
  .hero-panel{grid-template-columns:repeat(2,minmax(0,1fr));}
  .hero-panel .metric-card:nth-child(3){grid-column:1 / -1;}
}
@media (max-width: 640px){
  .hero-panel{grid-template-columns:1fr;}
  .hero-panel .metric-card:nth-child(3){grid-column:auto;}
}

.product-purchase-card .purchase-actions{display:flex;flex-wrap:wrap;gap:10px;align-items:center;}
.product-purchase-card .purchase-actions .button{width:auto;flex:0 0 auto;min-width:0;}
.product-purchase-card .purchase-actions .purchase-primary,
.product-purchase-card .purchase-actions .purchase-secondary,
.product-purchase-card .purchase-actions .purchase-ghost{flex:1 1 0;}
@media (max-width: 768px){
  .product-purchase-card .purchase-actions .button{width:100%;flex:1 1 100%;}
}

.payment-method-inline{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.payment-method-inline strong{white-space:nowrap;}
.payment-method-inline__list{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
.payment-method-chip{display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border-radius:999px;background:#f4f7ff;border:1px solid rgba(195,207,230,.95);font-size:.82rem;font-weight:700;color:#21314c;line-height:1;}
.payment-method-chip__icon{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:999px;background:linear-gradient(135deg,rgba(124,77,255,.14),rgba(0,212,255,.14));font-size:.76rem;}

.google-button{display:flex;align-items:center;gap:12px;width:100%;padding:10px 14px;border-radius:12px;background:#4f8ff7 !important;border:1px solid rgba(79,143,247,.88) !important;box-shadow:0 12px 24px rgba(79,143,247,.22);color:#fff !important;font-weight:700;text-decoration:none;}
.google-button:hover{transform:translateY(-1px);box-shadow:0 16px 28px rgba(79,143,247,.28);}
.google-button__icon{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:8px;background:#fff;color:#ea4335;font-weight:900;font-size:1.2rem;box-shadow:0 4px 10px rgba(15,23,42,.12);flex:0 0 34px;}
.google-button__label{display:inline-flex;align-items:center;justify-content:center;line-height:1.2;}



.hero-grid { grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.95fr); gap: 28px; }
.hero-copy { max-width: 860px; }
.hero-copy h1 { max-width: 14ch; }
.hero-panel { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 18px; align-self: stretch; }
.hero-panel .metric-card { min-height: 210px; }
.hero-panel .metric-card-wide { grid-column: 1 / -1; min-height: 160px; }
.purchase-pending-notice, .purchase-pending-notice * { color: #0f172a !important; }
.purchase-pending-notice .muted { color: #334155 !important; }
.profile-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
.profile-grid textarea { width:100%; min-height:120px; border:1px solid rgba(15,23,42,.14); border-radius:12px; padding:12px 14px; background:#fff; }
.profile-grid-span { grid-column:1 / -1; }
.affiliate-link-card { margin: 18px auto 24px; max-width: 760px; text-align:center; padding: 24px; border-radius: 22px; border:1px solid rgba(121,168,255,.28); background: linear-gradient(135deg, rgba(121,168,255,.14), rgba(255,255,255,.04)); box-shadow: var(--shadow); }
.affiliate-link-label { font-size:.92rem; color: var(--muted); text-transform: uppercase; letter-spacing:.08em; margin-bottom:10px; }
.affiliate-link-value { font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 800; word-break: break-all; margin-bottom: 16px; }
.affiliate-copy-button { min-width: 160px; }
.social-auth-card { margin-bottom: 18px; }
.google-button { display:inline-flex; align-items:center; gap:12px; padding:10px 18px; border-radius: 12px; background:#4285f4; color:#fff; font-weight:700; box-shadow: 0 10px 25px rgba(66,133,244,.22); }
.google-button__icon { width:36px; height:36px; border-radius:8px; background:#fff; color:#ea4335; display:inline-flex; align-items:center; justify-content:center; font-size:1.35rem; font-weight:900; }
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: none; }
  .hero-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .hero-panel { grid-template-columns: 1fr; }
  .hero-panel .metric-card-wide { grid-column: auto; }
  .profile-grid { grid-template-columns: 1fr; }
}


/* v15 refinements */
.hero .container.hero-grid{grid-template-columns:minmax(0,2.2fr) minmax(430px,.92fr) !important;align-items:center;column-gap:44px !important;}
.hero-copy{max-width:none !important;}
.hero-copy h1{max-width:16ch;}
.hero-panel{display:grid !important;grid-template-columns:repeat(2,minmax(220px,1fr)) !important;gap:18px !important;align-self:start;max-width:560px;justify-self:end;width:100%;}
.hero-panel .metric-card{min-height:170px;}
.hero-panel .metric-card.metric-card-wide,.hero-panel .metric-card:nth-child(3){grid-column:1 / -1;min-height:150px;}
.purchase-pending-notice,.purchase-pending-notice *{color:#0f172a !important;}
.affiliate-link-card{text-align:center;align-items:center;}
.affiliate-link-value{font-size:1.08rem;font-weight:700;word-break:break-all;}
.affiliate-stats-grid .stat-card strong{display:block;margin-bottom:6px;}
.affiliate-stats-grid .stat-card span{display:block;line-height:1.45;}
.affiliate-stats-grid .stat-card strong::after{content:' ';}
@media (max-width: 1180px){
  .hero .container.hero-grid{grid-template-columns:minmax(0,1.6fr) minmax(380px,.95fr) !important;column-gap:28px !important;}
}
@media (max-width: 980px){
  .hero .container.hero-grid{grid-template-columns:1fr !important;}
  .hero-panel{justify-self:stretch;max-width:none;}
}
.ideiy-admin-table-wrap{overflow-x:auto;}
.ideiy-admin-compact-table th,.ideiy-admin-compact-table td{white-space:nowrap;}
.ideiy-admin-table-wrap-coupons input[type="text"],.ideiy-admin-table-wrap-coupons input[type="number"],.ideiy-admin-table-wrap-coupons input[type="datetime-local"],.ideiy-admin-table-wrap-coupons select{max-width:110px;width:100%;}
.ideiy-admin-table-wrap-coupons td:first-child input[type="text"]{max-width:100px;}


/* v16 fixes */
.affiliate-stats-grid .stat-card{display:flex;flex-direction:column;justify-content:center;gap:10px;min-height:132px;text-align:center;}
.affiliate-stats-grid .stat-card strong{display:flex;align-items:baseline;justify-content:center;gap:8px;margin:0;font-size:2rem;line-height:1.05;white-space:nowrap;}
.affiliate-stats-grid .stat-card strong small{font-size:.92rem;font-weight:700;opacity:.88;}
.affiliate-stats-grid .stat-card span{display:block;margin:0;font-size:.98rem;line-height:1.35;word-break:normal;}
.affiliate-copy-button.is-copied{background:linear-gradient(135deg,var(--accent-2),var(--accent));}
.empty-state.card,.empty-state.card h3,.empty-state.card p{color:#172033 !important;}
.empty-state.card p{opacity:.9;}
@media (max-width: 860px){
  .affiliate-stats-grid .stat-card strong{font-size:1.7rem;}
}

.affiliate-link-value{
  width:100%;
  max-width:640px;
  margin:0 auto 16px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(121,168,255,.24);
  background:rgba(10,18,42,.42);
  color:var(--text);
  text-align:center;
}
.affiliate-stats-grid .stat-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
  min-height:132px;
  text-align:center;
}
.affiliate-stats-grid .stat-card strong{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:10px;
  margin:0;
  font-size:2rem;
  line-height:1.05;
  white-space:nowrap;
}
.affiliate-stats-grid .stat-card .stat-value{display:inline-block;}
.affiliate-stats-grid .stat-card .stat-unit{
  display:inline-block;
  margin-left:2px;
  font-size:.92rem;
  font-weight:700;
  opacity:.88;
}
.affiliate-stats-grid .stat-card .stat-label{
  display:block;
  margin:0;
  font-size:.98rem;
  line-height:1.35;
  word-break:normal;
}
.empty-state.card,
.empty-state.card h3,
.empty-state.card p{
  color:#1e293b;
}
.empty-state.card p{opacity:.9;}


/* v18 affiliate + auth fixes */
.affiliate-stats-grid{gap:14px;}
.affiliate-stats-grid .stat-card{padding:16px 14px;min-height:118px;border-radius:18px;}
.affiliate-stats-grid .stat-card strong{display:flex;align-items:baseline;justify-content:center;gap:6px;flex-wrap:nowrap;font-size:1.6rem;line-height:1.05;}
.affiliate-stats-grid .stat-card .stat-value,.affiliate-stats-grid .stat-card .stat-unit{display:inline-block;white-space:nowrap;}
.affiliate-stats-grid .stat-card .stat-unit{margin-left:0;font-size:.8rem;letter-spacing:.02em;opacity:.85;}
.affiliate-stats-grid .stat-card .stat-label{display:block;font-size:.88rem;line-height:1.3;max-width:13ch;margin:0 auto;color:#dbe4f3;word-break:normal;overflow-wrap:anywhere;}
.notifications-empty,.notifications-empty *,.empty-state,.empty-state *{color:#172033 !important;}
.affiliate-copy-button{cursor:pointer;}
.affiliate-copy-button.is-copied{background:linear-gradient(135deg,var(--accent-2),var(--accent));}
@media (max-width: 1200px){
  .affiliate-stats-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width: 860px){
  .affiliate-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .affiliate-stats-grid .stat-card strong{font-size:1.45rem;}
}
@media (max-width: 560px){
  .affiliate-stats-grid{grid-template-columns:1fr;}
}


.affiliate-history-grid {
  margin-top: 24px;
}
.affiliate-stats-grid.stats-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .affiliate-stats-grid.stats-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .affiliate-stats-grid.stats-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* v27 mobile header language + auth row */
.label-mobile{display:none;}
.label-desktop{display:inline;}
@media (max-width: 768px){
  .nav-shell{grid-template-columns:1fr;row-gap:12px;padding:14px 0;}
  .brand-area{max-width:none;}
  .primary-nav{order:2;}
  .header-actions{order:3;width:100%;display:flex;align-items:center;justify-content:flex-start;gap:8px;flex-wrap:nowrap;overflow-x:auto;padding-bottom:2px;scrollbar-width:none;}
  .header-actions::-webkit-scrollbar{display:none;}
  .header-actions--guest > * + *{position:relative;padding-left:14px;}
  .header-actions--guest > * + *::before{content:'-';position:absolute;left:3px;top:50%;transform:translateY(-50%);color:rgba(255,255,255,.68);font-weight:700;}
  .header-actions .lang-switcher{flex:0 0 auto;gap:4px;padding:2px 4px;background:rgba(124,77,255,.10);}
  .header-actions .lang-link{min-width:32px;height:28px;padding:0 8px;font-size:11px;}
  .header-actions--guest .button{flex:0 0 auto;padding:0;border:0 !important;background:transparent !important;box-shadow:none !important;min-height:auto;border-radius:0;color:var(--text) !important;font-size:14px;font-weight:700;line-height:1.2;white-space:nowrap;}
  .header-actions--guest .button.ghost{color:var(--text) !important;}
  .header-actions--guest .header-action-button:hover,.header-actions--guest .header-action-button:focus{transform:none;opacity:.92;}
  .label-desktop{display:none;}
  .label-mobile{display:inline;}
}

/* v28 mobile UX tightening */
html,body{
  max-width:100%;
  overflow-x:clip;
}
body{
  overflow-wrap:anywhere;
}
.site-main,.site-footer,.site-header,.container,.card,.product-card,.product-side-card,.auth-card,.content-card,.table-card{
  max-width:100%;
}
img,svg,video,iframe,canvas,table,pre,code,.account-table,.product-card__thumb img,.entry-content img{
  max-width:100%;
}
pre,code,.account-table,.table-card,.ideiy-admin-table-wrap,.purchase-table-wrap,.prose-content table{
  overflow-x:auto;
}
@media (max-width: 768px){
  .container{width:min(100% - 28px, 100%);}
  .site-main{overflow-x:hidden;}
  .brand-area{min-width:0;}
  .brand-link{font-size:1.05rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;display:block;}
  .menu-list{display:none;}
  .hero{padding:26px 0 8px;}
  .hero .container.hero-grid{grid-template-columns:1fr !important;gap:14px !important;}
  .hero-copy{padding-right:0 !important;}
  .hero-copy h1,.hero h1{max-width:none !important;font-size:clamp(26px,7.6vw,36px) !important;line-height:1.08;}
  .hero-copy p,.hero p{font-size:.96rem;max-width:none;}
  .hero-panel,.categories-strip,.section-gap:nth-of-type(4){display:none !important;}
  .hero-actions{display:grid !important;grid-template-columns:1fr !important;gap:10px !important;}
  .hero-actions .button{width:100%;justify-content:center;}
  .hero-actions .button.ghost{display:none !important;}
  .section-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;}
  .section-heading .hero-copy h2{font-size:1.45rem;line-height:1.15;}
  .content-grid,.content-grid.three-col,.dashboard-shell,.account-layout,.auth-shell,.archive-shell,.product-hero-shell,.doc-layout,.footer-grid{grid-template-columns:1fr !important;gap:14px;}
  .product-card,.card,.feature-box,.metric-card,.auth-card,.content-card,.account-sidebar,.product-purchase-card,.product-info-card,.product-actions-card,.cart-panel--premium,.checkout-panel--premium,.cart-summary-card{padding:18px !important;border-radius:20px;}
  .product-card__meta,.badge-row,.tab-row,.button-row{gap:8px;}
  .button,.auth-card input[type=submit]{min-height:46px;padding:12px 16px;font-size:.96rem;}
  .product-side-card{position:static;top:auto;}
  .purchase-panel__header,.purchase-summary,.checkout-summary,.cart-summary-card{margin-top:0 !important;}
  .stats-grid,.affiliate-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:10px;}
  .affiliate-stats-grid .stat-card:last-child,
  .stats-grid .stat-card:last-child{grid-column:1 / -1;}
  .account-menu{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
  .account-menu a{min-width:0;}
  .page-id .entry-content,
  .entry-content,
  .prose-content{overflow-wrap:anywhere;word-break:break-word;}
}
@media (max-width: 480px){
  .container{width:min(100% - 22px, 100%);}
  .header-actions{gap:6px !important;}
  .header-actions .lang-link{min-width:30px;}
  .hero-copy h1,.hero h1{font-size:clamp(24px,8.5vw,32px) !important;}
  .content-grid,.stats-grid,.affiliate-stats-grid,.account-menu{grid-template-columns:1fr !important;}
  .product-card__meta{display:flex;flex-wrap:wrap;}
}

/* Phase 53 Design Settings Expansion */
.hero h1 { font-size: clamp(2.2rem, 4vw, var(--hero-title-size)); }
.section-gap { padding: var(--section-spacing, 34px) 0; }
.content-grid { grid-template-columns: repeat(var(--product-columns, 3), minmax(0, 1fr)); }
body.ideiy-header-static-solid .site-header { box-shadow: 0 10px 35px rgba(0,0,0,.18); }
body.ideiy-header-minimal .nav-shell { padding-top: 24px; }
body.ideiy-buttons-rounded .button { border-radius: 18px; }
body.ideiy-cards-solid .product-thumb { border-radius: calc(var(--radius) - 4px) calc(var(--radius) - 4px) 0 0; }
@media (max-width: 1024px) { .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .content-grid { grid-template-columns: 1fr; } }


/* Phase 55 Customer Panel and Product Detail UX */
.customer-health-card{background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(247,250,255,.9));border:1px solid rgba(15,23,42,.08)}
.health-score{font-size:1.35rem;padding:.45rem .7rem;border-radius:999px;background:rgba(15,23,42,.06)}
.health-progress{height:10px;background:rgba(15,23,42,.08);border-radius:999px;overflow:hidden;margin:10px 0 14px}.health-progress span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--accent),var(--accent-2))}
.health-check-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.health-check{display:flex;align-items:center;gap:8px;padding:11px 12px;border-radius:16px;background:rgba(255,255,255,.72);border:1px solid rgba(15,23,42,.08);font-weight:700;text-decoration:none}.health-check__dot{width:10px;height:10px;border-radius:50%;background:#f59e0b}.health-check.is-complete .health-check__dot{background:#10b981}.quick-access-grid--icons .quick-link-card:before{content:'↗';display:inline-grid;place-items:center;width:30px;height:30px;border-radius:10px;background:rgba(15,23,42,.06);margin-bottom:8px}.product-hero-modern{padding:8px 0 14px}.product-hero-facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:18px}.product-hero-facts span{display:flex;flex-direction:column;gap:3px;padding:12px 14px;border:1px solid rgba(15,23,42,.08);border-radius:18px;background:rgba(255,255,255,.78);box-shadow:0 12px 35px rgba(15,23,42,.06)}.product-hero-facts strong{font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted)}.product-tabs--sticky{position:sticky;top:84px;z-index:5;background:rgba(255,255,255,.82);backdrop-filter:blur(14px);border:1px solid rgba(15,23,42,.08);border-radius:999px;padding:7px;box-shadow:0 10px 30px rgba(15,23,42,.07)}.product-tabs--sticky a{border-radius:999px}.support-ready-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.support-ready-grid span{padding:12px 14px;border-radius:16px;background:rgba(15,23,42,.05);font-weight:700}
@media(max-width:900px){.health-check-grid,.product-hero-facts{grid-template-columns:repeat(2,minmax(0,1fr))}.product-tabs--sticky{position:static;border-radius:20px}.support-ready-grid{grid-template-columns:1fr}}
@media(max-width:520px){.health-check-grid,.product-hero-facts{grid-template-columns:1fr}}

/* v5.5.1 product archive and single product readability polish */
.product-card--premium{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  border-radius:28px;
  background:linear-gradient(180deg,#ffffff 0%,#f7f9ff 100%) !important;
  border:1px solid rgba(205,216,238,.95) !important;
  box-shadow:0 24px 70px rgba(9,20,44,.14),0 8px 18px rgba(106,92,255,.06) !important;
  color:#13213b !important;
  isolation:isolate;
}
.product-card--premium::before{
  content:"";
  position:absolute;
  inset:-90px -70px auto auto;
  width:190px;
  height:190px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(106,92,255,.16),rgba(0,212,255,.08),transparent 68%);
  pointer-events:none;
  z-index:-1;
}
.product-card--premium:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 86px rgba(9,20,44,.2),0 10px 24px rgba(106,92,255,.08) !important;
}
.product-card--premium .product-card__thumb{
  display:block;
  aspect-ratio:16/9;
  overflow:hidden;
  margin:0;
  background:linear-gradient(135deg,#eef4ff,#f9fbff);
  border-bottom:1px solid rgba(214,223,240,.88);
}
.product-card--premium .product-card__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.product-card--premium:hover .product-card__thumb img{transform:scale(1.035);}
.product-card--premium .product-card__placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#6a5cff 0%,#00d4ff 100%);
}
.product-card--premium .product-card__placeholder span{
  width:68px;
  height:68px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:2rem;
  font-weight:900;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.22);
}
.product-card--premium .product-card__content{
  display:flex;
  flex-direction:column;
  gap:15px;
  flex:1;
  padding:22px;
}
.product-card__topline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.product-type-chip,
.product-status-dot{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:7px 11px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  line-height:1;
}
.product-type-chip{background:#eef3ff;color:#3442a3;border:1px solid rgba(106,92,255,.16);}
.product-status-dot{background:#ecfdf5;color:#047857;border:1px solid rgba(16,185,129,.18);}
.product-status-dot::before{content:"";width:7px;height:7px;border-radius:999px;background:currentColor;margin-right:7px;box-shadow:0 0 0 3px rgba(16,185,129,.12);}
.product-card__title{margin:0 !important;font-size:1.24rem;line-height:1.25;color:#101f3b !important;}
.product-card__title a{color:#101f3b !important;text-decoration:none;}
.product-card__excerpt{margin:0;color:#66738d !important;font-size:.96rem;line-height:1.58;}
.product-card__specs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.product-card__specs span{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
  padding:12px;
  border-radius:16px;
  background:#f4f7ff;
  border:1px solid rgba(210,221,240,.92);
  color:#17233d;
  font-size:.9rem;
}
.product-card__specs strong{font-size:.74rem;text-transform:uppercase;letter-spacing:.06em;color:#71809a;}
.product-card--premium .product-card__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:auto;
  padding-top:4px;
}
.product-card__price{display:flex;flex-direction:column;gap:3px;min-width:0;}
.product-card__price span{font-size:.76rem;text-transform:uppercase;letter-spacing:.06em;color:#71809a;font-weight:800;}
.product-card__price strong{font-size:1.05rem;color:#111f39;white-space:nowrap;}
.product-card__button{min-height:42px;padding:10px 15px !important;white-space:nowrap;box-shadow:0 12px 26px rgba(106,92,255,.22) !important;}
.archive-shell .filter-panel.card{
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%) !important;
  color:#14223d !important;
  border:1px solid rgba(210,221,240,.95) !important;
  box-shadow:0 18px 50px rgba(9,20,44,.1) !important;
}
.archive-shell .filter-panel.card p,
.archive-shell .simple-list li{color:#64728b !important;}
.archive-shell .section-heading h1,
.archive-shell .section-heading h2{color:#12213d !important;}
.archive-shell .section-heading .eyebrow{color:#4e46d8 !important;}
.product-hero-modern{
  background:linear-gradient(135deg,#101a33 0%,#18264a 52%,#243162 100%) !important;
  color:#f8fbff !important;
  border:1px solid rgba(255,255,255,.12) !important;
  box-shadow:0 28px 80px rgba(8,18,40,.24) !important;
}
.product-hero-modern h1,
.product-hero-modern strong,
.product-hero-modern .badge{color:#ffffff !important;}
.product-hero-modern .muted,
.product-hero-modern p{color:#d9e4ff !important;}
.product-hero-facts span{background:rgba(255,255,255,.08) !important;border:1px solid rgba(255,255,255,.14) !important;color:#f8fbff !important;}
.product-hero-facts strong{color:#9debdc !important;}
.single-product .panel,
.product-content-card,
.support-ready-panel,
.product-info-card,
.plan-compare-card,
.product-actions-card,
.product-purchase-card{
  background:linear-gradient(180deg,#ffffff 0%,#f7f9ff 100%) !important;
  color:#14223d !important;
  border:1px solid rgba(210,221,240,.96) !important;
  box-shadow:0 22px 60px rgba(9,20,44,.12),0 8px 18px rgba(106,92,255,.05) !important;
}
.single-product .panel h1,
.single-product .panel h2,
.single-product .panel h3,
.single-product .panel h4,
.product-content-card h1,
.product-content-card h2,
.product-content-card h3,
.product-card-heading h3{color:#10203d !important;}
.single-product .panel p,
.single-product .panel li,
.product-content-card,
.product-content-card p,
.product-content-card li,
.product-info-card li,
.plan-compare-card li,
.product-actions-card p{color:#4f5f79 !important;}
.product-content-card a:not(.button),
.single-product .panel a:not(.button){color:#4f46e5 !important;font-weight:700;}
.product-card-heading .premium-kicker,
.single-product .premium-kicker{color:#4f46e5 !important;font-weight:900;letter-spacing:.08em;text-transform:uppercase;}
.product-meta-list li{
  background:linear-gradient(180deg,#ffffff 0%,#f4f7ff 100%) !important;
  border:1px solid rgba(210,221,240,.96) !important;
  color:#14223d !important;
}
.product-meta-list li strong{color:#5b6b85 !important;}
.product-meta-list li span{color:#10203d !important;}
.purchase-plan-card,
.plan-compare-card .plan-card{
  background:#f7f9ff !important;
  border:1px solid rgba(210,221,240,.96) !important;
  color:#14223d !important;
}
.purchase-plan-card strong,
.purchase-plan-card span,
.plan-compare-card .plan-card strong,
.plan-compare-card .plan-card span{color:#14223d !important;}
.product-purchase-card .muted,
.purchase-plan-card .muted{color:#64728b !important;}
.product-guest-note{
  background:linear-gradient(180deg,#eef4ff 0%,#f8fbff 100%) !important;
  border:1px solid rgba(106,92,255,.16) !important;
  color:#14223d !important;
}
.product-guest-note strong{color:#10203d !important;}
.product-guest-note p{color:#5b6b85 !important;}
.support-ready-grid span{
  background:#f4f7ff !important;
  color:#24314a !important;
  border:1px solid rgba(210,221,240,.96) !important;
}
.product-tabs--sticky{
  background:rgba(246,248,255,.84) !important;
  backdrop-filter:blur(14px);
  padding:10px;
  border:1px solid rgba(210,221,240,.75);
  border-radius:999px;
  box-shadow:0 18px 44px rgba(9,20,44,.08);
}
.product-tabs--sticky a{background:#fff !important;color:#34415a !important;border:1px solid rgba(210,221,240,.95) !important;}
.product-tabs--sticky a:hover{background:#eef3ff !important;color:#4f46e5 !important;}
@media (max-width: 860px){
  .product-card--premium .product-card__footer{align-items:stretch;flex-direction:column;}
  .product-card__button{width:100%;}
  .product-card__specs{grid-template-columns:1fr;}
  .product-tabs--sticky{border-radius:22px;}
}

/* v5.6.0 Ultimate public UI refresh: homepage, archive, product detail and global polish */
:root{
  --ultimate-bg:#070b16;
  --ultimate-surface:rgba(15,23,42,.78);
  --ultimate-surface-2:rgba(255,255,255,.06);
  --ultimate-card:#ffffff;
  --ultimate-ink:#111827;
  --ultimate-ink-2:#334155;
  --ultimate-soft:#64748b;
  --ultimate-border:rgba(148,163,184,.2);
  --ultimate-glow:0 32px 90px rgba(2,8,23,.38);
  --ultimate-soft-shadow:0 24px 70px rgba(15,23,42,.13);
  --ultimate-radius:28px;
}
body{
  background:
    radial-gradient(circle at 8% 0%, rgba(124,77,255,.24), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(0,212,255,.18), transparent 30%),
    linear-gradient(180deg,#070b16 0%,#0b1020 42%,#0f172a 100%) !important;
  color:#eef4ff;
}
.site-main{overflow:hidden;}
.site-header{
  background:rgba(7,11,22,.78) !important;
  border-bottom:1px solid rgba(255,255,255,.09) !important;
  box-shadow:0 18px 60px rgba(0,0,0,.22) !important;
}
.brand-link{font-size:1.2rem;letter-spacing:-.02em;background:linear-gradient(90deg,#fff,#9de8ff);-webkit-background-clip:text;background-clip:text;color:transparent;}
.menu-list a{opacity:.86;font-weight:700;font-size:.94rem;}
.menu-list a:hover{opacity:1;color:#9de8ff;}
.button,
.auth-card input[type=submit]{
  min-height:46px;border-radius:999px !important;padding:12px 20px !important;
  background:linear-gradient(135deg,#7c4dff 0%,#00d4ff 100%) !important;
  color:#fff !important;border:0 !important;font-weight:800;letter-spacing:-.01em;
  box-shadow:0 16px 38px rgba(0,119,255,.28) !important;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button:hover{transform:translateY(-2px);filter:saturate(1.08);box-shadow:0 22px 48px rgba(0,119,255,.34) !important;}
.button.ghost,.button.secondary,.button-secondary{
  background:rgba(255,255,255,.08) !important;color:#f8fbff !important;border:1px solid rgba(255,255,255,.16) !important;box-shadow:none !important;
}
.card,.panel,.feature-box,.metric-card{
  border:1px solid rgba(255,255,255,.12) !important;
  background:linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035)) !important;
  box-shadow:var(--ultimate-glow) !important;
  backdrop-filter:blur(18px);
}
.hero-ultimate{padding:92px 0 48px;position:relative;}
.hero-ultimate::before{content:"";position:absolute;inset:-180px -120px auto auto;width:540px;height:540px;background:radial-gradient(circle,rgba(0,212,255,.22),transparent 68%);filter:blur(12px);pointer-events:none;}
.hero-grid--ultimate{grid-template-columns:minmax(0,1.25fr) minmax(360px,.8fr) !important;gap:44px !important;}
.hero-copy .eyebrow,.premium-kicker{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(0,212,255,.1);border:1px solid rgba(0,212,255,.18);color:#9de8ff;font-size:.76rem;font-weight:900;letter-spacing:.09em;text-transform:uppercase;}
.hero-copy h1,.hero-ultimate h1{font-size:clamp(2.9rem,5.2vw,5.9rem) !important;line-height:.94 !important;letter-spacing:-.075em !important;max-width:13ch !important;margin:18px 0 22px !important;}
.hero-copy p{font-size:1.14rem !important;line-height:1.78;color:#c8d5ee !important;max-width:68ch !important;}
.hero-actions{gap:12px;margin-top:28px;}
.hero-panel--ultimate{display:grid !important;grid-template-columns:1fr !important;gap:16px !important;}
.hero-panel--ultimate .metric-card{min-height:124px !important;border-radius:26px !important;padding:24px !important;position:relative;overflow:hidden;}
.hero-panel--ultimate .metric-card::after{content:"";position:absolute;right:-42px;top:-42px;width:150px;height:150px;background:radial-gradient(circle,rgba(124,77,255,.24),transparent 70%);}
.metric-card strong{font-size:2.25rem;color:#fff;letter-spacing:-.04em;}
.metric-card span{color:#cbd5e1 !important;}
.section-heading--ultimate{align-items:end;margin-bottom:28px;}
.section-heading--ultimate h2{font-size:clamp(2rem,3vw,3.5rem);line-height:1.04;letter-spacing:-.045em;margin:8px 0 0;}
.home-products-ultimate{padding-top:54px;}
.product-grid-ultimate{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:26px !important;align-items:stretch;}
.product-card--premium{
  position:relative;display:flex !important;flex-direction:column;min-height:100%;overflow:hidden;
  padding:0 !important;border-radius:30px !important;background:linear-gradient(180deg,#ffffff 0%,#f5f8ff 100%) !important;
  border:1px solid rgba(218,226,241,.95) !important;box-shadow:0 26px 70px rgba(3,10,30,.18) !important;
  color:#111827 !important;transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card--premium:hover{transform:translateY(-8px) !important;box-shadow:0 34px 92px rgba(0,0,0,.26) !important;border-color:rgba(0,212,255,.42) !important;}
.product-card--premium::before{content:"";position:absolute;inset:0 0 auto 0;height:5px;background:linear-gradient(90deg,#7c4dff,#00d4ff,#48f5b4);}
.product-card__thumb{height:190px;display:flex;align-items:center;justify-content:center;padding:22px;background:radial-gradient(circle at 30% 0%,rgba(124,77,255,.22),transparent 38%),linear-gradient(135deg,#0b1020,#172554);overflow:hidden;}
.product-card__thumb img{width:100%;height:100%;object-fit:cover;border-radius:22px;box-shadow:0 18px 36px rgba(0,0,0,.28);}
.product-card__placeholder{width:88px;height:88px;border-radius:28px;background:linear-gradient(135deg,#7c4dff,#00d4ff);display:flex;align-items:center;justify-content:center;color:#fff;font-size:2.7rem;font-weight:900;box-shadow:0 22px 42px rgba(0,119,255,.28);}
.product-card__content{display:flex;flex-direction:column;gap:14px;flex:1;padding:24px !important;color:#111827 !important;}
.product-card__topline{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.product-type-chip,.product-status-dot{display:inline-flex;align-items:center;min-height:28px;padding:6px 10px;border-radius:999px;font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;line-height:1;color:#172033 !important;}
.product-type-chip{background:#eef4ff;border:1px solid #dbe6ff;}
.product-status-dot{background:#ecfdf5;border:1px solid #bbf7d0;color:#047857 !important;}
.product-card__title{margin:0 !important;font-size:1.35rem !important;line-height:1.18 !important;letter-spacing:-.025em;}
.product-card__title a{color:#101827 !important;}
.product-card__excerpt{margin:0;color:#526174 !important;line-height:1.65;min-height:72px;}
.product-card__specs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:auto;}
.product-card__specs span{display:flex;flex-direction:column;gap:3px;padding:12px;border-radius:16px;background:#f8fbff;border:1px solid #e2e8f0;color:#0f172a !important;}
.product-card__specs strong{font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;color:#64748b !important;}
.product-card__footer{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:4px;padding-top:16px;border-top:1px solid #e5edf7;}
.product-card__price span{display:block;font-size:.74rem;text-transform:uppercase;letter-spacing:.07em;color:#64748b !important;font-weight:900;}
.product-card__price strong{display:block;color:#111827 !important;font-size:1.2rem;}
.product-card__button{padding:10px 16px !important;min-height:42px;white-space:nowrap;}
.categories-strip--ultimate .feature-box,.platform-highlights-ultimate .card{border-radius:28px !important;padding:28px !important;position:relative;overflow:hidden;}
.categories-strip--ultimate .feature-box h3,.platform-highlights-ultimate .card h3{font-size:1.45rem;letter-spacing:-.02em;margin-top:0;}
.categories-strip--ultimate .feature-box p,.platform-highlights-ultimate .card p{color:#c8d5ee;}
.products-archive-ultimate{padding:62px 0 40px;}
.archive-hero-ultimate{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr);gap:24px;align-items:stretch;margin-bottom:30px;padding:34px;border-radius:34px;background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.035));border:1px solid rgba(255,255,255,.12);box-shadow:var(--ultimate-glow);position:relative;overflow:hidden;}
.archive-hero-ultimate::after{content:"";position:absolute;right:-120px;top:-150px;width:360px;height:360px;background:radial-gradient(circle,rgba(0,212,255,.24),transparent 70%);}
.archive-hero-ultimate h1{font-size:clamp(2.25rem,4vw,4.4rem);line-height:.98;letter-spacing:-.06em;margin:12px 0 16px;max-width:15ch;}
.archive-hero-ultimate p{max-width:68ch;color:#c8d5ee;font-size:1.08rem;}
.archive-hero-stats{display:grid;grid-template-columns:1fr;gap:12px;z-index:1;}
.archive-hero-stats span{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px;border-radius:22px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);color:#dce8ff;}
.archive-hero-stats strong{font-size:1.6rem;color:#fff;}
.archive-shell--ultimate{grid-template-columns:310px minmax(0,1fr) !important;gap:28px !important;align-items:start;}
.filter-panel--ultimate{border-radius:28px !important;padding:24px !important;}
.filter-panel--ultimate h2{font-size:1.6rem;line-height:1.1;margin:12px 0 10px;}
.filter-panel--ultimate p{color:#c8d5ee;margin:0 0 18px;}
.filter-chip-grid{display:grid;gap:10px;}
.filter-chip-grid span{padding:12px 14px;border-radius:16px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);font-weight:800;color:#edf6ff;}
.archive-products-area{min-width:0;}
.empty-state--ultimate{padding:38px !important;border-radius:30px !important;text-align:left;background:linear-gradient(180deg,#fff,#f7faff) !important;color:#111827 !important;}
.empty-state--ultimate h3{font-size:1.9rem;color:#111827;margin:12px 0 8px;}
.empty-state--ultimate p{color:#475569;}
.product-single-ultimate{padding:58px 0 34px;}
.product-layout-ultimate{grid-template-columns:minmax(0,1.35fr) minmax(340px,.65fr) !important;gap:30px !important;align-items:start;}
.product-hero-ultimate{position:relative;overflow:hidden;padding:34px;border-radius:34px;background:linear-gradient(135deg,rgba(255,255,255,.11),rgba(255,255,255,.04)) !important;border:1px solid rgba(255,255,255,.13);box-shadow:var(--ultimate-glow);margin-bottom:20px;}
.product-hero-ultimate::after{content:"";position:absolute;right:-130px;top:-170px;width:380px;height:380px;background:radial-gradient(circle,rgba(124,77,255,.32),transparent 70%);}
.product-hero-ultimate .badge{position:relative;z-index:1;background:rgba(16,185,129,.13);border-color:rgba(16,185,129,.28);color:#b7ffe1;font-weight:900;text-transform:uppercase;letter-spacing:.06em;}
.product-hero-ultimate h1{position:relative;z-index:1;font-size:clamp(2.3rem,4.3vw,5rem);line-height:.98;letter-spacing:-.06em;margin:18px 0;color:#fff !important;background:none !important;max-width:14ch;}
.product-hero-ultimate .muted{position:relative;z-index:1;color:#c8d5ee !important;font-size:1.08rem;max-width:74ch;}
.product-hero-facts{position:relative;z-index:1;display:grid !important;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:26px;}
.product-hero-facts span{display:flex;flex-direction:column;gap:4px;padding:16px;border-radius:20px;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.12);color:#fff !important;}
.product-hero-facts strong{font-size:.72rem;text-transform:uppercase;letter-spacing:.07em;color:#9de8ff !important;}
.product-tabs--sticky{position:sticky;top:82px;z-index:9;display:flex;gap:10px;flex-wrap:wrap;margin:18px 0 20px;padding:10px;border-radius:24px;background:rgba(7,11,22,.76);border:1px solid rgba(255,255,255,.11);backdrop-filter:blur(16px);}
.product-tabs--sticky a{padding:10px 14px;border-radius:999px;color:#d7e5ff;font-weight:800;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);}
.product-tabs--sticky a:hover{background:rgba(0,212,255,.14);color:#fff;}
.product-content-card--ultimate,.feature-panel-ultimate,.support-ready-panel{border-radius:30px !important;padding:30px !important;background:linear-gradient(180deg,#ffffff 0%,#f7faff 100%) !important;border:1px solid #dce6f4 !important;box-shadow:var(--ultimate-soft-shadow) !important;color:#111827 !important;}
.product-content-card--ultimate *,.feature-panel-ultimate *,.support-ready-panel *{color:#111827;}
.product-content-card--ultimate p,.product-content-card--ultimate li,.feature-panel-ultimate p,.feature-panel-ultimate li{color:#334155 !important;}
.product-content-card--ultimate h2,.product-content-card--ultimate h3,.feature-panel-ultimate h2{color:#0f172a !important;letter-spacing:-.025em;}
.product-content-card--ultimate hr{border:0;border-top:1px solid #e2e8f0;margin:26px 0;}
.product-content-card--ultimate ul{padding-left:22px;}
.product-side-card{top:104px !important;}
.product-purchase-card,.product-info-card,.product-actions-card{border-radius:30px !important;background:linear-gradient(180deg,#ffffff 0%,#f5f8ff 100%) !important;border:1px solid rgba(218,226,241,.95) !important;box-shadow:var(--ultimate-soft-shadow) !important;}
.product-purchase-card::before,.product-info-card::before,.product-actions-card::before{background:radial-gradient(circle,rgba(0,212,255,.16),transparent 70%) !important;}
.product-card-heading h3{font-size:1.45rem !important;letter-spacing:-.03em;}
.product-meta-list{list-style:none;margin:0;padding:0;}
.product-meta-list li{box-shadow:none !important;}
.plan-compare-card .plan-card{color:#111827 !important;}
.plan-compare-card .plan-card li{color:#475569 !important;}
.support-ready-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}
.support-ready-grid span{padding:12px 14px;border-radius:16px;background:#f8fbff;border:1px solid #e2e8f0;color:#1e293b !important;font-weight:800;}
.site-footer{background:rgba(7,11,22,.52);border-top:1px solid rgba(255,255,255,.1) !important;margin-top:56px;}
.site-footer p,.site-footer li{color:#c8d5ee;}
@media (max-width:1100px){
  .product-grid-ultimate{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .archive-shell--ultimate,.product-layout-ultimate,.hero-grid--ultimate,.archive-hero-ultimate{grid-template-columns:1fr !important;}
  .filter-panel--ultimate,.product-side-card{position:static !important;}
  .hero-copy h1,.hero-ultimate h1{max-width:16ch !important;}
}
@media (max-width:720px){
  .hero-ultimate{padding:54px 0 28px;}
  .hero-copy h1,.hero-ultimate h1,.archive-hero-ultimate h1,.product-hero-ultimate h1{font-size:clamp(2.35rem,12vw,3.35rem) !important;letter-spacing:-.055em !important;max-width:none !important;}
  .product-grid-ultimate{grid-template-columns:1fr !important;}
  .archive-hero-ultimate,.product-hero-ultimate{padding:24px;border-radius:26px;}
  .product-hero-facts{grid-template-columns:1fr 1fr;}
  .product-tabs--sticky{position:relative;top:auto;border-radius:20px;}
  .product-card__footer{align-items:stretch;flex-direction:column;}
  .product-card__button{width:100%;}
  .support-ready-grid{grid-template-columns:1fr;}
}
@media (max-width:480px){
  .product-card__specs,.product-hero-facts{grid-template-columns:1fr;}
  .nav-shell{padding:14px 0;}
}


/* v5.6.1 Professional Light SaaS UI reset
   Purpose: remove the heavy/dark experimental look from v5.6.0 and deliver a cleaner
   premium software marketplace appearance without changing theme features. */
:root{
  --bg:#f6f8fc !important;
  --panel:#ffffff !important;
  --panel-2:#f8fafc !important;
  --card:#ffffff !important;
  --text:#101828 !important;
  --muted:#667085 !important;
  --line:rgba(16,24,40,.10) !important;
  --accent:#3b5bff !important;
  --accent-2:#06b6d4 !important;
  --radius:22px !important;
  --shadow:0 18px 50px rgba(16,24,40,.08) !important;
  --container:1180px !important;
}
html,body{background:#f6f8fc !important;color:#101828 !important;}
body{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif !important;line-height:1.6 !important;}
a{color:inherit;text-decoration:none}.site-main{background:linear-gradient(180deg,#f8fbff 0%,#f6f8fc 42%,#ffffff 100%) !important;}
.container{width:min(calc(100% - 36px),1180px) !important;}
.site-header{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.88) !important;backdrop-filter:blur(18px);border-bottom:1px solid rgba(16,24,40,.08) !important;box-shadow:0 10px 30px rgba(16,24,40,.04) !important;}
.nav-shell{grid-template-columns:minmax(210px,1fr) auto auto !important;align-items:center !important;gap:18px !important;padding:14px 0 !important;}
.brand-link{display:inline-flex;align-items:center;gap:10px;color:#101828 !important;font-size:1.24rem !important;font-weight:950 !important;letter-spacing:-.03em !important;}
.brand-link:before{content:"";width:36px;height:36px;border-radius:12px;background:linear-gradient(135deg,#3b5bff,#06b6d4);box-shadow:0 12px 28px rgba(59,91,255,.24);}
.brand-tagline{margin:2px 0 0 46px !important;color:#667085 !important;font-size:.82rem !important;max-width:380px !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.menu-list{display:flex;gap:6px !important;align-items:center !important;list-style:none;margin:0;padding:5px !important;background:#f2f5fb;border:1px solid rgba(16,24,40,.07);border-radius:999px;}
.menu-list a{display:inline-flex;padding:9px 14px;border-radius:999px;color:#344054 !important;font-weight:750;font-size:.92rem;}
.menu-list a:hover,.menu-list .current-menu-item>a{background:#fff;color:#1d3cff !important;box-shadow:0 8px 22px rgba(16,24,40,.07);}
.header-actions{display:flex;gap:9px;align-items:center;justify-content:flex-end;}
.button,.auth-card input[type=submit]{display:inline-flex !important;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:12px 18px !important;border-radius:14px !important;background:linear-gradient(135deg,#3155ff,#06b6d4) !important;color:#fff !important;border:0 !important;font-weight:850 !important;letter-spacing:-.01em;box-shadow:0 14px 32px rgba(49,85,255,.22) !important;transition:transform .18s ease,box-shadow .18s ease,opacity .18s ease !important;}
.button:hover{transform:translateY(-1px);box-shadow:0 18px 42px rgba(49,85,255,.30) !important;}
.button.ghost,.button.secondary,.button-secondary{background:#fff !important;color:#253858 !important;border:1px solid rgba(16,24,40,.10) !important;box-shadow:0 10px 24px rgba(16,24,40,.06) !important;}
.button.ghost:hover,.button.secondary:hover{color:#1d3cff !important;border-color:rgba(59,91,255,.25) !important;}
.hero,.hero-ultimate{position:relative !important;margin:0 !important;padding:64px 0 44px !important;background:radial-gradient(circle at 8% 12%,rgba(59,91,255,.14),transparent 34%),radial-gradient(circle at 92% 18%,rgba(6,182,212,.16),transparent 32%),linear-gradient(180deg,#ffffff 0%,#eef5ff 100%) !important;color:#101828 !important;border-radius:0 !important;overflow:hidden;}
.hero:after,.hero-ultimate:before{content:"";position:absolute;inset:auto -120px -190px auto;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(59,91,255,.16),transparent 68%);filter:blur(8px);pointer-events:none;}
.hero-grid,.hero-grid--ultimate,.hero .container.hero-grid{display:grid !important;grid-template-columns:minmax(0,1.06fr) minmax(330px,.94fr) !important;gap:34px !important;align-items:center !important;}
.hero-copy{padding:0 !important;max-width:none !important;}.hero-copy .eyebrow,.eyebrow,.premium-kicker{display:inline-flex !important;align-items:center;gap:8px;padding:8px 12px !important;border-radius:999px;background:#eef4ff !important;border:1px solid #dbe7ff !important;color:#3155ff !important;font-size:.74rem !important;font-weight:950 !important;letter-spacing:.08em;text-transform:uppercase;}
.hero h1,.hero-copy h1,.hero-ultimate h1{max-width:760px !important;margin:18px 0 18px !important;font-size:clamp(2.55rem,5vw,5rem) !important;line-height:.98 !important;letter-spacing:-.07em !important;color:#101828 !important;background:linear-gradient(90deg,#101828,#233a73 55%,#3155ff) !important;-webkit-background-clip:text !important;background-clip:text !important;color:transparent !important;}
.hero p,.hero-copy p,.lead{max-width:680px !important;color:#526174 !important;font-size:1.08rem !important;line-height:1.75 !important;}
.hero-actions{display:flex !important;gap:12px !important;flex-wrap:wrap;margin-top:26px !important;}
.hero-panel,.hero-panel--ultimate{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:14px !important;max-width:none !important;justify-self:stretch !important;}
.metric-card,.hero-panel .metric-card{min-height:132px !important;padding:22px !important;border-radius:24px !important;background:rgba(255,255,255,.76) !important;border:1px solid rgba(16,24,40,.09) !important;box-shadow:0 20px 54px rgba(16,24,40,.08) !important;color:#101828 !important;display:flex !important;flex-direction:column;justify-content:space-between !important;}
.metric-card strong{font-size:1.55rem !important;line-height:1 !important;color:#101828 !important;}.metric-card span{color:#667085 !important;line-height:1.45 !important}.metric-card-wide,.hero-panel .metric-card:nth-child(3){grid-column:1/-1 !important;min-height:116px !important;}
.section-gap{padding:44px 0 !important}.section-heading,.section-heading--ultimate{display:flex;justify-content:space-between;align-items:flex-end;gap:18px;margin-bottom:22px !important}.section-heading h2{margin:10px 0 0 !important;color:#101828 !important;font-size:clamp(1.8rem,3vw,2.7rem) !important;line-height:1.08 !important;letter-spacing:-.045em !important;}.section-heading a{color:#3155ff !important;font-weight:850;}
.content-grid,.product-grid-ultimate{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:22px !important;align-items:stretch !important;}
.card,.feature-box,.content-card,.auth-card,.account-sidebar,.table-card,.plan-card{background:#fff !important;color:#101828 !important;border:1px solid rgba(16,24,40,.09) !important;border-radius:24px !important;box-shadow:0 18px 48px rgba(16,24,40,.07) !important;}
.card p,.feature-box p,.content-card p,.entry-content p,.muted{color:#667085 !important;}.card h1,.card h2,.card h3,.feature-box h3{color:#101828 !important;}
.product-card,.product-card--premium{position:relative !important;display:flex !important;flex-direction:column !important;overflow:hidden !important;min-height:100% !important;padding:0 !important;background:#fff !important;color:#101828 !important;border:1px solid rgba(16,24,40,.09) !important;border-radius:28px !important;box-shadow:0 18px 54px rgba(16,24,40,.08) !important;transform:none !important;isolation:isolate;}
.product-card:hover,.product-card--premium:hover{transform:translateY(-4px) !important;box-shadow:0 28px 74px rgba(16,24,40,.13) !important;}.product-card:before,.product-card--premium:before{content:"" !important;position:absolute;inset:0 0 auto 0;height:5px;background:linear-gradient(90deg,#3155ff,#06b6d4,#7c3aed);z-index:2;}
.product-card__thumb{display:grid !important;place-items:center !important;aspect-ratio:16/9 !important;margin:0 !important;padding:22px !important;background:linear-gradient(135deg,#f2f7ff,#eefbff) !important;border-bottom:1px solid rgba(16,24,40,.07) !important;overflow:hidden !important;}
.product-card__thumb img{width:100% !important;height:100% !important;object-fit:contain !important;border-radius:18px !important;box-shadow:none !important;}.product-card__placeholder{width:82px !important;height:82px !important;border-radius:26px !important;background:linear-gradient(135deg,#3155ff,#06b6d4) !important;display:grid !important;place-items:center !important;color:#fff !important;font-size:2.2rem !important;font-weight:950 !important;box-shadow:0 20px 44px rgba(49,85,255,.24) !important;}.product-card__placeholder span{background:transparent !important;color:#fff !important;width:auto !important;height:auto !important;box-shadow:none !important;}
.product-card__content{display:flex !important;flex-direction:column !important;gap:14px !important;flex:1 !important;padding:22px !important;color:#101828 !important;}.product-card__topline{display:flex !important;align-items:center !important;justify-content:space-between !important;gap:10px !important;flex-wrap:wrap !important;}.product-type-chip,.product-status-dot{display:inline-flex !important;align-items:center !important;min-height:29px !important;padding:7px 10px !important;border-radius:999px !important;font-size:.72rem !important;font-weight:950 !important;text-transform:uppercase !important;letter-spacing:.055em !important;line-height:1 !important;}.product-type-chip{background:#eef4ff !important;color:#3155ff !important;border:1px solid #dbe7ff !important;}.product-status-dot{background:#ecfdf5 !important;color:#047857 !important;border:1px solid #bbf7d0 !important;}.product-card__title{margin:0 !important;font-size:1.28rem !important;line-height:1.22 !important;letter-spacing:-.025em !important;color:#101828 !important;}.product-card__title a{color:#101828 !important;}.product-card__excerpt{margin:0 !important;color:#526174 !important;font-size:.96rem !important;line-height:1.6 !important;min-height:70px !important;}.product-card__specs{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:10px !important;margin-top:auto !important;}.product-card__specs span{display:flex !important;flex-direction:column !important;gap:4px !important;padding:11px 12px !important;border-radius:16px !important;background:#f8fafc !important;border:1px solid #e5eaf2 !important;color:#101828 !important;font-size:.9rem !important;}.product-card__specs strong{color:#667085 !important;font-size:.7rem !important;text-transform:uppercase !important;letter-spacing:.07em !important;}.product-card__footer{display:flex !important;align-items:center !important;justify-content:space-between !important;gap:12px !important;margin-top:2px !important;padding-top:15px !important;border-top:1px solid #edf1f7 !important;}.product-card__price span{display:block;color:#667085 !important;font-size:.72rem !important;font-weight:950 !important;text-transform:uppercase !important;letter-spacing:.07em !important;}.product-card__price strong{display:block;color:#101828 !important;font-size:1.1rem !important;white-space:nowrap !important;}.product-card__button{min-height:42px !important;padding:10px 15px !important;border-radius:13px !important;white-space:nowrap !important;}
.categories-strip,.categories-strip--ultimate{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:20px !important}.categories-strip .feature-box,.platform-highlights-ultimate .card{padding:26px !important;border-radius:26px !important;background:#fff !important;color:#101828 !important;}.categories-strip .feature-box p,.platform-highlights-ultimate .card p{color:#667085 !important;}
.products-archive-ultimate{padding:48px 0 !important;background:linear-gradient(180deg,#f8fbff,#fff) !important;color:#101828 !important;}.archive-hero-ultimate{display:grid !important;grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr) !important;gap:22px !important;align-items:stretch !important;margin-bottom:26px !important;padding:32px !important;border-radius:32px !important;background:linear-gradient(135deg,#ffffff,#eef5ff) !important;border:1px solid rgba(16,24,40,.09) !important;box-shadow:0 22px 60px rgba(16,24,40,.08) !important;color:#101828 !important;overflow:hidden !important;}.archive-hero-ultimate:after{background:radial-gradient(circle,rgba(6,182,212,.18),transparent 70%) !important;}.archive-hero-ultimate h1{font-size:clamp(2.1rem,3.8vw,4rem) !important;line-height:1 !important;letter-spacing:-.06em !important;margin:12px 0 14px !important;max-width:780px !important;color:#101828 !important;}.archive-hero-ultimate p{color:#526174 !important;max-width:720px !important;font-size:1.04rem !important;}.archive-hero-stats{display:grid !important;grid-template-columns:1fr !important;gap:12px !important;z-index:1 !important}.archive-hero-stats span{display:flex !important;align-items:center !important;justify-content:space-between !important;gap:16px !important;padding:16px !important;border-radius:20px !important;background:#fff !important;border:1px solid rgba(16,24,40,.08) !important;color:#667085 !important;box-shadow:0 12px 32px rgba(16,24,40,.06) !important}.archive-hero-stats strong{font-size:1.45rem !important;color:#101828 !important;}.archive-shell,.archive-shell--ultimate{display:grid !important;grid-template-columns:280px minmax(0,1fr) !important;gap:24px !important;align-items:start !important}.filter-panel,.filter-panel--ultimate{position:sticky !important;top:94px !important;padding:22px !important;border-radius:26px !important;background:#fff !important;color:#101828 !important;border:1px solid rgba(16,24,40,.09) !important;box-shadow:0 18px 48px rgba(16,24,40,.07) !important;}.filter-panel h2,.filter-panel--ultimate h2{color:#101828 !important;font-size:1.35rem !important;line-height:1.15 !important;margin:12px 0 8px !important;}.filter-panel p,.filter-panel--ultimate p{color:#667085 !important;}.filter-chip-grid{display:grid !important;gap:9px !important;}.filter-chip-grid span{padding:11px 13px !important;border-radius:14px !important;background:#f8fafc !important;border:1px solid #e5eaf2 !important;color:#344054 !important;font-weight:800 !important;}.archive-products-area{min-width:0 !important;}
.product-single-ultimate{padding:44px 0 !important;background:linear-gradient(180deg,#f8fbff,#fff) !important;color:#101828 !important;}.product-layout-ultimate{display:grid !important;grid-template-columns:minmax(0,1.28fr) minmax(330px,.72fr) !important;gap:26px !important;align-items:start !important;}.product-hero-modern,.product-hero-ultimate{position:relative !important;overflow:hidden !important;padding:32px !important;border-radius:32px !important;background:linear-gradient(135deg,#ffffff,#eef5ff) !important;border:1px solid rgba(16,24,40,.09) !important;box-shadow:0 22px 60px rgba(16,24,40,.08) !important;color:#101828 !important;margin-bottom:18px !important;}.product-hero-modern:after,.product-hero-ultimate:after{content:"";position:absolute;right:-120px;top:-160px;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(49,85,255,.15),transparent 70%);}.product-hero-modern h1,.product-hero-ultimate h1{position:relative;z-index:1;font-size:clamp(2.15rem,4vw,4.4rem) !important;line-height:1.02 !important;letter-spacing:-.06em !important;margin:16px 0 !important;max-width:920px !important;color:#101828 !important;background:linear-gradient(90deg,#101828,#233a73 60%,#3155ff) !important;-webkit-background-clip:text !important;background-clip:text !important;color:transparent !important;}.product-hero-modern .muted,.product-hero-ultimate .muted,.product-hero-modern p,.product-hero-ultimate p{position:relative;z-index:1;color:#526174 !important;font-size:1.04rem !important;}.product-hero-modern .badge,.product-hero-ultimate .badge{position:relative;z-index:1;background:#ecfdf5 !important;border:1px solid #bbf7d0 !important;color:#047857 !important;font-weight:950 !important;}.product-hero-facts{position:relative;z-index:1;display:grid !important;grid-template-columns:repeat(4,minmax(0,1fr)) !important;gap:10px !important;margin-top:22px !important;}.product-hero-facts span{display:flex !important;flex-direction:column !important;gap:4px !important;padding:13px 14px !important;border-radius:18px !important;background:#fff !important;border:1px solid #e5eaf2 !important;color:#101828 !important;box-shadow:0 12px 30px rgba(16,24,40,.06) !important;}.product-hero-facts strong{color:#667085 !important;font-size:.7rem !important;text-transform:uppercase !important;letter-spacing:.07em !important;}.product-tabs--sticky{position:sticky !important;top:82px !important;z-index:12 !important;display:flex !important;gap:8px !important;flex-wrap:wrap !important;margin:16px 0 18px !important;padding:8px !important;border-radius:18px !important;background:rgba(255,255,255,.88) !important;border:1px solid rgba(16,24,40,.09) !important;backdrop-filter:blur(16px) !important;box-shadow:0 14px 34px rgba(16,24,40,.07) !important;}.product-tabs--sticky a{padding:9px 13px !important;border-radius:13px !important;background:#f8fafc !important;border:1px solid #e5eaf2 !important;color:#344054 !important;font-weight:850 !important;}.product-tabs--sticky a:hover{background:#eef4ff !important;color:#3155ff !important;}.product-content-card,.product-content-card--ultimate,.feature-panel-ultimate,.support-ready-panel,.single-product .panel,.product-purchase-card,.product-info-card,.product-actions-card,.plan-compare-card{background:#fff !important;color:#101828 !important;border:1px solid rgba(16,24,40,.09) !important;border-radius:26px !important;box-shadow:0 18px 48px rgba(16,24,40,.07) !important;}.product-content-card,.product-content-card--ultimate,.feature-panel-ultimate,.support-ready-panel{padding:28px !important;}.product-content-card *,.product-content-card--ultimate *,.feature-panel-ultimate *,.support-ready-panel *,.single-product .panel *{color:inherit;}.product-content-card p,.product-content-card li,.feature-panel-ultimate p,.feature-panel-ultimate li,.single-product .panel p,.single-product .panel li{color:#475467 !important;}.product-content-card h1,.product-content-card h2,.product-content-card h3,.feature-panel-ultimate h2,.single-product .panel h1,.single-product .panel h2,.single-product .panel h3,.product-card-heading h3{color:#101828 !important;letter-spacing:-.03em !important;}.product-side-card{position:sticky !important;top:104px !important;}.product-purchase-card,.product-info-card,.product-actions-card,.plan-compare-card{padding:22px !important;margin-bottom:16px !important;}.product-meta-list li,.purchase-plan-card,.plan-compare-card .plan-card{background:#f8fafc !important;border:1px solid #e5eaf2 !important;color:#101828 !important;border-radius:16px !important;}.product-meta-list li strong{color:#667085 !important;}.product-meta-list li span,.purchase-plan-card strong,.purchase-plan-card span{color:#101828 !important;}.purchase-plan-card .muted,.product-purchase-card .muted{color:#667085 !important;}.support-ready-grid span{background:#f8fafc !important;color:#344054 !important;border:1px solid #e5eaf2 !important;}.site-footer{background:#101828 !important;color:#d0d5dd !important;border-top:0 !important;margin-top:52px !important;}.site-footer p,.site-footer li,.site-footer a{color:#d0d5dd !important;}.site-footer h1,.site-footer h2,.site-footer h3,.site-footer h4{color:#fff !important;}
@media(max-width:1100px){.nav-shell{grid-template-columns:1fr !important}.primary-nav,.header-actions{justify-content:flex-start}.hero-grid,.hero-grid--ultimate,.hero .container.hero-grid,.archive-hero-ultimate,.archive-shell,.archive-shell--ultimate,.product-layout-ultimate{grid-template-columns:1fr !important}.hero-panel{max-width:100% !important}.filter-panel,.filter-panel--ultimate,.product-side-card{position:static !important}.content-grid,.product-grid-ultimate{grid-template-columns:repeat(2,minmax(0,1fr)) !important}.brand-tagline{white-space:normal;}}
@media(max-width:720px){.container{width:min(calc(100% - 28px),1180px) !important}.menu-list{width:100%;overflow:auto;justify-content:flex-start;border-radius:16px}.header-actions{display:grid !important;grid-template-columns:1fr 1fr;width:100%;}.header-actions .button{width:100%;}.hero,.hero-ultimate{padding:44px 0 30px !important}.hero h1,.hero-copy h1,.hero-ultimate h1,.archive-hero-ultimate h1,.product-hero-ultimate h1,.product-hero-modern h1{font-size:clamp(2.15rem,11vw,3.1rem) !important;letter-spacing:-.055em !important}.hero-panel,.content-grid,.product-grid-ultimate,.categories-strip,.categories-strip--ultimate,.product-hero-facts{grid-template-columns:1fr !important}.section-heading{align-items:flex-start;flex-direction:column}.product-card__footer{align-items:stretch !important;flex-direction:column !important}.product-card__button{width:100% !important}.archive-hero-ultimate,.product-hero-modern,.product-hero-ultimate{padding:22px !important;border-radius:24px !important}.product-tabs--sticky{position:relative !important;top:auto !important}.product-card__specs{grid-template-columns:1fr !important}}


/* ===== Phase 56.2 Compact Professional UI Correction ===== */
:root{
  --ideiy-ui-bg:#f7f9fc;
  --ideiy-ui-surface:#ffffff;
  --ideiy-ui-text:#172033;
  --ideiy-ui-muted:#667085;
  --ideiy-ui-border:#e6ebf2;
  --ideiy-ui-primary:#3155ff;
  --ideiy-ui-primary-dark:#243dcc;
  --ideiy-ui-radius:16px;
  --ideiy-ui-shadow:0 10px 28px rgba(16,24,40,.065);
}
html{font-size:15px !important;}
body{background:var(--ideiy-ui-bg) !important;color:var(--ideiy-ui-text) !important;line-height:1.48 !important;font-size:15px !important;}
.container{width:min(calc(100% - 28px),1160px) !important;}
p{margin-top:0;}
.site-header{background:rgba(255,255,255,.94) !important;border-bottom:1px solid var(--ideiy-ui-border) !important;box-shadow:0 4px 18px rgba(16,24,40,.045) !important;backdrop-filter:blur(14px) !important;}
.nav-shell{padding:10px 0 !important;gap:16px !important;}
.brand-link{color:#101828 !important;font-size:1rem !important;font-weight:850 !important;}
.brand-tagline{color:#667085 !important;font-size:.78rem !important;margin:1px 0 0 !important;line-height:1.25 !important;}
.menu-list{gap:8px !important;align-items:center !important;}
.menu-list a,.primary-nav a{color:#344054 !important;font-size:.88rem !important;font-weight:700 !important;padding:7px 9px !important;border-radius:10px !important;}
.menu-list a:hover,.primary-nav a:hover{background:#eef4ff !important;color:var(--ideiy-ui-primary) !important;}
.header-actions{gap:7px !important;}
.button,.auth-card input[type=submit],button,input[type=submit],.product-card__button{min-height:34px !important;padding:8px 12px !important;border-radius:10px !important;font-size:.86rem !important;font-weight:800 !important;line-height:1.15 !important;box-shadow:none !important;background:var(--ideiy-ui-primary) !important;color:#fff !important;border:1px solid var(--ideiy-ui-primary) !important;}
.button:hover,button:hover,input[type=submit]:hover{background:var(--ideiy-ui-primary-dark) !important;transform:none !important;box-shadow:0 8px 18px rgba(49,85,255,.18) !important;}
.button.ghost,.button.secondary,.button-secondary{background:#fff !important;color:#243dcc !important;border:1px solid #d9e3ff !important;}
.button.ghost:hover,.button.secondary:hover{background:#eef4ff !important;}
.hero,.hero-ultimate{padding:30px 0 24px !important;background:linear-gradient(180deg,#fff,#f4f7ff) !important;border-bottom:1px solid var(--ideiy-ui-border) !important;color:#101828 !important;}
.hero:after,.hero-ultimate:before,.hero::after{display:none !important;}
.hero-grid,.hero-grid--ultimate,.hero .container.hero-grid{grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr) !important;gap:22px !important;align-items:center !important;}
.eyebrow,.premium-kicker{display:inline-flex !important;align-items:center !important;color:#3155ff !important;background:#eef4ff !important;border:1px solid #dce6ff !important;border-radius:999px !important;padding:4px 8px !important;font-size:.68rem !important;letter-spacing:.055em !important;font-weight:900 !important;text-transform:uppercase !important;}
.hero h1,.hero-copy h1,.hero-ultimate h1,.archive-hero-ultimate h1,.product-hero-modern h1,.product-hero-ultimate h1{font-size:clamp(1.75rem,3.1vw,3rem) !important;line-height:1.08 !important;letter-spacing:-.04em !important;margin:10px 0 10px !important;max-width:820px !important;color:#101828 !important;background:none !important;-webkit-background-clip:initial !important;background-clip:initial !important;}
.hero p,.hero-copy p,.lead,.archive-hero-ultimate p,.product-hero-modern p,.product-hero-ultimate p,.muted{font-size:.94rem !important;line-height:1.55 !important;color:#667085 !important;}
.hero-actions{gap:8px !important;margin-top:12px !important;}
.hero-panel,.hero-panel--ultimate{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:10px !important;}
.metric-card{min-height:auto !important;padding:14px !important;border-radius:16px !important;background:#fff !important;color:#101828 !important;border:1px solid var(--ideiy-ui-border) !important;box-shadow:var(--ideiy-ui-shadow) !important;}
.metric-card strong{font-size:1.05rem !important;color:#101828 !important;margin-bottom:4px !important;}
.metric-card span{font-size:.82rem !important;line-height:1.35 !important;color:#667085 !important;}
.section-gap{padding:24px 0 !important;}
.section-heading,.section-heading--ultimate{margin-bottom:14px !important;gap:12px !important;align-items:flex-end !important;}
.section-heading h2,.section-heading--ultimate h2{font-size:clamp(1.25rem,2vw,1.75rem) !important;line-height:1.18 !important;letter-spacing:-.025em !important;margin:7px 0 0 !important;color:#101828 !important;}
.section-heading a{font-size:.86rem !important;font-weight:800 !important;color:#3155ff !important;}
.content-grid,.content-grid.three-col,.product-grid-ultimate{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:14px !important;align-items:stretch !important;}
.card,.feature-box,.content-card,.auth-card,.auth-aside,.account-sidebar,.stat-card,.table-card{padding:16px !important;border-radius:16px !important;background:#fff !important;color:#101828 !important;border:1px solid var(--ideiy-ui-border) !important;box-shadow:var(--ideiy-ui-shadow) !important;backdrop-filter:none !important;}
.card h3,.feature-box h3{font-size:1rem !important;line-height:1.25 !important;margin:0 0 7px !important;color:#101828 !important;}
.card p,.feature-box p,.entry-content p{font-size:.9rem !important;line-height:1.5 !important;color:#667085 !important;}
.categories-strip,.categories-strip--ultimate{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:14px !important;}
.categories-strip .feature-box,.platform-highlights-ultimate .card{padding:16px !important;border-radius:16px !important;}
.products-archive-ultimate{padding:24px 0 28px !important;background:#f7f9fc !important;color:#101828 !important;}
.archive-hero-ultimate{padding:20px !important;border-radius:18px !important;margin-bottom:16px !important;background:#fff !important;border:1px solid var(--ideiy-ui-border) !important;box-shadow:var(--ideiy-ui-shadow) !important;grid-template-columns:minmax(0,1.2fr) minmax(240px,.8fr) !important;gap:14px !important;}
.archive-hero-ultimate:after{display:none !important;}
.archive-hero-stats{gap:8px !important;}
.archive-hero-stats span{padding:10px 12px !important;border-radius:13px !important;background:#f8fafc !important;border:1px solid var(--ideiy-ui-border) !important;color:#667085 !important;box-shadow:none !important;font-size:.84rem !important;}
.archive-hero-stats strong{font-size:1rem !important;color:#101828 !important;}
.archive-shell,.archive-shell--ultimate{grid-template-columns:220px minmax(0,1fr) !important;gap:16px !important;}
.filter-panel,.filter-panel--ultimate{padding:14px !important;border-radius:16px !important;top:72px !important;background:#fff !important;color:#101828 !important;border:1px solid var(--ideiy-ui-border) !important;box-shadow:var(--ideiy-ui-shadow) !important;}
.filter-panel h2,.filter-panel--ultimate h2{font-size:1rem !important;margin:8px 0 6px !important;line-height:1.2 !important;color:#101828 !important;}
.filter-panel p,.filter-panel--ultimate p{font-size:.84rem !important;line-height:1.45 !important;margin:0 0 10px !important;color:#667085 !important;}
.filter-chip-grid{gap:6px !important;}
.filter-chip-grid span{padding:7px 9px !important;border-radius:10px !important;font-size:.8rem !important;font-weight:750 !important;background:#f8fafc !important;color:#344054 !important;border:1px solid #e6ebf2 !important;}
.product-card--premium,.product-card{display:flex !important;flex-direction:column !important;min-height:0 !important;border-radius:16px !important;overflow:hidden !important;background:#fff !important;color:#101828 !important;border:1px solid var(--ideiy-ui-border) !important;box-shadow:var(--ideiy-ui-shadow) !important;transition:border-color .16s ease, box-shadow .16s ease !important;}
.product-card--premium:hover,.product-card:hover{transform:none !important;border-color:#bfd0ff !important;box-shadow:0 12px 30px rgba(16,24,40,.09) !important;}
.product-card--premium::before{height:3px !important;background:linear-gradient(90deg,#3155ff,#0ea5e9) !important;}
.product-card__thumb{height:116px !important;padding:12px !important;background:linear-gradient(135deg,#f4f7ff,#eef4ff) !important;border-bottom:1px solid var(--ideiy-ui-border) !important;}
.product-card__thumb img{object-fit:contain !important;border-radius:12px !important;box-shadow:none !important;background:#fff !important;}
.product-card__placeholder{width:52px !important;height:52px !important;border-radius:15px !important;font-size:1.45rem !important;background:linear-gradient(135deg,#3155ff,#0ea5e9) !important;box-shadow:none !important;}
.product-card__content{padding:14px !important;gap:9px !important;color:#101828 !important;}
.product-card__topline{gap:6px !important;}
.product-type-chip,.product-status-dot{padding:4px 7px !important;border-radius:999px !important;font-size:.68rem !important;line-height:1.1 !important;font-weight:900 !important;}
.product-type-chip{background:#eef4ff !important;color:#243dcc !important;border:1px solid #dce6ff !important;}
.product-status-dot{background:#ecfdf5 !important;color:#047857 !important;border:1px solid #bbf7d0 !important;}
.product-card__title{font-size:1rem !important;line-height:1.25 !important;letter-spacing:-.015em !important;margin:0 !important;}
.product-card__title a{color:#101828 !important;}
.product-card__excerpt{font-size:.86rem !important;line-height:1.45 !important;color:#667085 !important;min-height:0 !important;margin:0 !important;display:-webkit-box !important;-webkit-line-clamp:2 !important;-webkit-box-orient:vertical !important;overflow:hidden !important;}
.product-card__specs{grid-template-columns:1fr 1fr !important;gap:7px !important;margin-top:2px !important;}
.product-card__specs span{padding:8px !important;border-radius:11px !important;background:#f8fafc !important;border:1px solid #e6ebf2 !important;color:#101828 !important;min-width:0 !important;font-size:.78rem !important;}
.product-card__specs strong{font-size:.62rem !important;letter-spacing:.05em !important;color:#667085 !important;margin-bottom:2px !important;}
.product-card__footer{padding-top:9px !important;margin-top:0 !important;border-top:1px solid #e6ebf2 !important;gap:8px !important;align-items:center !important;}
.product-card__price span{font-size:.62rem !important;color:#667085 !important;}
.product-card__price strong{font-size:.95rem !important;color:#101828 !important;}
.product-card__button{padding:7px 10px !important;min-height:32px !important;font-size:.78rem !important;border-radius:9px !important;white-space:normal !important;text-align:center !important;}
.product-single-ultimate{padding:24px 0 !important;background:#f7f9fc !important;}
.product-layout-ultimate{grid-template-columns:minmax(0,1fr) 300px !important;gap:16px !important;}
.product-hero-modern,.product-hero-ultimate{padding:20px !important;border-radius:18px !important;margin-bottom:14px !important;background:#fff !important;border:1px solid var(--ideiy-ui-border) !important;box-shadow:var(--ideiy-ui-shadow) !important;color:#101828 !important;}
.product-hero-modern:after,.product-hero-ultimate:after{display:none !important;}
.product-hero-modern .badge,.product-hero-ultimate .badge{font-size:.68rem !important;padding:4px 8px !important;}
.product-hero-facts{grid-template-columns:repeat(4,minmax(0,1fr)) !important;gap:7px !important;margin-top:14px !important;}
.product-hero-facts span{padding:8px !important;border-radius:11px !important;background:#f8fafc !important;border:1px solid #e6ebf2 !important;box-shadow:none !important;font-size:.8rem !important;}
.product-hero-facts strong{font-size:.62rem !important;color:#667085 !important;}
.product-tabs--sticky{top:62px !important;margin:10px 0 12px !important;padding:6px !important;border-radius:14px !important;gap:6px !important;background:rgba(255,255,255,.92) !important;box-shadow:0 8px 22px rgba(16,24,40,.06) !important;}
.product-tabs--sticky a,.tab{padding:7px 10px !important;border-radius:10px !important;font-size:.8rem !important;font-weight:800 !important;}
.product-content-card,.product-content-card--ultimate,.feature-panel-ultimate,.support-ready-panel,.single-product .panel,.product-purchase-card,.product-info-card,.product-actions-card,.plan-compare-card{padding:16px !important;border-radius:16px !important;background:#fff !important;color:#101828 !important;border:1px solid var(--ideiy-ui-border) !important;box-shadow:var(--ideiy-ui-shadow) !important;}
.product-content-card h2,.product-content-card--ultimate h2,.feature-panel-ultimate h2,.single-product .panel h2{font-size:1.25rem !important;line-height:1.25 !important;margin:0 0 10px !important;color:#101828 !important;}
.product-content-card h3,.product-content-card--ultimate h3,.feature-panel-ultimate h3,.single-product .panel h3,.product-card-heading h3{font-size:1.05rem !important;line-height:1.3 !important;color:#101828 !important;}
.product-content-card p,.product-content-card li,.feature-panel-ultimate p,.feature-panel-ultimate li,.single-product .panel p,.single-product .panel li{font-size:.9rem !important;line-height:1.55 !important;color:#475467 !important;}
.product-side-card{top:78px !important;}
.product-purchase-card,.product-info-card,.product-actions-card,.plan-compare-card{margin-bottom:12px !important;}
.product-meta-list li,.purchase-plan-card,.plan-compare-card .plan-card{padding:9px 10px !important;border-radius:12px !important;background:#f8fafc !important;}
.site-footer{margin-top:30px !important;padding:26px 0 38px !important;background:#101828 !important;color:#d0d5dd !important;}
.footer-grid{gap:18px !important;}
.site-footer h4{font-size:.95rem !important;margin:0 0 8px !important;}
.site-footer p,.site-footer li,.site-footer a{font-size:.86rem !important;line-height:1.5 !important;}
@media(max-width:1100px){
  .hero-grid,.hero-grid--ultimate,.hero .container.hero-grid,.archive-hero-ultimate,.archive-shell,.archive-shell--ultimate,.product-layout-ultimate{grid-template-columns:1fr !important;}
  .filter-panel,.filter-panel--ultimate,.product-side-card{position:static !important;}
  .content-grid,.content-grid.three-col,.product-grid-ultimate{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .hero-panel,.hero-panel--ultimate{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
}
@media(max-width:720px){
  html{font-size:14px !important;}
  .container{width:min(calc(100% - 22px),1160px) !important;}
  .nav-shell{gap:10px !important;}
  .header-actions{grid-template-columns:1fr 1fr !important;}
  .hero,.hero-ultimate{padding:22px 0 18px !important;}
  .hero h1,.hero-copy h1,.hero-ultimate h1,.archive-hero-ultimate h1,.product-hero-modern h1,.product-hero-ultimate h1{font-size:1.75rem !important;}
  .hero-panel,.hero-panel--ultimate,.content-grid,.content-grid.three-col,.product-grid-ultimate,.categories-strip,.categories-strip--ultimate,.product-hero-facts{grid-template-columns:1fr !important;}
  .section-heading{align-items:flex-start !important;flex-direction:column !important;}
  .product-card__thumb{height:96px !important;}
  .product-card__footer{align-items:stretch !important;flex-direction:column !important;}
  .product-card__button{width:100% !important;}
  .archive-hero-ultimate,.product-hero-modern,.product-hero-ultimate{padding:16px !important;border-radius:16px !important;}
  .product-tabs--sticky{position:relative !important;top:auto !important;}
}
