:root {
    --ink: #0d1633;
    --ink-soft: #35405f;
    --muted: #6c748d;
    --surface: #ffffff;
    --surface-soft: #f7f8fc;
    --surface-violet: #f4f0ff;
    --line: #e7e9f2;
    --violet: #6d43f2;
    --violet-dark: #5630d8;
    --violet-light: #ece6ff;
    --coral: #ff6d6d;
    --orange: #ff9f43;
    --blue: #4d8dff;
    --green: #42b97a;
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 8px 24px rgba(25, 31, 55, .07);
    --shadow: 0 20px 55px rgba(25, 31, 55, .12);
    --container: 1220px;
    --narrow: 820px;
    --transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { letter-spacing: -.035em; line-height: 1.12; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container-narrow { width: min(calc(100% - 40px), var(--narrow)); margin-inline: auto; }
.site-shell { overflow: clip; }
.screen-reader-text { position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.skip-link:focus { position:fixed!important;left:20px;top:20px;width:auto;height:auto;clip:auto;background:#fff;padding:12px 16px;z-index:9999;border-radius:10px;box-shadow:var(--shadow); }
.icon { display:inline-flex; align-items:center; justify-content:center; line-height:0; }
.icon svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(231,233,242,.86); transition: box-shadow var(--transition), background var(--transition); }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(20, 28, 55, .08); background: rgba(255,255,255,.95); }
.header-inner { min-height: 82px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:28px; }
.brand { display:inline-flex; align-items:center; min-width:max-content; }
.brand .custom-logo { width:auto; height:42px; }
.brand-word { color:var(--ink); font-weight:900; font-size:30px; letter-spacing:-.06em; }
.brand-word span { color:var(--violet); }
.primary-navigation { justify-self:center; }
.primary-menu { display:flex; align-items:center; gap:32px; list-style:none; margin:0; padding:0; }
.primary-menu a { display:block; position:relative; padding:29px 0 25px; color:#27304b; font-size:14px; font-weight:650; }
.primary-menu a::after { content:""; position:absolute; left:0; right:100%; bottom:19px; height:2px; border-radius:99px; background:var(--violet); transition:right var(--transition); }
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after { right:0; }
.header-actions { display:flex; align-items:center; gap:12px; }
.search-toggle, .mobile-menu-toggle { width:43px; height:43px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--line); background:#fff; color:var(--ink); border-radius:12px; transition:transform var(--transition), border-color var(--transition), color var(--transition); }
.search-toggle:hover, .mobile-menu-toggle:hover { transform:translateY(-1px); border-color:#cabdff; color:var(--violet); }
.mobile-menu-toggle { display:none; }
.menu-close-icon { display:none; }
.mobile-menu-toggle[aria-expanded="true"] .menu-open-icon { display:none; }
.mobile-menu-toggle[aria-expanded="true"] .menu-close-icon { display:inline-flex; }
.search-panel { padding:14px 0 20px; border-top:1px solid var(--line); background:#fff; }
.search-form { display:flex; gap:10px; }
.search-field { flex:1; min-width:0; border:1px solid var(--line); border-radius:13px; padding:13px 16px; color:var(--ink); outline:none; }
.search-field:focus { border-color:#aa94ff; box-shadow:0 0 0 4px rgba(109,67,242,.1); }

.button { display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:50px; padding:0 22px; border:1px solid var(--violet); border-radius:12px; background:linear-gradient(135deg,var(--violet),#7d51ff); color:#fff; font-weight:750; font-size:14px; box-shadow:0 10px 24px rgba(109,67,242,.22); transition:transform var(--transition), box-shadow var(--transition), background var(--transition); }
.button:hover { transform:translateY(-2px); box-shadow:0 14px 30px rgba(109,67,242,.3); background:linear-gradient(135deg,var(--violet-dark),var(--violet)); }
.button-small { min-height:43px; padding:0 18px; border-radius:11px; }
.button-secondary { color:var(--coral); background:#fff; border-color:#ffaaa1; box-shadow:none; }
.button-secondary:hover { color:#fff; background:var(--coral); border-color:var(--coral); box-shadow:0 14px 28px rgba(255,109,109,.2); }
.button-card { width:100%; min-height:40px; margin-top:auto; background:#fff; color:var(--violet); box-shadow:none; border-color:#b9a8ff; border-radius:10px; }
.button-card:hover { color:#fff; background:var(--violet); }
.text-link { display:inline-flex; align-items:center; gap:6px; color:var(--violet); font-weight:750; font-size:14px; }
.text-link:hover { color:var(--violet-dark); }

.hero-section { position:relative; padding:64px 0 42px; background:linear-gradient(180deg,#fff 0%,#fcfbff 100%); isolation:isolate; }
.hero-grid { display:grid; grid-template-columns:minmax(0,.95fr) minmax(520px,1.05fr); align-items:center; gap:42px; }
.hero-copy { position:relative; z-index:2; padding:24px 0 30px; }
.eyebrow { display:inline-flex; align-items:center; gap:8px; color:var(--violet); background:var(--violet-light); border:1px solid rgba(109,67,242,.1); padding:7px 11px; border-radius:999px; font-size:11px; font-weight:850; letter-spacing:.045em; text-transform:uppercase; }
.hero-copy h1 { max-width:660px; margin:18px 0 18px; font-size:clamp(50px,5.3vw,76px); font-weight:900; letter-spacing:-.065em; }
.hero-copy h1::first-letter { letter-spacing:-.08em; }
.hero-lead { max-width:610px; margin-bottom:26px; color:var(--ink-soft); font-size:18px; line-height:1.65; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; }
.hero-proof { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:30px; padding-top:24px; border-top:1px solid var(--line); }
.hero-proof > div { display:flex; align-items:flex-start; gap:9px; }
.hero-proof p { margin:0; line-height:1.25; }
.hero-proof strong { display:block; font-size:12px; }
.hero-proof small { display:block; margin-top:4px; color:var(--muted); font-size:10px; }
.proof-icon { display:inline-grid; place-items:center; flex:0 0 22px; height:22px; color:var(--violet); background:var(--violet-light); border-radius:50%; font-size:12px; font-weight:800; }
.proof-svg { flex:0 0 22px; height:22px; color:var(--violet); font-size:19px; }
.hero-visual { position:relative; min-height:560px; display:grid; place-items:center; }
.hero-visual::before { content:""; position:absolute; inset:9% 0 4% 4%; border-radius:48% 52% 18% 27% / 43% 37% 24% 38%; background:linear-gradient(135deg,#f5efff 0%,#fff3f5 52%,#f1f2ff 100%); z-index:-1; }
.hero-visual img { width:min(100%,760px); filter:drop-shadow(0 30px 35px rgba(26,31,53,.17)); animation:hero-float 6s ease-in-out infinite; }
.hero-orbit { position:absolute; border:1px solid rgba(109,67,242,.12); border-radius:50%; z-index:-1; }
.orbit-one { width:610px; height:370px; transform:rotate(-14deg); }
.orbit-two { width:530px; height:310px; transform:rotate(16deg); }
.hero-glow { position:absolute; border-radius:50%; filter:blur(70px); opacity:.35; z-index:-2; }
.hero-glow-one { width:320px; height:320px; background:#d8c9ff; right:10%; top:8%; }
.hero-glow-two { width:240px; height:240px; background:#ffd8de; right:42%; bottom:0; }
@keyframes hero-float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)} }

section { padding:72px 0; }
.section-compact { padding-top:28px; padding-bottom:58px; }
.section-soft { background:var(--surface-soft); }
.section-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:28px; }
.section-heading h2 { margin-bottom:8px; font-size:clamp(27px,3vw,38px); font-weight:880; }
.section-heading p { margin-bottom:0; color:var(--muted); }
.heading-sparkle { color:var(--violet); font-size:.65em; }

.intent-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
.intent-card { min-height:170px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; padding:22px 15px; text-align:center; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:var(--shadow-sm); transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.intent-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:#d8ceff; }
.intent-card > strong { max-width:145px; font-size:13px; line-height:1.35; }
.intent-card > .icon:last-child { font-size:18px; }
.intent-icon { width:52px; height:52px; display:grid; place-items:center; border-radius:50%; font-size:24px; }
.intent-icon.small { width:38px; height:38px; font-size:18px; }
.tone-violet { color:var(--violet); background:#eee8ff; }
.tone-blue { color:var(--blue); background:#e7f0ff; }
.tone-coral { color:var(--coral); background:#ffeded; }
.tone-orange { color:var(--orange); background:#fff1df; }
.tone-green { color:var(--green); background:#e7f8ee; }

.product-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:16px; }
.product-card { position:relative; min-width:0; display:flex; flex-direction:column; border:1px solid var(--line); border-radius:16px; background:#fff; overflow:hidden; box-shadow:0 10px 35px rgba(25,31,55,.065); transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.product-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); border-color:#d6ccff; }
.product-badge { position:absolute; top:12px; left:12px; z-index:2; padding:5px 8px; border-radius:6px; color:#fff; font-size:9px; font-weight:900; letter-spacing:.035em; text-transform:uppercase; }
.badge-1 { background:var(--violet); }.badge-2{background:var(--blue)}.badge-3{background:var(--coral)}.badge-4{background:var(--green)}
.product-image { min-height:210px; display:grid; place-items:center; padding:30px 18px 18px; overflow:hidden; background:linear-gradient(180deg,#fcfcff,#fff); }
.product-image img { display:block; width:auto; height:auto; max-width:86%; max-height:172px; object-fit:contain; object-position:var(--product-x,50%) var(--product-y,50%); transform:scale(var(--product-zoom,1)); transform-origin:var(--product-x,50%) var(--product-y,50%); transition:transform 280ms ease; }
.product-card:hover .product-image img { transform:scale(calc(var(--product-zoom,1) + .045)); }
.product-content { flex:1; display:flex; flex-direction:column; padding:15px; }
.product-content h3 { margin-bottom:8px; font-size:15px; line-height:1.22; }
.product-content p { color:var(--muted); font-size:12px; line-height:1.45; }
.product-price-row { display:flex; align-items:baseline; gap:8px; margin:3px 0 10px; }
.product-price-row del { color:var(--muted); font-size:11px; }
.product-price-row strong { font-size:18px; }
.price-updated { display:block; margin:-5px 0 10px; color:var(--muted); font-size:9px; }
.affiliate-label { display:block; margin-top:7px; color:var(--muted); text-align:center; font-size:9px; }
.price-disclaimer { margin:22px 0 0; color:var(--muted); font-size:11px; }

.gaming-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.visual-category-card { position:relative; min-height:185px; overflow:hidden; border-radius:16px; background:#151a2f; box-shadow:var(--shadow-sm); isolation:isolate; }
.visual-category-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 30%,rgba(7,10,25,.8)); z-index:1; }
.visual-category-card img { width:100%; height:185px; object-fit:cover; transition:transform 400ms ease; }
.visual-category-card:hover img { transform:scale(1.07); }
.visual-category-card > span:not(.round-arrow) { position:absolute; left:16px; bottom:16px; z-index:2; max-width:145px; color:#fff; font-size:16px; font-weight:850; line-height:1.2; }
.round-arrow { position:absolute; right:13px; bottom:13px; z-index:2; width:36px; height:36px; display:grid; place-items:center; color:var(--violet); background:#fff; border-radius:50%; }

.mobile-picks-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.mobile-pick-card { min-height:250px; display:grid; grid-template-columns:43% 57%; overflow:hidden; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:var(--shadow-sm); transition:transform var(--transition), box-shadow var(--transition); }
.mobile-pick-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.mobile-pick-image { display:grid; place-items:end center; padding:18px 6px 0; background:linear-gradient(155deg,#f4f5fb,#fff); }
.mobile-pick-image img { width:100%; height:220px; object-fit:contain; }
.mobile-pick-content { display:flex; flex-direction:column; align-items:flex-start; justify-content:center; padding:20px; }
.mobile-pick-content h3 { margin:12px 0 8px; font-size:18px; }
.mobile-pick-content p { color:var(--muted); font-size:12px; line-height:1.5; }
.mobile-pick-content > .icon:last-child { color:var(--violet); font-size:18px; }

.editorial-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.editorial-card, .post-card { overflow:hidden; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:var(--shadow-sm); transition:transform var(--transition), box-shadow var(--transition); }
.editorial-card:hover, .post-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.editorial-image, .post-card-image { display:block; overflow:hidden; background:#eceef7; }
.editorial-image img { width:100%; height:190px; object-fit:cover; transition:transform 350ms ease; }
.editorial-card:hover .editorial-image img { transform:scale(1.045); }
.editorial-content, .post-card-content { padding:18px; }
.article-tag { display:inline-flex; padding:5px 8px; border-radius:99px; color:var(--violet); background:var(--violet-light); font-size:9px; font-weight:900; letter-spacing:.04em; text-transform:uppercase; }
.editorial-content h3, .post-card-content h2 { margin:12px 0 9px; font-size:19px; }
.editorial-content p, .post-card-content p { color:var(--muted); font-size:13px; line-height:1.5; }

.offers-section { padding-bottom:46px; }
.offers-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
.offer-card { position:relative; min-width:0; display:grid; grid-template-columns:88px 1fr; align-items:center; gap:12px; padding:14px; border:1px solid var(--line); border-radius:14px; background:#fff; box-shadow:var(--shadow-sm); }
.offer-card img { width:82px; height:82px; object-fit:contain; }
.offer-card h3 { margin-bottom:7px; font-size:12px; line-height:1.25; }
.offer-card a { display:inline-flex; align-items:center; gap:4px; color:var(--violet); font-size:10px; font-weight:800; }
.discount-badge { position:absolute; top:8px; right:8px; padding:3px 6px; border-radius:5px; color:#fff; background:var(--coral); font-size:9px; font-weight:900; }
.offer-price { display:flex; flex-direction:column; margin-bottom:5px; }
.offer-price del { color:var(--muted); font-size:9px; }
.offer-price strong { font-size:17px; }
.offer-status { display:block; margin-bottom:5px; color:var(--ink); font-size:11px; font-weight:750; }

.trust-section { padding:36px 0 72px; }
.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; padding:24px; border-radius:20px; background:linear-gradient(135deg,#f1ecff,#faf9ff); }
.trust-item { display:flex; align-items:center; gap:16px; padding:10px 24px; border-right:1px solid rgba(109,67,242,.12); }
.trust-item:last-child { border-right:0; }
.trust-icon { flex:0 0 50px; height:50px; display:grid; place-items:center; color:var(--violet); background:#fff; border-radius:50%; font-size:23px; box-shadow:var(--shadow-sm); }
.trust-item h2 { margin-bottom:5px; font-size:15px; }
.trust-item p { margin:0; color:var(--muted); font-size:11px; line-height:1.45; }

.site-footer { padding:0 0 20px; background:#fff; }
.affiliate-disclosure { display:flex; align-items:flex-start; gap:12px; margin-bottom:36px; padding:15px 18px; border:1px solid #e4ddff; border-radius:14px; color:#4c4177; background:#f7f4ff; }
.affiliate-disclosure .icon { margin-top:2px; color:var(--violet); font-size:20px; }
.affiliate-disclosure p { margin:0; font-size:12px; }
.footer-grid { display:grid; grid-template-columns:1.45fr .8fr .95fr 1.35fr; gap:50px; padding:46px 0; border-top:1px solid var(--line); }
.footer-brand > p { max-width:330px; margin-top:14px; color:var(--muted); font-size:13px; }
.footer-grid h2 { margin-bottom:15px; font-size:13px; letter-spacing:-.01em; }
.footer-menu { list-style:none; margin:0; padding:0; }
.footer-menu li + li { margin-top:8px; }
.footer-menu a { color:var(--muted); font-size:12px; transition:color var(--transition); }
.footer-menu a:hover { color:var(--violet); }
.social-links { display:flex; gap:8px; margin-top:20px; }
.social-links a { width:31px; height:31px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; color:var(--ink); font-size:9px; font-weight:900; }
.newsletter-form { display:flex; gap:8px; margin-top:14px; }
.newsletter-form input { min-width:0; flex:1; border:1px solid var(--line); border-radius:10px; padding:10px 12px; font-size:12px; outline:none; }
.newsletter-form input:focus { border-color:#aa94ff; box-shadow:0 0 0 4px rgba(109,67,242,.09); }
.footer-newsletter p { color:var(--muted); font-size:12px; }
.footer-newsletter small { display:block; margin-top:9px; color:#9298a9; font-size:9px; }
.newsletter-message { margin:8px 0 0!important; color:var(--green)!important; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:18px; border-top:1px solid var(--line); color:var(--muted); font-size:10px; }
.footer-bottom p { margin:0; }

.content-page { padding:68px 0 90px; }
.page-hero { margin-bottom:38px; }
.page-hero h1, .single-header h1 { max-width:900px; margin:18px 0 12px; font-size:clamp(40px,5vw,66px); }
.archive-description, .single-meta { color:var(--muted); }
.post-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.post-card-image img { width:100%; height:230px; object-fit:cover; }
.pagination-wrap { margin-top:40px; }
.nav-links { display:flex; gap:8px; justify-content:center; }
.page-numbers { min-width:42px; height:42px; display:grid; place-items:center; border:1px solid var(--line); border-radius:10px; }
.page-numbers.current { color:#fff; background:var(--violet); border-color:var(--violet); }
.single-cover { margin-top:34px; }
.single-cover img { width:100%; max-height:620px; object-fit:cover; border-radius:24px; }
.entry-content { padding-top:46px; color:#27304b; font-size:18px; line-height:1.85; }
.entry-content h2 { margin-top:48px; font-size:34px; }
.entry-content h3 { margin-top:34px; font-size:26px; }
.entry-content a { color:var(--violet); text-decoration:underline; text-decoration-thickness:1px; text-underline-offset:3px; }
.entry-content img { border-radius:16px; }
.single-affiliate-box { display:flex; align-items:center; justify-content:space-between; gap:30px; margin-top:46px; padding:28px; border:1px solid #ded5ff; border-radius:20px; background:linear-gradient(135deg,#f5f1ff,#fff); }
.single-affiliate-box h2 { margin:10px 0 6px; font-size:24px; }
.single-affiliate-box p { margin:0; color:var(--muted); }
.empty-state { padding:70px 20px; text-align:center; border:1px dashed #cfc7ed; border-radius:24px; background:#faf9ff; }
.not-found { margin-top:40px; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity 620ms ease, transform 620ms ease; }
.reveal.is-visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:90ms; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
    .reveal { opacity:1; transform:none; }
}

@media (max-width: 1120px) {
    .primary-menu { gap:20px; }
    .hero-grid { grid-template-columns:1fr 1fr; }
    .hero-copy h1 { font-size:58px; }
    .product-grid { grid-template-columns:repeat(3,1fr); }
    .product-card:nth-child(n+4) { display:flex; }
    .intent-grid { grid-template-columns:repeat(3,1fr); }
    .offers-grid { grid-template-columns:repeat(3,1fr); }
    .footer-grid { grid-template-columns:1.2fr .8fr .9fr; }
    .footer-newsletter { grid-column:1/-1; }
}

@media (max-width: 920px) {
    .header-inner { grid-template-columns:auto auto 1fr; }
    .mobile-menu-toggle { display:inline-flex; grid-column:2; }
    .primary-navigation { position:fixed; inset:82px 0 auto; max-height:calc(100vh - 82px); overflow:auto; padding:18px 20px 28px; background:#fff; border-bottom:1px solid var(--line); box-shadow:0 22px 40px rgba(20,28,55,.12); transform:translateY(-125%); opacity:0; pointer-events:none; transition:transform 220ms ease, opacity 220ms ease; }
    .primary-navigation.is-open { transform:translateY(0); opacity:1; pointer-events:auto; }
    .primary-menu { align-items:stretch; flex-direction:column; gap:0; }
    .primary-menu a { padding:15px 4px; border-bottom:1px solid var(--line); }
    .primary-menu a::after { display:none; }
    .header-actions { justify-self:end; }
    .hero-grid { grid-template-columns:1fr; }
    .hero-copy { text-align:center; }
    .hero-copy h1, .hero-lead { margin-left:auto; margin-right:auto; }
    .hero-actions { justify-content:center; }
    .hero-proof { max-width:700px; margin-left:auto; margin-right:auto; text-align:left; }
    .hero-visual { min-height:460px; margin-top:-10px; }
    .gaming-grid { grid-template-columns:repeat(3,1fr); }
    .mobile-picks-grid, .editorial-grid { grid-template-columns:repeat(2,1fr); }
    .trust-grid { grid-template-columns:1fr; }
    .trust-item { border-right:0; border-bottom:1px solid rgba(109,67,242,.12); }
    .trust-item:last-child { border-bottom:0; }
    .post-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 680px) {
    .container, .container-narrow { width:min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height:72px; gap:10px; }
    .primary-navigation { inset:72px 0 auto; max-height:calc(100vh - 72px); }
    .brand-word { font-size:25px; }
    .header-actions .button { display:none; }
    .hero-section { padding-top:34px; }
    .hero-copy { padding-top:10px; }
    .hero-copy h1 { font-size:clamp(43px,13vw,58px); }
    .hero-lead { font-size:16px; }
    .hero-actions { flex-direction:column; }
    .hero-actions .button { width:100%; }
    .hero-proof { grid-template-columns:1fr; gap:12px; }
    .hero-visual { min-height:330px; }
    .hero-visual::before { inset:4% -8% 1%; }
    .hero-orbit { display:none; }
    section { padding:54px 0; }
    .section-heading { align-items:flex-start; flex-direction:column; margin-bottom:22px; }
    .section-heading h2 { font-size:30px; }
    .intent-grid { grid-template-columns:repeat(2,1fr); }
    .intent-card { min-height:155px; }
    .product-grid { grid-template-columns:1fr 1fr; }
    .product-image { min-height:175px; }
    .product-image img { max-width:84%; max-height:145px; }
    .gaming-grid { grid-template-columns:1fr 1fr; }
    .visual-category-card, .visual-category-card img { min-height:160px; height:160px; }
    .mobile-picks-grid, .editorial-grid, .offers-grid, .post-grid { grid-template-columns:1fr; }
    .mobile-pick-card { min-height:220px; }
    .mobile-pick-image img { height:190px; }
    .offers-grid { gap:10px; }
    .offer-card { grid-template-columns:96px 1fr; }
    .trust-grid { padding:12px; }
    .trust-item { padding:16px 8px; }
    .footer-grid { grid-template-columns:1fr 1fr; gap:34px 26px; }
    .footer-brand, .footer-newsletter { grid-column:1/-1; }
    .newsletter-form { flex-direction:column; }
    .footer-bottom { flex-direction:column; }
    .single-affiliate-box { align-items:flex-start; flex-direction:column; }
    .single-affiliate-box .button { width:100%; }
    .entry-content { font-size:17px; }
}

@media (max-width: 430px) {
    .intent-grid, .product-grid, .gaming-grid, .footer-grid { grid-template-columns:1fr; }
    .intent-card { min-height:135px; }
    .product-image { min-height:220px; }
    .product-image img { max-width:82%; max-height:180px; }
    .visual-category-card, .visual-category-card img { min-height:185px; height:185px; }
}

/* Product archive and product detail — preserve product photography without aggressive crops. */
.product-archive-hero .archive-description { max-width:760px; margin:0; }
.product-archive-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:22px; }
.product-archive-card { min-width:0; display:flex; flex-direction:column; overflow:hidden; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:var(--shadow-sm); transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition); }
.product-archive-card:hover { transform:translateY(-5px); border-color:#d8ceff; box-shadow:var(--shadow); }
.product-archive-media { position:relative; min-height:300px; display:grid; place-items:center; padding:42px 26px 26px; overflow:hidden; background:linear-gradient(180deg,#fbfbfe 0%,#f4f5fa 100%); }
.product-archive-media img { display:block; width:auto; height:auto; max-width:88%; max-height:245px; object-fit:contain; object-position:var(--product-x,50%) var(--product-y,50%); transform:scale(var(--product-zoom,1)); transform-origin:var(--product-x,50%) var(--product-y,50%); transition:transform 300ms ease; }
.product-archive-card:hover .product-archive-media img { transform:scale(calc(var(--product-zoom,1) + .035)); }
.product-archive-content { flex:1; display:flex; flex-direction:column; align-items:flex-start; padding:22px; }
.product-archive-content h2 { margin:12px 0 9px; font-size:21px; line-height:1.2; }
.product-archive-content > p { margin:0 0 18px; color:var(--muted); font-size:13px; line-height:1.58; }
.product-archive-actions { width:100%; margin-top:auto; }
.product-archive-actions .button { width:100%; }
.product-archive-actions .affiliate-label { margin-top:9px; }

.product-detail-page { padding-top:58px; }
.product-detail-hero { display:grid; grid-template-columns:minmax(0,1.04fr) minmax(380px,.96fr); align-items:center; gap:70px; }
.product-detail-media { position:relative; min-height:560px; display:grid; place-items:center; padding:64px; overflow:hidden; border:1px solid var(--line); border-radius:28px; background:linear-gradient(145deg,#fbfbfe,#f0f1f7); box-shadow:var(--shadow-sm); }
.product-detail-media img { display:block; width:auto; height:auto; max-width:92%; max-height:440px; object-fit:contain; object-position:var(--product-x,50%) var(--product-y,50%); transform:scale(var(--product-zoom,1)); transform-origin:var(--product-x,50%) var(--product-y,50%); }
.product-detail-summary h1 { margin:18px 0 20px; font-size:clamp(42px,5vw,70px); line-height:1.02; letter-spacing:-.045em; }
.product-detail-lead { max-width:620px; margin:0 0 28px; color:var(--muted); font-size:18px; line-height:1.65; }
.product-detail-price { display:flex; align-items:baseline; gap:12px; margin-bottom:20px; }
.product-detail-price del { color:var(--muted); font-size:16px; }
.product-detail-price strong { font-size:30px; }
.product-detail-cta { width:100%; max-width:470px; min-height:54px; }
.product-detail-disclosure { max-width:500px; margin:12px 0 0; color:var(--muted); font-size:11px; line-height:1.5; }
.product-detail-content { margin-top:76px; padding-top:52px; border-top:1px solid var(--line); }

@media (max-width:1100px) {
    .product-archive-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .product-detail-hero { grid-template-columns:1fr 1fr; gap:38px; }
    .product-detail-media { min-height:460px; padding:44px; }
    .product-detail-media img { max-height:360px; }
}
@media (max-width:820px) {
    .product-archive-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .product-detail-hero { grid-template-columns:1fr; }
    .product-detail-media { min-height:390px; }
    .product-detail-summary h1 { font-size:clamp(38px,9vw,58px); }
}
@media (max-width:560px) {
    .product-archive-grid { grid-template-columns:1fr; }
    .product-archive-media { min-height:280px; }
    .product-archive-media img { max-height:220px; }
    .product-detail-page { padding-top:34px; }
    .product-detail-media { min-height:330px; padding:42px 26px; border-radius:22px; }
    .product-detail-media img { max-height:265px; }
    .product-detail-content { margin-top:50px; padding-top:36px; }
}


/* Curator image presentation */
.product-card,.product-archive-card,.product-detail-entry{--product-zoom:1;--product-x:50%;--product-y:50%}
.product-card.product-fit-vertical .product-image img{max-width:70%;max-height:188px}
.product-card.product-fit-horizontal .product-image img{max-width:95%;max-height:145px}
.product-card.product-fit-compact .product-image img{max-width:68%;max-height:150px}
.product-card.product-fit-cover .product-image{padding:0;min-height:210px}
.product-card.product-fit-cover .product-image img{width:100%;height:210px;max-width:none;max-height:none;object-fit:cover}

.product-archive-card.product-fit-vertical .product-archive-media img{max-width:68%;max-height:270px}
.product-archive-card.product-fit-horizontal .product-archive-media img{max-width:94%;max-height:190px}
.product-archive-card.product-fit-compact .product-archive-media img{max-width:66%;max-height:190px}
.product-archive-card.product-fit-cover .product-archive-media{padding:0}
.product-archive-card.product-fit-cover .product-archive-media img{width:100%;height:300px;max-width:none;max-height:none;object-fit:cover}

.product-detail-entry.product-fit-vertical .product-detail-media img{max-width:70%;max-height:470px}
.product-detail-entry.product-fit-horizontal .product-detail-media img{max-width:94%;max-height:330px}
.product-detail-entry.product-fit-compact .product-detail-media img{max-width:66%;max-height:340px}
.product-detail-entry.product-fit-cover .product-detail-media{padding:0}
.product-detail-entry.product-fit-cover .product-detail-media img{width:100%;height:560px;max-width:none;max-height:none;object-fit:cover}

.sitap-editorial-highlights{margin:0 0 42px;padding:28px;border:1px solid #e3ddff;border-radius:22px;background:linear-gradient(135deg,#f8f6ff,#fff 70%);box-shadow:0 12px 34px rgba(36,24,92,.06)}
.sitap-editorial-highlights h2{margin:0 0 20px;font-size:clamp(25px,3vw,36px);line-height:1.15;letter-spacing:-.025em}
.sitap-editorial-highlight-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.sitap-editorial-highlight-grid article{padding:17px;border:1px solid #ebe8f5;border-radius:15px;background:#fff}
.sitap-editorial-highlight-grid span{display:block;margin-bottom:6px;color:#6d4aff;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.sitap-editorial-highlight-grid strong{display:block;color:#111d3f;font-size:16px;line-height:1.4}

@media(max-width:560px){
  .sitap-editorial-highlight-grid{grid-template-columns:1fr}
  .product-detail-entry.product-fit-cover .product-detail-media img{height:330px}
}

/* ============================================================
   SauronIT Pro 1.1 — professional home experience
   Dynamic product photography supplied by AutoPilot/WordPress.
   ============================================================ */
.section-kicker {
    display:block;
    margin-bottom:8px;
    color:var(--violet);
    font-size:11px;
    font-weight:900;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.hero-section-pro {
    padding:70px 0 58px;
    background:
        radial-gradient(circle at 78% 18%, rgba(109,67,242,.11), transparent 31%),
        radial-gradient(circle at 52% 94%, rgba(255,109,109,.08), transparent 27%),
        linear-gradient(180deg,#fff 0%,#faf9ff 100%);
}
.hero-grid-pro {
    grid-template-columns:minmax(0,.87fr) minmax(570px,1.13fr);
    gap:58px;
}
.hero-grid-pro .hero-copy { padding:22px 0; }
.hero-grid-pro .hero-copy h1 {
    max-width:610px;
    font-size:clamp(54px,5vw,76px);
    text-wrap:balance;
}
.hero-proof-pro { grid-template-columns:repeat(3,minmax(0,1fr)); }
.hero-proof-pro .proof-icon {
    color:var(--violet);
    font-size:14px;
}

.hero-showcase {
    position:relative;
    min-height:570px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    border-radius:34px;
    background:
        radial-gradient(circle at 20% 20%,rgba(124,83,255,.33),transparent 28%),
        radial-gradient(circle at 85% 72%,rgba(63,113,255,.27),transparent 31%),
        linear-gradient(145deg,#0a1129 0%,#15113e 54%,#0d1735 100%);
    box-shadow:0 34px 80px rgba(13,22,51,.25);
    isolation:isolate;
}
.hero-showcase::before {
    content:"";
    position:absolute;
    width:310px;
    height:310px;
    right:-90px;
    top:-110px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    box-shadow:0 0 0 38px rgba(255,255,255,.025),0 0 0 78px rgba(255,255,255,.018);
}
.hero-showcase::after {
    content:"";
    position:absolute;
    left:7%;
    right:7%;
    bottom:64px;
    height:55px;
    border-radius:50%;
    background:rgba(2,7,24,.55);
    filter:blur(22px);
    z-index:-1;
}
.hero-showcase-grid {
    position:absolute;
    inset:0;
    opacity:.18;
    background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
    background-size:42px 42px;
    mask-image:linear-gradient(to bottom,black,transparent 88%);
}
.hero-showcase-topline {
    position:absolute;
    z-index:4;
    left:28px;
    right:28px;
    top:24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    color:rgba(255,255,255,.64);
    font-size:10px;
    font-weight:750;
    letter-spacing:.03em;
}
.hero-showcase-topline > span:first-child { display:flex; align-items:center; gap:8px; color:#fff; }
.hero-showcase-topline i { width:7px; height:7px; border-radius:50%; background:#64e3a0; box-shadow:0 0 0 5px rgba(100,227,160,.12); }

.hero-product {
    position:absolute;
    z-index:2;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.15);
    border-radius:22px;
    background:rgba(255,255,255,.96);
    box-shadow:0 24px 54px rgba(0,0,0,.28);
    transition:transform 260ms ease,box-shadow 260ms ease,border-color 260ms ease;
}
.hero-product:hover { transform:translateY(-7px) rotate(0deg)!important; border-color:rgba(255,255,255,.4); box-shadow:0 32px 68px rgba(0,0,0,.35); }
.hero-product-1 { left:34px; top:90px; width:56%; height:390px; transform:rotate(-2deg); }
.hero-product-2 { right:30px; top:92px; width:35%; height:213px; transform:rotate(2.2deg); }
.hero-product-3 { right:30px; bottom:74px; width:35%; height:213px; transform:rotate(-1.4deg); }
.hero-product-media {
    flex:1;
    min-height:0;
    display:grid;
    place-items:center;
    padding:22px 18px 10px;
    background:linear-gradient(155deg,#fff,#f1f2f8);
}
.hero-product-media img {
    display:block;
    width:auto;
    height:auto;
    max-width:88%;
    max-height:100%;
    object-fit:contain;
    object-position:var(--product-x,50%) var(--product-y,50%);
    transform:scale(var(--product-zoom,1));
    transform-origin:var(--product-x,50%) var(--product-y,50%);
}
.hero-product-1 .hero-product-media { padding:30px 24px 12px; }
.hero-product-1 .hero-product-media img { max-width:90%; max-height:265px; }
.hero-product-caption {
    display:block;
    padding:13px 16px 15px;
    color:var(--ink);
    background:#fff;
}
.hero-product-caption small {
    display:block;
    margin-bottom:3px;
    color:var(--violet);
    font-size:8px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.hero-product-caption strong {
    display:block;
    overflow:hidden;
    font-size:12px;
    line-height:1.25;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.hero-product-1 .hero-product-caption strong { font-size:16px; }
.hero-showcase-note {
    position:absolute;
    z-index:4;
    left:30px;
    bottom:24px;
    display:flex;
    align-items:center;
    gap:9px;
    color:rgba(255,255,255,.7);
    font-size:10px;
}
.hero-showcase-note .icon { color:#bcaaff; font-size:17px; }

.home-signal-section { padding:0; background:#faf9ff; }
.home-signal-grid {
    position:relative;
    z-index:3;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
    box-shadow:0 18px 45px rgba(25,31,55,.08);
    transform:translateY(22px);
}
.home-signal-item {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:82px;
    padding:18px 26px;
    border-right:1px solid var(--line);
}
.home-signal-item:last-child { border-right:0; }
.home-signal-item strong { color:var(--violet); font-size:21px; letter-spacing:-.04em; }
.home-signal-item span { max-width:190px; color:var(--muted); font-size:11px; line-height:1.4; }

.intent-section { padding-top:84px; }
.intent-card {
    position:relative;
    min-height:162px;
    align-items:flex-start;
    justify-content:flex-start;
    text-align:left;
    padding:22px;
    background:linear-gradient(145deg,#fff 0%,#fcfbff 100%);
}
.intent-card > strong { max-width:160px; font-size:14px; }
.intent-card .intent-icon { width:48px; height:48px; }
.intent-arrow {
    position:absolute;
    right:18px;
    bottom:17px;
    display:grid;
    place-items:center;
    width:29px;
    height:29px;
    border:1px solid var(--line);
    border-radius:50%;
    color:var(--violet);
    background:#fff;
    transition:transform var(--transition),background var(--transition),color var(--transition);
}
.intent-card:hover .intent-arrow { transform:translateX(3px); color:#fff; background:var(--violet); }

.product-grid-pro { gap:18px; }
.product-grid-pro .product-card { border-radius:20px; }
.product-card-topline {
    position:absolute;
    z-index:3;
    left:13px;
    right:13px;
    top:13px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    pointer-events:none;
}
.product-grid-pro .product-badge { position:static; }
.badge-neutral { color:var(--violet); background:var(--violet-light); }
.product-card-index {
    display:grid;
    place-items:center;
    min-width:28px;
    height:28px;
    border:1px solid rgba(13,22,51,.07);
    border-radius:50%;
    color:#9ba1b2;
    background:rgba(255,255,255,.9);
    font-size:9px;
    font-weight:850;
}
.product-grid-pro .product-image {
    min-height:230px;
    padding:47px 18px 18px;
    background:radial-gradient(circle at 50% 34%,#fff 0%,#f5f6fb 73%,#f1f2f8 100%);
}
.product-grid-pro .product-image img { max-height:181px; }
.product-grid-pro .product-content { padding:18px; }
.product-headline {
    display:block;
    margin-bottom:7px;
    color:var(--violet);
    font-size:9px;
    font-weight:850;
    letter-spacing:.045em;
    text-transform:uppercase;
}
.product-grid-pro .product-content h3 {
    display:-webkit-box;
    min-height:38px;
    overflow:hidden;
    font-size:16px;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}
.product-grid-pro .product-content > p {
    display:-webkit-box;
    min-height:52px;
    margin-bottom:14px;
    overflow:hidden;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
}
.product-ideal {
    margin:0 0 15px;
    padding:10px 11px;
    border:1px solid #ece9f8;
    border-radius:10px;
    color:var(--ink-soft);
    background:#faf9ff;
    font-size:10px;
    line-height:1.4;
}
.product-ideal span { display:block; margin-bottom:2px; color:var(--violet); font-size:8px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.product-grid-pro .button-card { gap:8px; }

.category-showcase-section { position:relative; overflow:hidden; }
.category-showcase-section::before {
    content:"";
    position:absolute;
    width:460px;
    height:460px;
    right:-180px;
    top:40px;
    border-radius:50%;
    background:rgba(109,67,242,.07);
    filter:blur(2px);
}
.category-showcase-grid {
    position:relative;
    display:grid;
    grid-template-columns:1.25fr .75fr .75fr;
    grid-template-rows:280px 280px;
    gap:18px;
}
.category-showcase-card {
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(170px,.8fr);
    min-width:0;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    color:#fff;
    box-shadow:0 18px 45px rgba(25,31,55,.12);
    isolation:isolate;
    transition:transform 220ms ease,box-shadow 220ms ease;
}
.category-showcase-card:hover { transform:translateY(-5px); box-shadow:0 26px 58px rgba(25,31,55,.18); }
.category-showcase-card-1 { grid-row:1/3; }
.category-showcase-card-2 { grid-column:2/4; }
.category-showcase-card-3,
.category-showcase-card-4 { grid-template-columns:1fr 145px; }
.category-tone-violet { background:linear-gradient(145deg,#15112e,#4c25bd); }
.category-tone-blue { background:linear-gradient(145deg,#0c2447,#2766d9); }
.category-tone-coral { background:linear-gradient(145deg,#42203d,#c54968); }
.category-tone-green { background:linear-gradient(145deg,#0a3532,#148763); }
.category-showcase-card::before {
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    right:-110px;
    top:-100px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    box-shadow:0 0 0 35px rgba(255,255,255,.035),0 0 0 70px rgba(255,255,255,.02);
    z-index:-1;
}
.category-showcase-copy {
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:32px;
}
.category-showcase-card-1 .category-showcase-copy { justify-content:flex-end; padding:40px; }
.category-showcase-icon {
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    margin-bottom:18px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:13px;
    color:#fff;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    font-size:20px;
}
.category-showcase-label { color:rgba(255,255,255,.64); font-size:9px; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.category-showcase-copy h3 { margin:7px 0 9px; font-size:clamp(25px,2.7vw,40px); }
.category-showcase-copy p { max-width:370px; margin:0 0 14px; color:rgba(255,255,255,.72); font-size:12px; line-height:1.55; }
.category-product-name {
    display:-webkit-box;
    max-width:330px;
    margin-bottom:18px;
    overflow:hidden;
    color:#fff;
    font-size:11px;
    font-weight:750;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}
.category-showcase-link { display:inline-flex; align-items:center; gap:7px; font-size:11px; font-weight:850; }
.category-showcase-media {
    position:relative;
    z-index:1;
    display:grid;
    place-items:center;
    min-width:0;
    padding:24px 20px;
}
.category-showcase-media::before {
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    filter:blur(1px);
}
.category-showcase-media img {
    position:relative;
    display:block;
    width:auto;
    height:auto;
    max-width:100%;
    max-height:225px;
    object-fit:contain;
    object-position:var(--product-x,50%) var(--product-y,50%);
    transform:scale(var(--product-zoom,1));
    transform-origin:var(--product-x,50%) var(--product-y,50%);
    filter:drop-shadow(0 24px 28px rgba(0,0,0,.3));
    transition:transform 300ms ease;
}
.category-showcase-card:hover .category-showcase-media img { transform:scale(calc(var(--product-zoom,1) + .05)); }
.category-showcase-card-1 .category-showcase-media { position:absolute; inset:36px 10px auto 38%; height:290px; }
.category-showcase-card-1 .category-showcase-media img { max-height:265px; }
.category-showcase-card-3 .category-showcase-copy,
.category-showcase-card-4 .category-showcase-copy { padding:24px; }
.category-showcase-card-3 .category-showcase-copy p,
.category-showcase-card-4 .category-showcase-copy p,
.category-showcase-card-3 .category-product-name,
.category-showcase-card-4 .category-product-name { display:none; }
.category-showcase-card-3 .category-showcase-copy h3,
.category-showcase-card-4 .category-showcase-copy h3 { font-size:26px; }
.category-showcase-card-3 .category-showcase-icon,
.category-showcase-card-4 .category-showcase-icon { margin-bottom:11px; }

.editorial-grid-pro .editorial-card { border-radius:20px; }
.editorial-grid-pro .editorial-image { position:relative; }
.editorial-grid-pro .editorial-image::after {
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:42%;
    background:linear-gradient(to top,rgba(13,22,51,.26),transparent);
    pointer-events:none;
}
.editorial-grid-pro .editorial-image img { height:220px; }
.editorial-grid-pro .editorial-content { padding:20px; }
.editorial-grid-pro .editorial-content h3 {
    display:-webkit-box;
    min-height:45px;
    overflow:hidden;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}
.editorial-grid-pro .editorial-content p {
    display:-webkit-box;
    min-height:59px;
    overflow:hidden;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
}

.offers-grid-pro { grid-template-columns:repeat(3,1fr); gap:16px; }
.offers-grid-pro .offer-card {
    grid-template-columns:128px 1fr;
    gap:18px;
    min-height:160px;
    padding:18px;
    border-radius:18px;
    transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition);
}
.offers-grid-pro .offer-card:hover { transform:translateY(-4px); border-color:#d7cdff; box-shadow:var(--shadow); }
.offer-card-media {
    height:122px;
    display:grid;
    place-items:center;
    overflow:hidden;
    border-radius:14px;
    background:linear-gradient(145deg,#f8f8fc,#eef0f6);
}
.offers-grid-pro .offer-card-media img { width:auto; height:auto; max-width:88%; max-height:105px; object-fit:contain; }
.offer-eyebrow { display:block; margin-bottom:4px; color:var(--violet); font-size:8px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.offers-grid-pro .offer-card h3 { margin-bottom:9px; font-size:14px; }
.offers-grid-pro .offer-card a { margin-top:5px; font-size:11px; }

.trust-section-pro { padding:54px 0 82px; }
.trust-panel {
    overflow:hidden;
    padding:48px;
    border-radius:30px;
    color:#fff;
    background:
        radial-gradient(circle at 84% 8%,rgba(112,72,255,.36),transparent 29%),
        linear-gradient(145deg,#0b1430,#17113f 62%,#0e1b3e);
    box-shadow:0 28px 70px rgba(13,22,51,.18);
}
.trust-panel-heading { max-width:760px; margin-bottom:36px; }
.eyebrow-dark { color:#d8ceff; border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.08); }
.trust-panel-heading h2 { margin:17px 0 12px; font-size:clamp(34px,4.2vw,56px); text-wrap:balance; }
.trust-panel-heading p { margin:0; color:rgba(255,255,255,.67); font-size:16px; }
.trust-grid-pro { padding:0; background:transparent; }
.trust-grid-pro .trust-item { padding:24px; border:1px solid rgba(255,255,255,.1); border-radius:18px; background:rgba(255,255,255,.055); }
.trust-grid-pro .trust-item + .trust-item { margin-left:12px; }
.trust-grid-pro .trust-icon { color:#cbbcff; background:rgba(255,255,255,.1); box-shadow:none; }
.trust-grid-pro .trust-item h3 { margin:0 0 6px; font-size:15px; }
.trust-grid-pro .trust-item p { color:rgba(255,255,255,.62); }

@media (max-width:1120px) {
    .hero-grid-pro { grid-template-columns:1fr 1fr; gap:34px; }
    .hero-showcase { min-height:520px; }
    .hero-product-1 { width:55%; height:350px; }
    .hero-product-2,.hero-product-3 { width:35%; height:190px; }
    .hero-product-3 { bottom:72px; }
    .product-grid-pro { grid-template-columns:repeat(3,1fr); }
    .category-showcase-grid { grid-template-columns:1fr 1fr; grid-template-rows:360px 270px 270px; }
    .category-showcase-card-1 { grid-row:auto; grid-column:1/3; }
    .category-showcase-card-2 { grid-column:1/3; }
    .category-showcase-card-3,.category-showcase-card-4 { grid-template-columns:1fr 150px; }
    .category-showcase-card-1 .category-showcase-media { inset:28px 25px auto 52%; height:300px; }
    .offers-grid-pro { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:920px) {
    .hero-grid-pro { grid-template-columns:1fr; }
    .hero-grid-pro .hero-copy { text-align:center; }
    .hero-showcase { width:min(100%,720px); min-height:545px; margin:0 auto; }
    .home-signal-grid { grid-template-columns:1fr; transform:translateY(16px); }
    .home-signal-item { justify-content:flex-start; min-height:64px; border-right:0; border-bottom:1px solid var(--line); }
    .home-signal-item:last-child { border-bottom:0; }
    .intent-section { padding-top:68px; }
    .category-showcase-grid { grid-template-rows:330px 250px 250px; }
    .editorial-grid-pro { grid-template-columns:repeat(2,1fr); }
    .trust-grid-pro { grid-template-columns:1fr; gap:12px; }
    .trust-grid-pro .trust-item + .trust-item { margin-left:0; }
    .trust-grid-pro .trust-item { border-bottom:1px solid rgba(255,255,255,.1); }
}

@media (max-width:680px) {
    .hero-section-pro { padding-top:38px; }
    .hero-grid-pro .hero-copy h1 { font-size:clamp(43px,12vw,60px); }
    .hero-showcase { min-height:510px; border-radius:25px; }
    .hero-showcase-topline { left:20px; right:20px; }
    .hero-showcase-topline > span:last-child { display:none; }
    .hero-product-1 { left:20px; top:75px; width:62%; height:315px; }
    .hero-product-2 { right:18px; top:84px; width:31%; height:175px; }
    .hero-product-3 { right:18px; bottom:72px; width:31%; height:175px; }
    .hero-product-caption { padding:10px 11px; }
    .hero-product-caption strong { font-size:10px; }
    .hero-product-1 .hero-product-caption strong { font-size:13px; }
    .hero-showcase-note { left:20px; right:20px; font-size:9px; }
    .hero-proof-pro { grid-template-columns:1fr; }
    .intent-card { min-height:150px; }
    .product-grid-pro { grid-template-columns:1fr 1fr; }
    .product-grid-pro .product-content { padding:15px; }
    .category-showcase-grid { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:8px; }
    .category-showcase-card,
    .category-showcase-card-1,
    .category-showcase-card-2,
    .category-showcase-card-3,
    .category-showcase-card-4 {
        flex:0 0 84%;
        min-height:390px;
        grid-template-columns:1fr;
        scroll-snap-align:start;
    }
    .category-showcase-card-1 .category-showcase-media { position:relative; inset:auto; height:190px; order:-1; }
    .category-showcase-media { height:190px; padding:18px; order:-1; }
    .category-showcase-media img,.category-showcase-card-1 .category-showcase-media img { max-height:165px; }
    .category-showcase-copy,.category-showcase-card-1 .category-showcase-copy,.category-showcase-card-3 .category-showcase-copy,.category-showcase-card-4 .category-showcase-copy { justify-content:flex-start; padding:24px; }
    .category-showcase-card-3 .category-showcase-copy p,.category-showcase-card-4 .category-showcase-copy p { display:block; }
    .category-showcase-card-3 .category-product-name,.category-showcase-card-4 .category-product-name { display:-webkit-box; }
    .offers-grid-pro { grid-template-columns:1fr; }
    .trust-panel { padding:30px 22px; border-radius:24px; }
}

@media (max-width:430px) {
    .hero-showcase { min-height:570px; }
    .hero-product-1 { left:18px; right:18px; top:72px; width:auto; height:285px; transform:none; }
    .hero-product-2 { left:18px; right:auto; top:auto; bottom:75px; width:45%; height:155px; transform:none; }
    .hero-product-3 { right:18px; top:auto; bottom:75px; width:45%; height:155px; transform:none; }
    .hero-showcase-note { bottom:20px; }
    .product-grid-pro { grid-template-columns:1fr; }
    .product-grid-pro .product-image { min-height:250px; }
    .product-grid-pro .product-image img { max-height:205px; }
    .editorial-grid-pro { grid-template-columns:1fr; }
    .offers-grid-pro .offer-card { grid-template-columns:105px 1fr; padding:14px; }
    .offer-card-media { height:110px; }
}

/* ============================================================
   SauronIT Pro 1.1.1 — technological ambient backgrounds
   Light, premium and intentionally subtle: cool gradients,
   grid signals and glass surfaces without turning the site dark.
   ============================================================ */
:root {
    --tech-cyan: #29c7f2;
    --tech-blue: #4169f6;
    --tech-indigo: #18245c;
    --tech-ice: #eef7ff;
    --tech-lilac: #f0edff;
    --tech-grid: rgba(63, 102, 246, .055);
}

.sauronit-home .site-main {
    position: relative;
    background:
        radial-gradient(circle at 4% 18%, rgba(41,199,242,.045), transparent 19%),
        radial-gradient(circle at 96% 43%, rgba(109,67,242,.045), transparent 21%),
        #fff;
}

.sauronit-home .site-main > section {
    position: relative;
    isolation: isolate;
}

/* Hero: colder, more technological light spectrum. */
.sauronit-home .hero-section-pro {
    overflow: hidden;
    background:
        linear-gradient(rgba(65,105,246,.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65,105,246,.042) 1px, transparent 1px),
        radial-gradient(circle at 82% 12%, rgba(41,199,242,.17), transparent 25%),
        radial-gradient(circle at 67% 76%, rgba(109,67,242,.14), transparent 30%),
        radial-gradient(circle at 9% 84%, rgba(65,105,246,.08), transparent 24%),
        linear-gradient(145deg, #fbfdff 0%, #f4f8ff 45%, #faf7ff 100%);
    background-size: 46px 46px, 46px 46px, auto, auto, auto, auto;
}

.sauronit-home .hero-section-pro::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 560px;
    height: 560px;
    left: -330px;
    top: -270px;
    border: 1px solid rgba(65,105,246,.10);
    border-radius: 50%;
    box-shadow:
        0 0 0 52px rgba(65,105,246,.025),
        0 0 0 110px rgba(41,199,242,.018);
}

.sauronit-home .hero-section-pro::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 3%;
    bottom: 7%;
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(41,199,242,.7), transparent);
    box-shadow: 0 -28px 0 rgba(109,67,242,.13), 0 28px 0 rgba(65,105,246,.11);
    transform: rotate(-22deg);
}

.sauronit-home .eyebrow,
.sauronit-home .section-kicker {
    text-shadow: 0 0 20px rgba(109,67,242,.16);
}

/* Signal strip: translucent control-panel effect. */
.sauronit-home .home-signal-section {
    background:
        radial-gradient(circle at 12% 50%, rgba(41,199,242,.09), transparent 25%),
        radial-gradient(circle at 88% 50%, rgba(109,67,242,.08), transparent 24%),
        linear-gradient(180deg, #f5f8ff, #f8f6ff);
}

.sauronit-home .home-signal-grid {
    border-color: rgba(79,100,170,.14);
    background: rgba(255,255,255,.80);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 54px rgba(36,49,99,.11), inset 0 1px 0 rgba(255,255,255,.85);
}

.sauronit-home .home-signal-item strong {
    background: linear-gradient(135deg, var(--violet), var(--tech-blue), var(--tech-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Needs and products: alternate cool ambient bands. */
.sauronit-home .intent-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 4% 22%, rgba(41,199,242,.075), transparent 19%),
        radial-gradient(circle at 94% 78%, rgba(109,67,242,.075), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #fff 82%);
}

.sauronit-home .intent-section::before,
.sauronit-home .products-section::before,
.sauronit-home .editorial-section::before,
.sauronit-home .offers-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: .52;
    background-image:
        linear-gradient(var(--tech-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--tech-grid) 1px, transparent 1px);
    background-size: 38px 38px;
    -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 72%);
    mask-image: radial-gradient(circle, #000 0%, transparent 72%);
}

.sauronit-home .intent-section::before {
    width: 470px;
    height: 390px;
    left: -105px;
    top: 44px;
}

.sauronit-home .intent-card {
    border-color: rgba(76,99,168,.13);
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,249,255,.90));
    box-shadow: 0 12px 34px rgba(37,52,104,.075);
}

.sauronit-home .intent-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(180deg, transparent, rgba(41,199,242,.68), rgba(109,67,242,.72), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.sauronit-home .intent-card:hover::before { opacity: 1; }

.sauronit-home .products-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 91% 13%, rgba(41,199,242,.09), transparent 21%),
        radial-gradient(circle at 12% 82%, rgba(109,67,242,.07), transparent 22%),
        linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.sauronit-home .products-section::before {
    width: 520px;
    height: 430px;
    right: -140px;
    top: -54px;
}

.sauronit-home .product-grid-pro .product-card {
    border-color: rgba(61,82,150,.13);
    background: rgba(255,255,255,.92);
    box-shadow: 0 15px 40px rgba(28,42,92,.075);
}

.sauronit-home .product-grid-pro .product-card:hover {
    border-color: rgba(65,105,246,.28);
    box-shadow: 0 24px 54px rgba(35,50,103,.14), 0 0 0 1px rgba(41,199,242,.06);
}

.sauronit-home .product-grid-pro .product-image {
    background:
        radial-gradient(circle at 50% 32%, #fff 0%, #f2f7ff 59%, #edf1fb 100%);
}

/* Category canvas gets a premium blue-violet environment. */
.sauronit-home .category-showcase-section {
    background:
        linear-gradient(rgba(255,255,255,.48), rgba(255,255,255,.48)),
        radial-gradient(circle at 8% 20%, rgba(41,199,242,.18), transparent 25%),
        radial-gradient(circle at 92% 76%, rgba(109,67,242,.16), transparent 28%),
        linear-gradient(135deg, #eef7ff 0%, #f4f1ff 48%, #eff5ff 100%);
}

.sauronit-home .category-showcase-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .38;
    background-image:
        radial-gradient(circle at center, rgba(65,105,246,.14) 1px, transparent 1.5px);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

/* Editorial: clean cyan wash behind articles. */
.sauronit-home .editorial-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 81% 6%, rgba(41,199,242,.085), transparent 20%),
        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.sauronit-home .editorial-section::before {
    width: 450px;
    height: 380px;
    left: -120px;
    bottom: -110px;
}

.sauronit-home .editorial-grid-pro .editorial-card {
    border-color: rgba(59,83,151,.13);
    box-shadow: 0 15px 38px rgba(30,46,96,.075);
}

/* Offers: visible technology band without losing readability. */
.sauronit-home .offers-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(41,199,242,.14), transparent 23%),
        radial-gradient(circle at 91% 74%, rgba(109,67,242,.13), transparent 27%),
        linear-gradient(135deg, #edf7ff 0%, #f5f2ff 52%, #eef4ff 100%);
}

.sauronit-home .offers-section::before {
    width: 590px;
    height: 470px;
    right: -145px;
    top: -110px;
}

.sauronit-home .offers-grid-pro .offer-card {
    border-color: rgba(62,85,153,.14);
    background: rgba(255,255,255,.88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 36px rgba(31,47,98,.075);
}

.sauronit-home .offer-card-media {
    background:
        radial-gradient(circle at 50% 32%, #fff 0%, #eef6ff 68%, #e9eef9 100%);
}

/* Thin spectrum dividers improve rhythm between light sections. */
.sauronit-home .intent-section,
.sauronit-home .products-section,
.sauronit-home .category-showcase-section,
.sauronit-home .editorial-section,
.sauronit-home .offers-section {
    border-top: 1px solid rgba(63,91,168,.075);
}

.sauronit-home .section-heading h2 {
    text-shadow: 0 8px 28px rgba(45,68,138,.055);
}

@media (max-width: 680px) {
    .sauronit-home .hero-section-pro {
        background-size: 34px 34px, 34px 34px, auto, auto, auto, auto;
    }

    .sauronit-home .intent-section::before,
    .sauronit-home .products-section::before,
    .sauronit-home .editorial-section::before,
    .sauronit-home .offers-section::before {
        opacity: .30;
    }

    .sauronit-home .category-showcase-section::after { opacity: .24; }
}

@media (prefers-reduced-motion: reduce) {
    .sauronit-home .intent-card::before { transition: none; }
}

/* =========================================================
   SauronIT Pro 1.2 — Header, Hero and Selection Bento
   ========================================================= */
.site-header-v2 {
    background:rgba(255,255,255,.82);
    border-bottom:1px solid rgba(117,129,166,.14);
    backdrop-filter:blur(22px) saturate(155%);
}
.site-header-v2.is-scrolled {
    background:rgba(255,255,255,.94);
    box-shadow:0 14px 42px rgba(13,22,51,.09);
}
.header-inner-v2 { min-height:88px; grid-template-columns:minmax(170px,auto) 1fr auto; }
.brand-v2 { min-width:170px; }
.brand-v2 .custom-logo {
    width:auto;
    height:54px;
    max-width:230px;
    object-fit:contain;
    object-position:left center;
}
.brand-mark {
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    margin-right:10px;
    border-radius:13px;
    color:#fff;
    background:linear-gradient(145deg,#111833,#6d43f2);
    font-weight:900;
}
.header-actions-v2 { gap:10px; }
.header-live-status {
    display:inline-flex;
    align-items:center;
    gap:8px;
    height:36px;
    padding:0 12px;
    border:1px solid rgba(66,185,122,.2);
    border-radius:999px;
    color:#275b43;
    background:rgba(233,250,241,.75);
    font-size:10px;
    font-weight:800;
    white-space:nowrap;
}
.header-live-status i {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#42b97a;
    box-shadow:0 0 0 5px rgba(66,185,122,.12);
}
.header-offers-button { border-radius:13px; box-shadow:0 12px 26px rgba(109,67,242,.2); }

.hero-v2 {
    position:relative;
    isolation:isolate;
    overflow:hidden;
    padding:82px 0 66px;
    background:
        radial-gradient(circle at 78% 18%,rgba(81,175,255,.18),transparent 30%),
        radial-gradient(circle at 14% 70%,rgba(109,67,242,.12),transparent 28%),
        linear-gradient(135deg,#f9fbff 0%,#eef6ff 47%,#f7f3ff 100%);
}
.hero-v2::after {
    content:"";
    position:absolute;
    inset:auto -8% -230px auto;
    width:560px;
    height:560px;
    border:1px solid rgba(109,67,242,.16);
    border-radius:50%;
    box-shadow:0 0 0 72px rgba(109,67,242,.025),0 0 0 145px rgba(77,141,255,.018);
    z-index:-1;
}
.hero-v2-mesh {
    position:absolute;
    inset:0;
    z-index:-3;
    opacity:.38;
    background-image:
        linear-gradient(rgba(36,58,112,.07) 1px,transparent 1px),
        linear-gradient(90deg,rgba(36,58,112,.07) 1px,transparent 1px);
    background-size:62px 62px;
    mask-image:linear-gradient(to right,black 0%,rgba(0,0,0,.5) 58%,transparent 95%);
}
.hero-v2-orbit { position:absolute; z-index:-2; border-radius:50%; filter:blur(2px); }
.hero-v2-orbit-one { width:520px; height:520px; left:-230px; top:-280px; border:1px solid rgba(77,141,255,.14); }
.hero-v2-orbit-two { width:310px; height:310px; right:32%; bottom:-215px; background:rgba(109,67,242,.07); filter:blur(48px); }
.hero-v2-grid {
    display:grid;
    grid-template-columns:minmax(0,.86fr) minmax(590px,1.14fr);
    align-items:center;
    gap:58px;
}
.hero-copy-v2 { padding:18px 0; }
.eyebrow-v2 {
    padding:8px 13px;
    border-color:rgba(109,67,242,.16);
    background:rgba(255,255,255,.74);
    box-shadow:0 8px 24px rgba(48,64,108,.08);
    backdrop-filter:blur(10px);
}
.hero-copy-v2 h1 {
    max-width:630px;
    margin:24px 0 20px;
    font-size:clamp(58px,5.2vw,82px);
    line-height:1.02;
    letter-spacing:-.072em;
    text-wrap:balance;
}
.hero-copy-v2 .hero-lead { max-width:590px; font-size:18px; }
.hero-actions-v2 .button { min-height:56px; padding-inline:25px; border-radius:14px; }
.hero-primary-button { box-shadow:0 16px 34px rgba(109,67,242,.28); }
.hero-secondary-button { background:rgba(255,255,255,.76); backdrop-filter:blur(10px); }
.hero-proof-v2 { margin-top:34px; padding-top:25px; border-color:rgba(54,72,120,.12); }
.hero-proof-v2 > div { padding-right:8px; }
.hero-proof-v2 .proof-icon { background:#fff; box-shadow:0 7px 18px rgba(29,45,91,.08); }
.hero-proof-v2 strong { font-size:12px; }
.hero-proof-v2 small { font-size:10px; }

.hero-canvas {
    position:relative;
    min-height:590px;
    overflow:hidden;
    padding:24px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:36px;
    color:#fff;
    background:
        radial-gradient(circle at 15% 10%,rgba(116,79,255,.4),transparent 27%),
        radial-gradient(circle at 90% 78%,rgba(0,184,255,.2),transparent 28%),
        linear-gradient(145deg,#080f29 0%,#191247 55%,#0b1737 100%);
    box-shadow:0 38px 90px rgba(13,22,51,.28);
}
.hero-canvas::before {
    content:"";
    position:absolute;
    inset:0;
    opacity:.16;
    background-image:
        linear-gradient(rgba(255,255,255,.09) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.09) 1px,transparent 1px);
    background-size:46px 46px;
    mask-image:linear-gradient(to bottom,black,transparent 90%);
}
.hero-canvas::after {
    content:"";
    position:absolute;
    width:330px;
    height:330px;
    right:-145px;
    top:-145px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    box-shadow:0 0 0 44px rgba(255,255,255,.02),0 0 0 90px rgba(255,255,255,.012);
}
.hero-canvas-header,
.hero-canvas-footer { position:relative; z-index:4; display:flex; align-items:center; justify-content:space-between; gap:18px; }
.hero-canvas-header { min-height:30px; color:rgba(255,255,255,.66); font-size:10px; font-weight:800; }
.hero-canvas-status { display:flex; align-items:center; gap:8px; color:#fff; }
.hero-canvas-status i { width:8px; height:8px; border-radius:50%; background:#65e6a1; box-shadow:0 0 0 6px rgba(101,230,161,.11); }
.hero-canvas-stage { position:relative; z-index:2; min-height:475px; margin-top:12px; }
.hero-tile {
    position:absolute;
    display:grid;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.4);
    border-radius:24px;
    color:var(--ink);
    background:rgba(255,255,255,.97);
    box-shadow:0 28px 62px rgba(0,0,0,.28);
    transition:transform 260ms ease,box-shadow 260ms ease;
}
.hero-tile:hover { z-index:5; transform:translateY(-8px) rotate(0deg)!important; box-shadow:0 36px 78px rgba(0,0,0,.36); }
.hero-tile-1 { left:1%; top:20px; width:59%; height:420px; grid-template-rows:1fr auto; transform:rotate(-1.5deg); }
.hero-tile-2 { right:0; top:28px; width:36%; height:205px; grid-template-rows:1fr auto; transform:rotate(2deg); }
.hero-tile-3 { right:0; bottom:23px; width:36%; height:205px; grid-template-rows:1fr auto; transform:rotate(-1.5deg); }
.hero-tile-media { min-height:0; display:grid; place-items:center; padding:24px 20px 10px; background:radial-gradient(circle at 50% 36%,#fff 0%,#f2f4fb 72%,#e8ebf5 100%); }
.hero-tile-media img {
    width:auto;
    height:auto;
    max-width:90%;
    max-height:100%;
    object-fit:contain;
    object-position:var(--product-x,50%) var(--product-y,50%);
    transform:scale(var(--product-zoom,1));
    transform-origin:var(--product-x,50%) var(--product-y,50%);
}
.hero-tile-1 .hero-tile-media { padding:30px 28px 12px; }
.hero-tile-1 .hero-tile-media img { max-height:290px; }
.hero-tile-copy { display:block; padding:14px 17px 17px; background:#fff; }
.hero-tile-copy small { display:block; margin-bottom:4px; color:var(--violet); font-size:8px; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }
.hero-tile-copy strong { display:block; overflow:hidden; font-size:13px; line-height:1.25; text-overflow:ellipsis; white-space:nowrap; }
.hero-tile-copy span { display:block; margin-top:5px; color:var(--muted); font-size:9px; }
.hero-tile-1 .hero-tile-copy strong { font-size:18px; }
.hero-canvas-badge {
    position:absolute;
    z-index:4;
    left:45%;
    bottom:9px;
    display:flex;
    align-items:center;
    gap:9px;
    padding:10px 13px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:13px;
    color:rgba(255,255,255,.82);
    background:rgba(8,15,41,.72);
    backdrop-filter:blur(13px);
    box-shadow:0 15px 35px rgba(0,0,0,.22);
    font-size:9px;
}
.hero-canvas-badge .icon { color:#8dd7ff; font-size:17px; }
.hero-canvas-footer { color:rgba(255,255,255,.68); font-size:10px; justify-content:flex-start; }
.hero-canvas-footer .icon { color:#bcaaff; font-size:17px; }

.products-section-v2 {
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 12% 12%,rgba(77,141,255,.08),transparent 25%),
        radial-gradient(circle at 92% 76%,rgba(109,67,242,.08),transparent 25%),
        linear-gradient(180deg,#fff 0%,#f8faff 100%);
}
.products-section-v2::before {
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.18;
    background-image:
        linear-gradient(rgba(46,69,126,.08) 1px,transparent 1px),
        linear-gradient(90deg,rgba(46,69,126,.08) 1px,transparent 1px);
    background-size:54px 54px;
    mask-image:linear-gradient(to bottom,transparent,black 20%,black 80%,transparent);
}
.section-heading-v2 { position:relative; z-index:2; margin-bottom:34px; }
.section-heading-v2 h2 { font-size:clamp(34px,3.5vw,48px); }
.selection-bento {
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.35fr .82fr .82fr;
    grid-template-rows:300px 300px;
    gap:18px;
}
.selection-card {
    position:relative;
    min-width:0;
    overflow:hidden;
    border:1px solid rgba(210,216,234,.95);
    border-radius:26px;
    background:rgba(255,255,255,.93);
    box-shadow:0 20px 50px rgba(23,34,70,.09);
    backdrop-filter:blur(10px);
    transition:transform 230ms ease,box-shadow 230ms ease,border-color 230ms ease;
}
.selection-card:hover { transform:translateY(-6px); border-color:#cbbfff; box-shadow:0 30px 68px rgba(23,34,70,.15); }
.selection-card-lead {
    grid-row:1/3;
    display:grid;
    grid-template-rows:minmax(0,1.12fr) minmax(260px,.88fr);
}
.selection-card-secondary { display:grid; grid-template-columns:minmax(0,.92fr) minmax(180px,1.08fr); }
.selection-card-secondary-1 { grid-column:2/4; }
.selection-card-secondary-2 { grid-column:2; grid-row:2; grid-template-columns:1fr; grid-template-rows:170px 1fr; }
.selection-card-secondary-3 { grid-column:3; grid-row:2; grid-template-columns:1fr; grid-template-rows:170px 1fr; }
.selection-card-secondary-4 { display:none; }
.selection-card-media {
    position:relative;
    min-height:0;
    display:grid;
    place-items:center;
    padding:54px 24px 22px;
    background:radial-gradient(circle at 50% 36%,#fff 0%,#f5f6fb 70%,#eef1f7 100%);
}
.selection-card-media::after {
    content:"";
    position:absolute;
    left:18%;
    right:18%;
    bottom:16px;
    height:22px;
    border-radius:50%;
    background:rgba(17,25,54,.14);
    filter:blur(15px);
}
.selection-card-media img {
    position:relative;
    z-index:1;
    width:auto;
    height:auto;
    max-width:88%;
    max-height:100%;
    object-fit:contain;
    object-position:var(--product-x,50%) var(--product-y,50%);
    transform:scale(var(--product-zoom,1));
    transform-origin:var(--product-x,50%) var(--product-y,50%);
}
.selection-card-lead .selection-card-media img { max-height:320px; }
.selection-card-secondary-1 .selection-card-media { min-height:300px; }
.selection-card-secondary-1 .selection-card-media img { max-height:225px; }
.selection-card-secondary-2 .selection-card-media,
.selection-card-secondary-3 .selection-card-media { padding:44px 18px 14px; }
.selection-card-secondary-2 .selection-card-media img,
.selection-card-secondary-3 .selection-card-media img { max-height:120px; }
.selection-card-topline {
    position:absolute;
    z-index:3;
    left:16px;
    right:16px;
    top:16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.selection-card-number {
    display:grid;
    place-items:center;
    min-width:31px;
    height:31px;
    border:1px solid rgba(13,22,51,.08);
    border-radius:50%;
    color:#929aae;
    background:rgba(255,255,255,.88);
    font-size:9px;
    font-weight:900;
}
.selection-card-content { min-width:0; display:flex; flex-direction:column; padding:24px; }
.selection-card-lead .selection-card-content { padding:28px; }
.selection-card-content h3 { margin-bottom:10px; font-size:20px; }
.selection-card-lead .selection-card-content h3 { font-size:29px; }
.selection-card-content > p {
    display:-webkit-box;
    margin-bottom:15px;
    overflow:hidden;
    color:var(--muted);
    font-size:12px;
    line-height:1.55;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
}
.selection-card-lead .selection-card-content > p { max-width:620px; font-size:14px; -webkit-line-clamp:3; }
.selection-card-secondary-2 .selection-card-content,
.selection-card-secondary-3 .selection-card-content { padding:17px; }
.selection-card-secondary-2 .selection-card-content h3,
.selection-card-secondary-3 .selection-card-content h3 { font-size:15px; }
.selection-card-secondary-2 .selection-card-content > p,
.selection-card-secondary-3 .selection-card-content > p { display:none; }
.selection-card-secondary-2 .product-headline,
.selection-card-secondary-3 .product-headline { font-size:8px; }
.selection-card-secondary-2 .product-ideal,
.selection-card-secondary-3 .product-ideal { display:none; }
.selection-card-actions { margin-top:auto; }
.selection-card-actions .button-card { min-height:46px; }
.selection-card-secondary-2 .selection-card-actions .button-card,
.selection-card-secondary-3 .selection-card-actions .button-card { min-height:39px; padding-inline:12px; font-size:11px; }

@media (max-width:1180px) {
    .header-live-status { display:none; }
    .hero-v2-grid { grid-template-columns:minmax(0,.9fr) minmax(520px,1.1fr); gap:36px; }
    .hero-canvas { min-height:550px; }
    .hero-canvas-stage { min-height:435px; }
    .hero-tile-1 { height:385px; }
    .hero-tile-2,.hero-tile-3 { height:188px; }
}

@media (max-width:980px) {
    .header-inner-v2 { min-height:76px; grid-template-columns:auto 1fr auto; }
    .brand-v2 .custom-logo { height:46px; max-width:190px; }
    .hero-v2 { padding:54px 0 52px; }
    .hero-v2-grid { grid-template-columns:1fr; gap:38px; }
    .hero-copy-v2 { text-align:center; }
    .hero-copy-v2 h1,.hero-copy-v2 .hero-lead { margin-left:auto; margin-right:auto; }
    .hero-actions-v2,.hero-proof-v2 { justify-content:center; }
    .hero-proof-v2 { max-width:720px; margin-left:auto; margin-right:auto; }
    .hero-canvas { width:min(100%,760px); min-height:575px; margin-inline:auto; }
    .hero-canvas-stage { min-height:462px; }
    .selection-bento { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
    .selection-card-lead { grid-column:1/3; grid-row:auto; grid-template-columns:1.06fr .94fr; grid-template-rows:420px; }
    .selection-card-secondary-1 { grid-column:1/3; }
    .selection-card-secondary-2 { grid-column:1; grid-row:auto; }
    .selection-card-secondary-3 { grid-column:2; grid-row:auto; }
}

@media (max-width:720px) {
    .header-inner-v2 { min-height:70px; gap:12px; }
    .brand-v2 { min-width:0; }
    .brand-v2 .custom-logo { height:40px; max-width:155px; }
    .header-offers-button { display:none; }
    .hero-v2 { padding:40px 0 42px; }
    .hero-copy-v2 h1 { font-size:clamp(46px,14vw,62px); }
    .hero-copy-v2 .hero-lead { font-size:16px; }
    .hero-actions-v2 { display:grid; grid-template-columns:1fr; }
    .hero-actions-v2 .button { width:100%; }
    .hero-proof-v2 { grid-template-columns:1fr; gap:13px; text-align:left; }
    .hero-canvas { min-height:620px; padding:18px; border-radius:28px; }
    .hero-canvas-header { font-size:9px; }
    .hero-canvas-stage { min-height:515px; }
    .hero-tile-1 { left:0; top:16px; width:100%; height:330px; transform:none; }
    .hero-tile-2 { left:0; right:auto; top:auto; bottom:8px; width:48.5%; height:170px; transform:none; }
    .hero-tile-3 { right:0; top:auto; bottom:8px; width:48.5%; height:170px; transform:none; }
    .hero-tile-1 .hero-tile-media img { max-height:215px; }
    .hero-tile-copy { padding:10px 12px 12px; }
    .hero-tile-1 .hero-tile-copy strong { font-size:15px; }
    .hero-tile-2 .hero-tile-copy strong,.hero-tile-3 .hero-tile-copy strong { font-size:10px; }
    .hero-canvas-badge { display:none; }
    .hero-canvas-footer { margin-top:2px; font-size:9px; }
    .section-heading-v2 { align-items:flex-start; }
    .selection-bento { grid-template-columns:1fr; }
    .selection-card-lead,
    .selection-card-secondary,
    .selection-card-secondary-1,
    .selection-card-secondary-2,
    .selection-card-secondary-3 {
        grid-column:auto;
        grid-row:auto;
        grid-template-columns:1fr;
        grid-template-rows:240px auto;
    }
    .selection-card-lead .selection-card-media img { max-height:185px; }
    .selection-card-secondary-1 .selection-card-media { min-height:0; }
    .selection-card-secondary-1 .selection-card-media img { max-height:180px; }
    .selection-card-secondary-2 .selection-card-media img,
    .selection-card-secondary-3 .selection-card-media img { max-height:165px; }
    .selection-card-secondary-2 .selection-card-content > p,
    .selection-card-secondary-3 .selection-card-content > p { display:-webkit-box; }
    .selection-card-secondary-2 .product-ideal,
    .selection-card-secondary-3 .product-ideal { display:block; }
    .selection-card-lead .selection-card-content h3 { font-size:23px; }
}

/* SauronIT Pro 1.3 — Category worlds, budgets and methodology */
.experience-worlds-section{padding:clamp(72px,8vw,120px) 0;background:linear-gradient(180deg,#f8fbff 0%,#fff 100%);overflow:hidden}.experience-worlds-stack{display:grid;gap:34px}.experience-world{position:relative;display:grid;grid-template-columns:minmax(260px,.8fr) minmax(320px,1.15fr);grid-template-rows:auto auto;gap:22px;padding:clamp(28px,4vw,52px);border-radius:36px;overflow:hidden;isolation:isolate}.experience-world:before,.experience-world:after{content:"";position:absolute;pointer-events:none;z-index:-1}.experience-world:before{inset:0;background:linear-gradient(135deg,rgba(255,255,255,.12),transparent 48%)}.experience-world:after{width:440px;height:440px;border-radius:50%;right:-160px;top:-210px;filter:blur(3px);opacity:.45}.experience-world-gaming{color:#fff;background:radial-gradient(circle at 82% 18%,rgba(124,58,237,.45),transparent 32%),linear-gradient(135deg,#080d29,#171142 58%,#29105e)}.experience-world-gaming:after{background:radial-gradient(circle,#7c3aed,transparent 68%)}.experience-world-mobile{color:#09204b;background:radial-gradient(circle at 80% 14%,rgba(14,165,233,.28),transparent 34%),linear-gradient(135deg,#ecf9ff,#eff4ff 55%,#f8f4ff)}.experience-world-mobile:after{background:radial-gradient(circle,#7dd3fc,transparent 68%)}.experience-world-audio{color:#fff;background:radial-gradient(circle at 82% 20%,rgba(244,114,182,.28),transparent 32%),linear-gradient(135deg,#101827,#26203b 55%,#3b1847)}.experience-world-audio:after{background:radial-gradient(circle,#ec4899,transparent 68%)}.experience-world-copy{align-self:center;max-width:470px}.experience-world-copy h2{margin:.45rem 0 1rem;font-size:clamp(2rem,4vw,4rem);line-height:.98;letter-spacing:-.05em}.experience-world-copy p{font-size:1.05rem;line-height:1.75;opacity:.78}.experience-world-button{margin-top:18px}.experience-world-gaming .experience-world-button,.experience-world-audio .experience-world-button{background:#fff;color:#111b3b}.experience-world-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:22px}.experience-world-tags span{padding:8px 12px;border-radius:999px;border:1px solid currentColor;font-size:.74rem;opacity:.7}.experience-world-lead{position:relative;display:grid;grid-template-rows:1fr auto;min-height:390px;padding:20px;border-radius:28px;background:rgba(255,255,255,.94);color:#0c1738;box-shadow:0 30px 70px rgba(8,16,45,.22);transform:rotate(1deg);transition:.3s ease}.experience-world-lead:hover{transform:translateY(-6px) rotate(0deg)}.experience-world-lead-badge{position:absolute;z-index:2;top:18px;left:18px;padding:7px 10px;border-radius:999px;background:#6d4aff;color:#fff;font-size:.68rem;font-weight:800;text-transform:uppercase}.experience-world-lead-media{display:flex;align-items:center;justify-content:center;min-height:250px}.experience-world-lead-media img{width:100%;height:250px;object-fit:contain;transform:translate(var(--image-x,0),var(--image-y,0)) scale(var(--image-scale,1))}.experience-world-lead-copy{padding:15px 8px 4px}.experience-world-lead-copy strong{display:block;font-size:1.2rem}.experience-world-lead-copy small{display:-webkit-box;margin-top:7px;color:#66718c;line-height:1.5;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.experience-world-rail{grid-column:1/-1;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.experience-mini-card{display:grid;grid-template-columns:76px 1fr;gap:12px;align-items:center;padding:10px;border-radius:18px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);color:inherit;backdrop-filter:blur(12px);transition:.25s ease}.experience-world-mobile .experience-mini-card{background:rgba(255,255,255,.72);border-color:rgba(17,49,94,.08)}.experience-mini-card:hover{transform:translateY(-4px);background:rgba(255,255,255,.2)}.experience-mini-card span{display:flex;align-items:center;justify-content:center;height:68px;border-radius:13px;background:#fff}.experience-mini-card img{width:100%;height:62px;object-fit:contain;transform:translate(var(--image-x,0),var(--image-y,0)) scale(var(--image-scale,1))}.experience-mini-card strong{font-size:.84rem;line-height:1.25}.budget-section{padding:90px 0}.budget-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.budget-card{position:relative;min-height:220px;padding:26px;border-radius:26px;overflow:hidden;background:#fff;border:1px solid rgba(26,43,82,.1);box-shadow:0 18px 45px rgba(38,55,92,.08);transition:.3s ease}.budget-card:before{content:"";position:absolute;right:-55px;bottom:-75px;width:180px;height:180px;border-radius:50%;background:var(--budget-glow,#dbeafe);filter:blur(5px);opacity:.75}.budget-card:hover{transform:translateY(-8px);box-shadow:0 28px 60px rgba(38,55,92,.15)}.budget-card-1{--budget-glow:#dbeafe}.budget-card-2{--budget-glow:#ddd6fe}.budget-card-3{--budget-glow:#cffafe}.budget-card-4{--budget-glow:#fbcfe8}.budget-number{display:block;font-size:.72rem;font-weight:900;color:#7c3aed}.budget-card strong{position:relative;display:block;margin-top:48px;font-size:1.35rem;color:#111b3b}.budget-card small{position:relative;display:block;margin-top:8px;color:#69728b;line-height:1.5}.budget-card i{position:absolute;right:22px;bottom:20px;display:grid;place-items:center;width:38px;height:38px;border-radius:50%;background:#111b3b;color:#fff}.method-section{padding:100px 0;background:#fff}.method-grid{display:grid;grid-template-columns:minmax(260px,.72fr) minmax(400px,1.28fr);gap:70px;align-items:start;padding:clamp(30px,5vw,64px);border-radius:34px;background:linear-gradient(135deg,#f7f8ff,#eef8ff);border:1px solid rgba(48,58,113,.08)}.method-copy h2{font-size:clamp(2.4rem,4.5vw,4.6rem);line-height:.95;letter-spacing:-.055em;margin:.5rem 0 1rem}.method-copy p{color:#65708c;line-height:1.75}.method-steps{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.method-steps li{display:grid;grid-template-columns:50px 1fr;gap:14px;padding:22px;border-radius:22px;background:#fff;box-shadow:0 12px 35px rgba(37,55,91,.07)}.method-steps li>span{display:grid;place-items:center;width:44px;height:44px;border-radius:14px;background:linear-gradient(135deg,#6d4aff,#29b6f6);color:#fff;font-size:.72rem;font-weight:900}.method-steps strong{display:block;color:#101a39;font-size:1rem}.method-steps p{margin:5px 0 0;color:#6b748d;font-size:.87rem;line-height:1.5}
@media(max-width:980px){.experience-world{grid-template-columns:1fr}.experience-world-lead{min-height:340px}.experience-world-rail{grid-template-columns:repeat(2,minmax(0,1fr))}.budget-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.method-grid{grid-template-columns:1fr;gap:36px}}
@media(max-width:640px){.experience-worlds-section{padding:60px 0}.experience-world{padding:24px;border-radius:26px}.experience-world-copy h2{font-size:2.35rem}.experience-world-lead{min-height:310px}.experience-world-rail{display:flex;overflow-x:auto;padding-bottom:7px}.experience-mini-card{min-width:220px}.budget-grid{grid-template-columns:1fr}.budget-card{min-height:180px}.method-section{padding:70px 0}.method-grid{padding:24px;border-radius:26px}.method-steps{grid-template-columns:1fr}}

/* =========================================================
   SauronIT Pro 1.4 — Decision Lab, comparison and live rails
   ========================================================= */
.decision-lab-section{padding:clamp(76px,9vw,128px) 0;background:linear-gradient(145deg,#071126 0%,#101b42 52%,#26164a 100%);color:#fff;position:relative;overflow:hidden}
.decision-lab-section:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 15% 25%,rgba(76,111,255,.28),transparent 32%),radial-gradient(circle at 88% 68%,rgba(198,82,255,.2),transparent 35%),linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:auto,auto,44px 44px,44px 44px;pointer-events:none}
.decision-lab-shell{display:grid;grid-template-columns:minmax(0,.82fr) minmax(520px,1.18fr);gap:clamp(42px,7vw,96px);align-items:center;position:relative;z-index:1}
.decision-lab-copy h2{font-size:clamp(2.45rem,5vw,5rem);line-height:.98;max-width:760px;margin:.65rem 0 1.35rem;letter-spacing:-.055em}
.decision-lab-copy p{font-size:1.08rem;line-height:1.8;color:rgba(255,255,255,.72);max-width:680px}
.decision-lab-points{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}.decision-lab-points span{display:inline-flex;align-items:center;gap:8px;padding:10px 13px;border:1px solid rgba(255,255,255,.12);border-radius:999px;background:rgba(255,255,255,.055);font-size:.86rem;color:rgba(255,255,255,.82)}.decision-lab-points .icon{width:17px;color:#77e8ff}
.finder-panel{background:rgba(255,255,255,.97);color:#10152a;border-radius:30px;padding:clamp(24px,4vw,42px);box-shadow:0 32px 90px rgba(0,0,0,.35);min-height:520px;position:relative;overflow:hidden}
.finder-panel:after{content:"";position:absolute;right:-80px;bottom:-100px;width:260px;height:260px;background:radial-gradient(circle,rgba(106,94,255,.13),transparent 67%);pointer-events:none}
.finder-progress{height:5px;background:#edf0f8;border-radius:999px;margin-bottom:32px;overflow:hidden}.finder-progress span{display:block;width:33.333%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#5d57ff,#9d4eff,#17bfd1);transition:width .35s ease}
.finder-step-label{font-size:.72rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:#6c7290}.finder-step h3,.finder-result h3{font-size:clamp(1.65rem,3vw,2.4rem);letter-spacing:-.04em;margin:.65rem 0 1.5rem}.finder-options{display:grid;gap:12px}.finder-options-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.finder-option{appearance:none;border:1px solid #e7e9f2;background:#fff;border-radius:20px;padding:18px;text-align:left;cursor:pointer;transition:.22s ease;color:#171c34}.finder-option:hover,.finder-option:focus-visible{transform:translateY(-3px);border-color:#7a6aff;box-shadow:0 14px 34px rgba(79,67,196,.12);outline:none}.finder-option>span{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:linear-gradient(145deg,#f0efff,#ecfbff);color:#5d57ff;margin-bottom:17px}.finder-option>span .icon{width:22px}.finder-option strong{display:block;font-size:1rem}.finder-option small{display:block;color:#777e96;line-height:1.5;margin-top:5px}.finder-option-line{display:flex;align-items:center;justify-content:space-between;padding:17px 19px}.finder-option-line .icon{width:20px}
.finder-budget-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.finder-budget-list button{border:1px solid #e5e8f2;border-radius:18px;background:#f8f9fd;padding:20px 14px;font-weight:800;color:#171c34;cursor:pointer;transition:.2s}.finder-budget-list button:hover{border-color:#6c5dff;background:#f1efff;transform:translateY(-2px)}
.finder-back,.finder-restart{border:0;background:none;color:#666d89;font-weight:700;margin-top:20px;padding:7px 0;cursor:pointer;text-decoration:underline;text-underline-offset:4px}.finder-result{text-align:center;padding:30px 10px}.finder-result-icon{display:grid;place-items:center;width:72px;height:72px;margin:0 auto 20px;border-radius:24px;background:linear-gradient(145deg,#5d57ff,#a549ff);color:#fff;box-shadow:0 18px 38px rgba(91,69,255,.26)}.finder-result-icon .icon{width:31px}.finder-result p{color:#686f88;line-height:1.7;max-width:490px;margin:0 auto 22px}

.comparison-section{padding:clamp(80px,9vw,128px) 0}.comparison-matrix{border:1px solid #e4e7f0;border-radius:28px;background:#fff;overflow:hidden;box-shadow:0 30px 75px rgba(30,38,78,.08)}.comparison-row{display:grid;grid-template-columns:170px repeat(3,minmax(0,1fr));border-top:1px solid #eceef5}.comparison-row:first-child{border-top:0}.comparison-row>div{padding:22px;border-left:1px solid #eceef5;display:flex;align-items:center;line-height:1.55;color:#525a73}.comparison-label{border-left:0!important;font-size:.72rem!important;font-weight:900!important;text-transform:uppercase;letter-spacing:.13em;color:#737a91!important;background:#fafbfe}.comparison-row-head{align-items:stretch}.comparison-product{position:relative;padding:25px!important;display:block!important;text-align:center;background:#fff}.comparison-product.is-highlighted{background:linear-gradient(180deg,#f5f2ff,#fff)}.comparison-product-media{height:190px;display:grid;place-items:center;margin-bottom:14px}.comparison-product-media img{max-height:100%;max-width:100%;object-fit:contain}.comparison-product h3{font-size:1rem;margin:12px 0 0;letter-spacing:-.02em}.comparison-rank{position:absolute;top:14px;right:16px;color:#d6d8e3;font-size:1.5rem;font-weight:900}.comparison-row-actions>div:not(.comparison-label){justify-content:center}.comparison-row-actions .button{width:100%;justify-content:center}

.fresh-section{padding:clamp(80px,9vw,120px) 0;background:linear-gradient(180deg,#fff,#f5f8ff);overflow:hidden}.fresh-layout{display:grid;grid-template-columns:340px minmax(0,1fr);gap:52px;align-items:start}.fresh-copy{position:sticky;top:120px}.fresh-copy h2{font-size:clamp(2.1rem,4vw,3.7rem);line-height:1.04;letter-spacing:-.05em;margin:.6rem 0 1rem}.fresh-copy p{color:#697089;line-height:1.75}.fresh-status{display:flex;align-items:flex-start;gap:10px;margin-top:25px;padding:15px;border:1px solid #dfe5f2;border-radius:17px;background:rgba(255,255,255,.72);font-size:.84rem;line-height:1.5;color:#626a84}.fresh-status i{width:9px;height:9px;border-radius:50%;background:#27c98c;box-shadow:0 0 0 5px rgba(39,201,140,.12);margin-top:4px;flex:0 0 auto}.fresh-rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(245px,290px);gap:17px;overflow-x:auto;padding:8px 4px 25px;scroll-snap-type:x mandatory;cursor:grab;scrollbar-width:thin}.fresh-rail.is-dragging{cursor:grabbing;scroll-snap-type:none}.fresh-card{scroll-snap-align:start;display:flex;flex-direction:column;min-height:390px;border:1px solid #e2e6f0;border-radius:24px;background:#fff;color:#14192c;text-decoration:none;overflow:hidden;position:relative;transition:.25s ease;box-shadow:0 14px 36px rgba(30,41,78,.07)}.fresh-card:hover{transform:translateY(-6px);box-shadow:0 24px 54px rgba(39,47,91,.13)}.fresh-card-index{position:absolute;top:16px;right:17px;font-weight:900;color:#d5d9e5;z-index:2}.fresh-card-media{height:220px;display:grid;place-items:center;padding:26px;background:linear-gradient(145deg,#f8faff,#f1f3ff)}.fresh-card-media img{max-width:100%;max-height:100%;object-fit:contain}.fresh-card-copy{padding:21px;display:flex;flex-direction:column;flex:1}.fresh-card-copy small{color:#7566ff;font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.1em}.fresh-card-copy strong{font-size:1.02rem;line-height:1.38;margin:10px 0 18px}.fresh-card-copy em{margin-top:auto;font-style:normal;color:#4f46db;font-size:.84rem;font-weight:800;display:flex;align-items:center;gap:7px}.fresh-card-copy em .icon{width:17px}

.newsletter-stage-section{padding:28px 0 100px;background:#f5f8ff}.newsletter-stage{position:relative;overflow:hidden;background:linear-gradient(125deg,#10152c,#24205a 56%,#5d2f91);border-radius:34px;padding:clamp(34px,6vw,74px);color:#fff;display:grid;grid-template-columns:1fr minmax(340px,.72fr);gap:55px;align-items:center;box-shadow:0 35px 90px rgba(26,24,75,.25)}.newsletter-stage:before{content:"";position:absolute;inset:0;background:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:42px 42px;mask-image:linear-gradient(90deg,#000,transparent 76%)}.newsletter-stage-orb{position:absolute;width:360px;height:360px;border-radius:50%;right:-120px;top:-160px;background:radial-gradient(circle,#7cecff 0%,rgba(111,86,255,.42) 32%,transparent 70%);filter:blur(8px);opacity:.8}.newsletter-stage>*:not(.newsletter-stage-orb){position:relative;z-index:1}.newsletter-stage-copy h2{font-size:clamp(2.2rem,4.5vw,4.3rem);line-height:1;letter-spacing:-.055em;margin:.6rem 0 1rem}.newsletter-stage-copy p{color:rgba(255,255,255,.72);font-size:1.04rem;line-height:1.7;max-width:680px}.newsletter-stage-form>div{display:flex;background:#fff;border-radius:16px;padding:6px}.newsletter-stage-form input{min-width:0;flex:1;border:0;padding:0 16px;font:inherit;outline:none;border-radius:12px}.newsletter-stage-form .button{white-space:nowrap}.newsletter-stage-form small{display:block;color:rgba(255,255,255,.58);margin-top:11px}.newsletter-stage-form .newsletter-message{color:#9df5ff;font-size:.84rem;margin-top:8px}

@media(max-width:1050px){.decision-lab-shell{grid-template-columns:1fr}.finder-panel{min-height:auto}.fresh-layout{grid-template-columns:1fr}.fresh-copy{position:static}.newsletter-stage{grid-template-columns:1fr}.comparison-row{grid-template-columns:130px repeat(3,minmax(190px,1fr))}.comparison-matrix{overflow-x:auto}}
@media(max-width:720px){.decision-lab-section{padding-top:68px}.decision-lab-shell{gap:32px}.finder-panel{padding:23px;border-radius:24px}.finder-options-grid,.finder-budget-list{grid-template-columns:1fr}.comparison-section{overflow:hidden}.comparison-matrix{border-radius:20px}.comparison-row{grid-template-columns:110px repeat(3,205px)}.comparison-row>div{padding:17px}.comparison-product-media{height:145px}.fresh-rail{margin-right:-20px;grid-auto-columns:78vw}.newsletter-stage-section{padding-bottom:70px}.newsletter-stage{border-radius:25px;padding:28px 22px}.newsletter-stage-form>div{display:grid;background:transparent;gap:10px;padding:0}.newsletter-stage-form input{height:52px;background:#fff;padding:0 15px}.newsletter-stage-form .button{width:100%;justify-content:center}}

/* Category landing pages 1.4 */
.category-hero-pro{padding:clamp(80px,10vw,145px) 0 80px;position:relative;overflow:hidden;background:linear-gradient(145deg,#f7f9ff,#eef0ff 52%,#f8f1ff)}.category-hero-mesh{position:absolute;inset:0;background:radial-gradient(circle at 15% 30%,rgba(79,105,255,.18),transparent 30%),radial-gradient(circle at 85% 25%,rgba(168,66,255,.18),transparent 30%),linear-gradient(rgba(64,73,130,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(64,73,130,.045) 1px,transparent 1px);background-size:auto,auto,42px 42px,42px 42px}.category-hero-grid{position:relative;display:grid;grid-template-columns:1fr minmax(390px,.8fr);gap:70px;align-items:center}.category-hero-copy h1{font-size:clamp(3.6rem,8vw,7.8rem);letter-spacing:-.07em;line-height:.88;margin:.65rem 0 1.25rem}.category-hero-copy>p{font-size:1.14rem;line-height:1.8;color:#626a83;max-width:690px}.category-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0}.category-hero-meta{display:flex;align-items:center;gap:11px;color:#6d748b;font-size:.83rem}.category-hero-meta strong{font-size:1.3rem;color:#171b31}.category-hero-meta i{width:5px;height:5px;border-radius:50%;background:#8b7cff}.category-hero-product{min-height:540px;display:flex;flex-direction:column;text-decoration:none;color:#171b31;border:1px solid rgba(255,255,255,.8);border-radius:30px;background:rgba(255,255,255,.72);backdrop-filter:blur(16px);box-shadow:0 32px 75px rgba(40,42,90,.14);padding:25px;position:relative}.category-hero-product-badge{position:absolute;top:22px;left:22px;z-index:2;padding:8px 11px;border-radius:999px;background:#171b31;color:#fff;font-size:.72rem;font-weight:800}.category-hero-product-media{height:350px;display:grid;place-items:center;padding:35px}.category-hero-product-media img{max-width:100%;max-height:100%;object-fit:contain;transform:scale(var(--product-zoom,1));object-position:var(--product-x,50%) var(--product-y,50%)}.category-hero-product-copy{margin-top:auto;padding:8px}.category-hero-product-copy small{display:block;text-transform:uppercase;letter-spacing:.12em;font-weight:800;font-size:.7rem;color:#786cff}.category-hero-product-copy strong{display:block;font-size:1.35rem;line-height:1.25;margin:9px 0 14px}.category-hero-product-copy em{font-style:normal;font-weight:800;color:#4e46d8;display:flex;align-items:center;gap:7px}.category-filter-bar{position:sticky;top:74px;z-index:15;background:rgba(255,255,255,.88);backdrop-filter:blur(15px);border-top:1px solid #e9ebf3;border-bottom:1px solid #e9ebf3}.category-filter-inner{min-height:74px;display:flex;align-items:center;justify-content:space-between;gap:20px}.category-filter-inner>span{font-weight:800}.category-filter-inner>div{display:flex;gap:7px;overflow-x:auto}.category-filter-inner button{border:0;background:#f1f3f8;color:#626980;padding:9px 13px;border-radius:999px;font-weight:750;cursor:pointer;white-space:nowrap}.category-filter-inner button.is-active{background:#171b31;color:#fff}.category-products-pro{padding:100px 0;background:#fff}.category-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.category-product-card{border:1px solid #e4e7ef;border-radius:25px;overflow:hidden;background:#fff;box-shadow:0 14px 34px rgba(38,47,82,.06);transition:.25s}.category-product-card:hover{transform:translateY(-5px);box-shadow:0 25px 55px rgba(38,47,82,.12)}.category-product-card[hidden]{display:none}.category-product-media{height:310px;display:grid;place-items:center;padding:30px;background:linear-gradient(145deg,#f8faff,#f2f3fb);position:relative}.category-product-media img{max-width:100%;max-height:100%;object-fit:contain;transform:scale(var(--product-zoom,1));object-position:var(--product-x,50%) var(--product-y,50%)}.category-product-index{position:absolute;top:15px;right:17px;color:#d2d6e2;font-size:1.25rem;font-weight:900}.category-product-copy{padding:24px;display:flex;flex-direction:column;min-height:315px}.category-product-copy>small{color:#7669ed;margin:13px 0 5px;font-size:.78rem;font-weight:800}.category-product-copy h3{font-size:1.2rem;margin:5px 0 10px}.category-product-copy p{color:#687087;line-height:1.65}.category-product-ideal{display:grid;gap:3px;margin:15px 0}.category-product-ideal span{font-size:.68rem;text-transform:uppercase;letter-spacing:.12em;color:#8a90a2}.category-product-ideal strong{font-size:.88rem}.category-product-copy .button{margin-top:auto;justify-content:center}.category-confidence-pro{padding:30px 0 110px;background:#fff}.category-confidence-grid{border-radius:30px;background:#11162e;color:#fff;padding:clamp(32px,6vw,70px);display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center}.category-confidence-grid>div>span{display:grid;place-items:center;width:55px;height:55px;border-radius:18px;background:linear-gradient(145deg,#675bff,#a747ff);margin-bottom:22px}.category-confidence-grid h2{font-size:clamp(2rem,4vw,3.6rem);letter-spacing:-.05em;margin:0 0 14px}.category-confidence-grid p{color:rgba(255,255,255,.68);line-height:1.75}.category-confidence-grid ul{list-style:none;margin:0;padding:0;display:grid;gap:15px}.category-confidence-grid li{padding:16px 18px;border:1px solid rgba(255,255,255,.1);border-radius:16px;background:rgba(255,255,255,.055)}
@media(max-width:980px){.category-hero-grid,.category-confidence-grid{grid-template-columns:1fr}.category-product-grid{grid-template-columns:repeat(2,1fr)}.category-filter-inner{align-items:flex-start;flex-direction:column;padding:14px 0}.category-filter-bar{top:65px}}
@media(max-width:650px){.category-hero-pro{padding-top:64px}.category-hero-product{min-height:450px}.category-hero-product-media{height:275px}.category-product-grid{grid-template-columns:1fr}.category-filter-inner>div{width:100%}.category-product-media{height:280px}}


/* v1.4.1 — Comparison matrix image containment and adaptive columns */
.comparison-matrix{
  --comparison-products:3;
}
.comparison-matrix.comparison-count-1{--comparison-products:1}
.comparison-matrix.comparison-count-2{--comparison-products:2}
.comparison-matrix.comparison-count-3{--comparison-products:3}
.comparison-matrix .comparison-row{
  grid-template-columns:170px repeat(var(--comparison-products),minmax(0,1fr));
}
.comparison-product{
  min-width:0;
  overflow:hidden;
  isolation:isolate;
}
.comparison-product-media{
  position:relative;
  height:230px;
  padding:24px 22px 12px;
  overflow:hidden;
  display:grid;
  place-items:center;
  margin:0 0 8px;
}
.comparison-product-media::after{
  content:"";
  position:absolute;
  inset:auto 12% 3px;
  height:18px;
  border-radius:50%;
  background:radial-gradient(ellipse,rgba(30,37,70,.13),transparent 68%);
  pointer-events:none;
}
.comparison-product-media img{
  display:block;
  width:auto;
  height:auto;
  max-width:88%;
  max-height:178px;
  object-fit:contain;
  object-position:center;
  transform:scale(min(var(--product-zoom,1),1.08));
  transform-origin:center;
  position:relative;
  z-index:1;
}
.comparison-product h3{
  position:relative;
  z-index:3;
  min-height:2.7em;
  margin:10px 5px 0;
  padding:0 5px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  line-height:1.35;
  background:inherit;
}
.comparison-product .badge{
  position:relative;
  z-index:4;
}
.comparison-rank{
  z-index:4;
}
@media (max-width:1050px){
  .comparison-matrix .comparison-row{
    grid-template-columns:130px repeat(var(--comparison-products),minmax(220px,1fr));
  }
}
@media (max-width:720px){
  .comparison-matrix .comparison-row{
    grid-template-columns:105px repeat(var(--comparison-products),220px);
  }
  .comparison-product-media{
    height:190px;
    padding:20px 16px 10px;
  }
  .comparison-product-media img{
    max-height:145px;
    max-width:86%;
  }
  .comparison-product h3{
    min-height:2.6em;
    font-size:.94rem;
  }
}


/* =========================================================
   v1.4.2 — Product media containment safeguards
   Prevent Curator zoom/position values from covering captions
   in the hero and other editorial cards.
   ========================================================= */
.hero-tile{
    isolation:isolate;
    grid-template-rows:minmax(0,1fr) auto;
}
.hero-tile-media{
    position:relative;
    z-index:1;
    overflow:hidden;
    contain:paint;
}
.hero-tile-media img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    max-width:none;
    max-height:none;
    padding:18px;
    object-fit:contain;
    box-sizing:border-box;
}
.hero-tile-1 .hero-tile-media img{
    max-height:none;
    padding:24px;
}
.hero-tile-copy{
    position:relative;
    z-index:3;
    min-height:64px;
    box-sizing:border-box;
    border-top:1px solid rgba(31,39,73,.06);
}
.hero-tile-1 .hero-tile-copy{
    min-height:86px;
}
.hero-tile-2 .hero-tile-media img,
.hero-tile-3 .hero-tile-media img{
    padding:12px 14px 8px;
    transform:scale(min(var(--product-zoom,1),1.08));
}

/* Generic safety for product cards using Curator transforms. */
.hero-product-media,
.selection-bento-media,
.universe-product-media,
.radar-card-media,
.category-product-media,
.category-hero-product-media,
.compare-product-media{
    overflow:hidden;
    contain:paint;
}

@media (max-width: 720px){
    .hero-tile-copy{min-height:58px}
    .hero-tile-1 .hero-tile-copy{min-height:72px}
    .hero-tile-2 .hero-tile-media img,
    .hero-tile-3 .hero-tile-media img{padding:9px 10px 5px}
}

/* =========================================================
   SauronIT Pro 1.5 — Production polish layer
   ========================================================= */
:root {
    --sit-ink: #071331;
    --sit-muted: #66718d;
    --sit-line: rgba(15, 32, 76, .11);
    --sit-surface: rgba(255,255,255,.84);
    --sit-accent: #6d42ff;
    --sit-accent-2: #18b8ff;
    --sit-radius-xl: 32px;
    --sit-shadow: 0 24px 70px rgba(19, 35, 84, .12);
}

html { scroll-behavior: smooth; }
body { text-rendering: optimizeLegibility; }
:focus-visible { outline: 3px solid rgba(109,66,255,.42); outline-offset: 4px; }
.skip-link:focus { position: fixed; left: 18px; top: 18px; z-index: 99999; padding: 12px 18px; border-radius: 12px; background: #fff; color: var(--sit-ink); box-shadow: var(--sit-shadow); }

/* One global contract for every product image: media never invades copy. */
.hero-tile-media,
.selection-card-media,
.comparison-product-media,
.category-hero-product-media,
.category-product-media,
.product-archive-media,
.experience-product-media,
.fresh-card-media,
.offer-card-media,
.related-product-media,
.product-detail-image-frame {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.hero-tile-media img,
.selection-card-media img,
.comparison-product-media img,
.category-hero-product-media img,
.category-product-media img,
.product-archive-media img,
.experience-product-media img,
.fresh-card-media img,
.offer-card-media img,
.related-product-media img,
.product-detail-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: var(--product-x, 50%) var(--product-y, 50%);
    transform: scale(min(var(--product-zoom, 1), 1.12));
    transform-origin: var(--product-x, 50%) var(--product-y, 50%);
}
.product-fit-cover img { object-fit: cover; }

.breadcrumbs { display:flex; flex-wrap:wrap; gap:9px; align-items:center; margin:0 0 28px; color:#7a849d; font-size:.78rem; font-weight:700; }
.breadcrumbs a { color:#526079; text-decoration:none; }
.breadcrumbs a:hover { color:var(--sit-accent); }

/* Search and editorial archives */
.listing-hero,
.editorial-archive-hero {
    padding: clamp(80px, 10vw, 145px) 0 70px;
    background:
        radial-gradient(circle at 85% 10%, rgba(24,184,255,.14), transparent 32%),
        radial-gradient(circle at 12% 70%, rgba(109,66,255,.12), transparent 34%),
        linear-gradient(180deg,#f7faff 0%,#fff 100%);
    border-bottom:1px solid var(--sit-line);
}
.listing-hero h1,
.editorial-archive-hero h1 { max-width:900px; margin:14px 0 16px; font-size:clamp(2.5rem,6vw,5rem); line-height:.98; letter-spacing:-.055em; }
.listing-hero p,
.editorial-archive-hero p { max-width:760px; color:var(--sit-muted); font-size:1.12rem; }
.listing-search { max-width:680px; margin-top:32px; }
.listing-results,
.editorial-archive-body { padding:80px 0 110px; }
.universal-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.universal-card { overflow:hidden; border:1px solid var(--sit-line); border-radius:26px; background:#fff; box-shadow:0 14px 42px rgba(22,38,84,.07); transition:.25s ease; }
.universal-card:hover { transform:translateY(-6px); box-shadow:var(--sit-shadow); }
.universal-card-media { display:block; height:250px; padding:24px; background:linear-gradient(145deg,#f4f7ff,#fff); overflow:hidden; }
.universal-card-media img { width:100%; height:100%; object-fit:contain; }
.universal-placeholder { display:grid; width:100%; height:100%; place-items:center; color:#7755ff; background:linear-gradient(145deg,#edf3ff,#faf7ff); }
.universal-placeholder .icon { width:54px; height:54px; }
.universal-card-body { padding:26px; }
.universal-card-body h2 { margin:10px 0 12px; font-size:1.4rem; }
.universal-card-body h2 a { color:var(--sit-ink); text-decoration:none; }
.universal-card-body p { color:var(--sit-muted); }
.premium-empty { max-width:700px; margin:auto; padding:70px 36px; border:1px solid var(--sit-line); border-radius:30px; background:linear-gradient(145deg,#fff,#f4f7ff); text-align:center; }
.premium-empty > span { display:inline-grid; place-items:center; width:70px; height:70px; border-radius:22px; color:#fff; background:linear-gradient(135deg,var(--sit-accent),var(--sit-accent-2)); }

.editorial-magazine-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; }
.editorial-magazine-card { display:grid; grid-template-columns:220px 1fr; min-height:260px; overflow:hidden; border:1px solid var(--sit-line); border-radius:28px; background:#fff; box-shadow:0 14px 44px rgba(22,38,84,.07); }
.editorial-magazine-card.is-lead { grid-column:1 / -1; grid-template-columns:minmax(320px, .9fr) 1.1fr; min-height:430px; }
.editorial-magazine-media { overflow:hidden; background:#eff4ff; }
.editorial-magazine-media img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.editorial-magazine-card:hover .editorial-magazine-media img { transform:scale(1.035); }
.editorial-magazine-copy { align-self:center; padding:32px; }
.editorial-magazine-copy h2 { margin:12px 0 14px; font-size:clamp(1.45rem,2.2vw,2.5rem); }
.editorial-magazine-copy h2 a { color:var(--sit-ink); text-decoration:none; }
.editorial-magazine-copy p { color:var(--sit-muted); }

/* Final product detail */
.product-detail-top { padding:115px 0 80px; background:radial-gradient(circle at 80% 10%,rgba(24,184,255,.15),transparent 34%),linear-gradient(180deg,#f7faff,#fff); }
.product-detail-hero-final { display:grid; grid-template-columns:minmax(0,1fr) minmax(420px,.88fr); gap:72px; align-items:center; }
.product-detail-media-final { position:relative; min-height:610px; padding:50px; overflow:hidden; border:1px solid rgba(109,66,255,.13); border-radius:40px; background:rgba(255,255,255,.82); box-shadow:var(--sit-shadow); }
.product-detail-glow { position:absolute; inset:18% 16%; border-radius:50%; background:radial-gradient(circle,rgba(109,66,255,.22),rgba(24,184,255,.09) 45%,transparent 70%); filter:blur(22px); }
.product-detail-image-frame { height:510px; z-index:1; }
.product-detail-summary-final h1 { margin:12px 0 20px; font-size:clamp(2.5rem,5vw,5.2rem); line-height:.98; letter-spacing:-.055em; }
.product-detail-headline { color:var(--sit-accent); font-weight:800; }
.product-detail-lead { color:var(--sit-muted); font-size:1.15rem; line-height:1.7; }
.product-fact-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:28px 0; }
.product-fact-grid > div { display:grid; grid-template-columns:auto 1fr; gap:4px 12px; padding:18px; border:1px solid var(--sit-line); border-radius:18px; background:rgba(255,255,255,.74); }
.product-fact-grid .icon { grid-row:1/3; width:22px; color:var(--sit-accent); }
.product-fact-grid small { color:#7c869c; font-weight:700; }
.product-fact-grid strong { color:var(--sit-ink); }
.product-detail-editorial { padding:90px 0; }
.product-detail-editorial-grid { display:grid; grid-template-columns:minmax(0,1.5fr) minmax(280px,.55fr); gap:60px; }
.product-detail-article h2 { font-size:clamp(2rem,4vw,3.7rem); }
.product-detail-aside { display:grid; align-content:start; gap:18px; }
.product-detail-aside-card { padding:26px; border:1px solid var(--sit-line); border-radius:24px; background:#f8faff; }
.product-detail-aside-card .icon { width:30px; color:var(--sit-accent); }
.related-products-final { padding:90px 0 115px; background:#f6f8ff; }
.related-product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.related-product-card { overflow:hidden; border:1px solid var(--sit-line); border-radius:26px; background:#fff; }
.related-product-media { display:block; height:260px; padding:24px; background:linear-gradient(145deg,#f4f7ff,#fff); }
.related-product-card > div { padding:24px; }
.related-product-card h3 a { color:var(--sit-ink); text-decoration:none; }

/* Back to top and subtle page progress */
.back-to-top { position:fixed; right:22px; bottom:22px; z-index:80; display:grid; width:48px; height:48px; place-items:center; border:0; border-radius:16px; color:#fff; background:linear-gradient(135deg,var(--sit-accent),#8055ff); box-shadow:0 12px 34px rgba(109,66,255,.3); opacity:0; visibility:hidden; transform:translateY(12px); transition:.2s ease; cursor:pointer; }
.back-to-top.is-visible { opacity:1; visibility:visible; transform:none; }
.back-to-top .icon { width:20px; transform:rotate(-90deg); }

@media (max-width: 980px) {
    .universal-card-grid { grid-template-columns:repeat(2,1fr); }
    .editorial-magazine-card,
    .editorial-magazine-card.is-lead { grid-template-columns:1fr; min-height:0; }
    .editorial-magazine-media { height:280px; }
    .product-detail-hero-final { grid-template-columns:1fr; gap:42px; }
    .product-detail-media-final { min-height:500px; }
    .product-detail-image-frame { height:410px; }
    .product-detail-editorial-grid { grid-template-columns:1fr; }
}
@media (max-width: 700px) {
    .universal-card-grid,
    .related-product-grid { grid-template-columns:1fr; }
    .editorial-magazine-grid { grid-template-columns:1fr; }
    .editorial-magazine-card.is-lead { grid-column:auto; }
    .editorial-magazine-media { height:230px; }
    .product-detail-top { padding-top:90px; }
    .product-detail-media-final { min-height:390px; padding:28px; border-radius:28px; }
    .product-detail-image-frame { height:320px; }
    .product-fact-grid { grid-template-columns:1fr; }
    .product-detail-summary-final h1 { font-size:2.65rem; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior:auto; }
    *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}


/* === SauronIT Pro 1.6: mobile conversion, performance and production polish === */
.footer-custom-logo{max-height:46px;width:auto;object-fit:contain}.footer-custom-brand{display:inline-flex;align-items:center}
.mobile-bottom-nav,.mobile-product-cta{display:none}
@media (max-width:782px){
 body{padding-bottom:74px}.site-footer{padding-bottom:82px}.back-to-top{bottom:86px}
 .mobile-bottom-nav{position:fixed;left:12px;right:12px;bottom:10px;z-index:1200;display:grid;grid-template-columns:repeat(4,1fr);gap:4px;padding:7px;background:rgba(8,18,48,.94);border:1px solid rgba(255,255,255,.12);border-radius:20px;box-shadow:0 18px 45px rgba(5,14,42,.35);backdrop-filter:blur(18px)}
 .mobile-bottom-nav a,.mobile-bottom-nav button{appearance:none;border:0;background:transparent;color:#dbe6ff;display:flex;min-height:52px;flex-direction:column;align-items:center;justify-content:center;gap:4px;font-size:11px;font-weight:700;text-decoration:none;border-radius:14px}
 .mobile-bottom-nav a:hover,.mobile-bottom-nav a:focus-visible,.mobile-bottom-nav button:hover,.mobile-bottom-nav button:focus-visible{background:rgba(123,86,255,.22);color:#fff}
 .mobile-bottom-nav svg{width:20px;height:20px}
 body.single-sauron_product{padding-bottom:144px}
 .mobile-product-cta{position:fixed;left:12px;right:12px;bottom:78px;z-index:1190;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 10px 10px 16px;background:rgba(255,255,255,.97);border:1px solid rgba(52,73,125,.16);border-radius:18px;box-shadow:0 18px 50px rgba(4,18,60,.24);backdrop-filter:blur(14px)}
 .mobile-product-cta div{min-width:0;display:grid;gap:2px}.mobile-product-cta small{font-size:10px;text-transform:uppercase;letter-spacing:.08em;color:#66708b}.mobile-product-cta strong{font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mobile-product-cta .button{white-space:nowrap;padding:12px 15px;font-size:13px}
 .custom-logo{max-width:205px;max-height:52px}.footer-custom-logo{max-width:190px;max-height:42px}
}
@media (min-width:783px){.mobile-bottom-nav,.mobile-product-cta{display:none!important}}
@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}

/* === SauronIT Pro 1.7: Comparativas y Guías editoriales === */
.editorial-hub-hero{position:relative;overflow:hidden;padding:110px 0 90px;background:#f4f7ff}.editorial-hub-hero:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(87,103,180,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(87,103,180,.06) 1px,transparent 1px);background-size:58px 58px;mask-image:linear-gradient(to bottom,#000,transparent)}.comparisons-hub-hero{background:radial-gradient(circle at 82% 16%,rgba(118,69,255,.22),transparent 32%),linear-gradient(135deg,#f7f5ff,#edf4ff)}.guides-hub-hero{background:radial-gradient(circle at 82% 20%,rgba(0,199,210,.2),transparent 32%),linear-gradient(135deg,#effcff,#f7f5ff)}.editorial-hub-hero-grid{position:relative;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);align-items:center;gap:70px}.editorial-hub-intro h1{max-width:800px;margin:24px 0;font-size:clamp(3.5rem,6.5vw,6.5rem);line-height:.96;letter-spacing:-.065em}.editorial-hub-intro>p{max-width:720px;font-size:1.2rem;line-height:1.75;color:#5f6985}.editorial-hub-pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:34px}.editorial-hub-pills a{padding:12px 17px;border:1px solid rgba(65,78,135,.16);border-radius:999px;background:rgba(255,255,255,.72);color:var(--sit-ink);font-weight:750;text-decoration:none;box-shadow:0 8px 25px rgba(28,42,92,.06)}
.comparison-visual{position:relative;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;min-height:430px;padding:38px;border-radius:42px;background:linear-gradient(145deg,#101740,#1b1358 60%,#123961);box-shadow:0 35px 80px rgba(17,24,70,.25)}.comparison-visual:before{content:"";position:absolute;inset:0;border:1px solid rgba(255,255,255,.12);border-radius:inherit;pointer-events:none}.comparison-visual-card{position:relative;display:grid;align-content:end;min-height:270px;padding:28px;border-radius:30px;color:#fff;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.14);backdrop-filter:blur(16px)}.comparison-visual-card.is-a{transform:rotate(-4deg)}.comparison-visual-card.is-b{transform:rotate(4deg)}.comparison-visual-card span{position:absolute;top:22px;right:22px;font-size:3rem;font-weight:900;opacity:.16}.comparison-visual-card strong{font-size:1.6rem}.comparison-visual-card small{margin-top:7px;color:#cbd4ff}.comparison-vs{position:relative;z-index:2;display:grid;width:62px;height:62px;place-items:center;margin:0 -12px;border-radius:50%;background:#fff;color:#5f3cff;font-weight:950;box-shadow:0 15px 35px rgba(0,0,0,.2)}
.guide-visual{position:relative;min-height:430px;border-radius:50%;background:radial-gradient(circle,#fff 0 22%,rgba(255,255,255,.5) 23% 24%,transparent 25%),linear-gradient(145deg,rgba(0,197,210,.2),rgba(113,72,255,.18));border:1px solid rgba(72,91,150,.12)}.guide-visual-orbit{position:absolute;inset:11%;border:1px dashed rgba(80,83,173,.3);border-radius:50%;animation:guide-spin 24s linear infinite}.guide-visual-icon{position:absolute;inset:50% auto auto 50%;display:grid;width:110px;height:110px;place-items:center;border-radius:32px;background:linear-gradient(135deg,#5f3cff,#00bddd);color:#fff;transform:translate(-50%,-50%) rotate(8deg);box-shadow:0 24px 55px rgba(75,64,197,.28)}.guide-visual-icon .icon{width:50px}.guide-visual-note{position:absolute;padding:14px 18px;border:1px solid rgba(76,86,140,.14);border-radius:17px;background:rgba(255,255,255,.9);font-weight:800;box-shadow:0 15px 35px rgba(34,49,105,.12)}.guide-visual-note.note-a{top:13%;left:2%}.guide-visual-note.note-b{top:24%;right:-2%}.guide-visual-note.note-c{bottom:10%;left:17%}@keyframes guide-spin{to{transform:rotate(360deg)}}
.editorial-featured-story{padding:90px 0;background:#fff}.editorial-featured-story-grid{display:grid;grid-template-columns:1.15fr .85fr;min-height:530px;overflow:hidden;border:1px solid var(--sit-line);border-radius:38px;background:#fff;box-shadow:0 30px 80px rgba(25,40,93,.11)}.editorial-featured-media{display:block;min-height:530px;background:linear-gradient(145deg,#eef2ff,#fafbff)}.editorial-featured-media img{width:100%;height:100%;object-fit:cover}.editorial-cover-placeholder{display:grid;width:100%;height:100%;min-height:300px;place-items:center;color:#7856ff;background:linear-gradient(145deg,#eff3ff,#f9f7ff)}.editorial-cover-placeholder .icon{width:70px}.editorial-featured-copy{display:flex;flex-direction:column;justify-content:center;padding:58px}.editorial-featured-copy h2{margin:16px 0;font-size:clamp(2.3rem,4vw,4.3rem);line-height:1.03;letter-spacing:-.045em}.editorial-featured-copy h2 a,.editorial-story-copy h3 a{color:var(--sit-ink);text-decoration:none}.editorial-featured-copy>p{font-size:1.08rem;line-height:1.75;color:#65708b}.article-meta-row{display:flex;flex-wrap:wrap;gap:18px;margin:14px 0;color:#76809a;font-size:.86rem;font-weight:700}.editorial-featured-copy .button{align-self:flex-start;margin-top:18px}
.guide-routes{padding:90px 0;background:#fff}.guide-route-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.guide-route-grid a{display:grid;min-height:210px;align-content:end;padding:28px;border:1px solid var(--sit-line);border-radius:28px;color:var(--sit-ink);text-decoration:none;background:linear-gradient(145deg,#fff,#f5f8ff);transition:.2s ease}.guide-route-grid a:hover{transform:translateY(-6px);border-color:rgba(112,74,255,.35);box-shadow:0 22px 50px rgba(36,52,108,.12)}.guide-route-grid a>span{display:grid;width:56px;height:56px;place-items:center;margin-bottom:28px;border-radius:18px;color:#fff;background:linear-gradient(135deg,#613cff,#00bcdc)}.guide-route-grid .icon{width:28px}.guide-route-grid strong{font-size:1.35rem}.guide-route-grid small{margin-top:8px;color:#6f7891}
.editorial-library{padding:100px 0;background:#f5f7fd}.editorial-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:42px}.editorial-story-card{overflow:hidden;border:1px solid var(--sit-line);border-radius:28px;background:#fff;box-shadow:0 18px 50px rgba(31,47,102,.07);transition:.2s ease}.editorial-story-card:hover{transform:translateY(-7px);box-shadow:0 28px 65px rgba(31,47,102,.13)}.editorial-story-media{position:relative;display:block;height:245px;background:#eef2ff}.editorial-story-media img{width:100%;height:100%;object-fit:cover}.story-kind{position:absolute;left:18px;top:18px;padding:8px 11px;border-radius:10px;color:#fff;background:#6841ff;font-size:.7rem;font-weight:900;text-transform:uppercase;letter-spacing:.06em}.guide-story-card .story-kind{background:#008fa5}.editorial-story-copy{padding:26px}.editorial-story-copy h3{margin:12px 0;font-size:1.45rem;line-height:1.22}.editorial-story-copy p{color:#68728b;line-height:1.65}.editorial-empty-state{display:grid;max-width:760px;min-height:300px;place-items:center;margin:42px auto 0;padding:50px;text-align:center;border:1px dashed rgba(100,91,180,.35);border-radius:32px;background:rgba(255,255,255,.75)}.editorial-empty-state>span .icon{width:52px;color:#714bff}.editorial-empty-state h3{font-size:2rem}.editorial-empty-state.compact{min-height:140px}.editorial-method{padding:105px 0;background:#0c1539;color:#fff}.editorial-method .section-heading h2{color:#fff}.editorial-method-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:44px}.editorial-method-grid article{padding:30px;border:1px solid rgba(255,255,255,.12);border-radius:26px;background:rgba(255,255,255,.06)}.editorial-method-grid article>span{color:#6cddff;font-size:.8rem;font-weight:900}.editorial-method-grid h3{font-size:1.35rem}.editorial-method-grid p{color:#bfc9e7;line-height:1.65}
.editorial-single-hero{padding:105px 0 70px;background:linear-gradient(135deg,#f4f7ff,#edf4ff)}.editorial-single-hero.is-comparison{background:radial-gradient(circle at 80% 20%,rgba(115,70,255,.18),transparent 30%),linear-gradient(135deg,#f7f5ff,#edf4ff)}.editorial-single-hero.is-guide{background:radial-gradient(circle at 80% 20%,rgba(0,190,207,.18),transparent 30%),linear-gradient(135deg,#effcff,#f7f5ff)}.editorial-single-hero h1{margin:22px 0;font-size:clamp(3rem,6vw,6rem);line-height:1;letter-spacing:-.06em}.editorial-single-deck{font-size:1.22rem;line-height:1.7;color:#626d88}.editorial-single-meta{display:flex;flex-wrap:wrap;gap:20px;margin-top:28px;color:#737d96;font-weight:700}.editorial-single-cover{height:min(650px,58vw);margin-top:50px;overflow:hidden;border-radius:36px;box-shadow:0 28px 75px rgba(29,43,96,.16)}.editorial-single-cover img{width:100%;height:100%;object-fit:cover}.editorial-single-layout{display:grid;grid-template-columns:280px minmax(0,780px);justify-content:center;gap:60px;padding-top:85px;padding-bottom:100px}.editorial-single-aside{position:relative}.editorial-toc-card,.editorial-trust-card{padding:24px;border:1px solid var(--sit-line);border-radius:24px;background:#fff}.editorial-toc-card{position:sticky;top:110px}.editorial-toc-card nav{display:grid;gap:5px;margin-top:18px}.editorial-toc-card nav a{padding:9px 0;color:#5f6983;font-size:.9rem;text-decoration:none;border-bottom:1px solid #edf0f7}.editorial-toc-card nav a:hover{color:#6841ff}.editorial-toc-card nav p{color:#777f96;font-size:.84rem}.editorial-trust-card{margin-top:18px;background:#f5f8ff}.editorial-trust-card>.icon{width:30px;color:#6943ff}.editorial-trust-card strong{display:block;margin:13px 0 6px}.editorial-trust-card p{margin:0;color:#69728b;font-size:.86rem;line-height:1.55}.editorial-summary-box{display:flex;gap:18px;margin-bottom:36px;padding:24px;border-radius:24px;background:#f4f1ff}.editorial-summary-box.guide-summary{background:#ebfbfd}.editorial-summary-box>.icon{flex:0 0 auto;width:32px;color:#6841ff}.editorial-summary-box strong{font-size:1.05rem}.editorial-summary-box p{margin:5px 0 0;color:#646e87}.editorial-prose{font-size:1.08rem;line-height:1.86;color:#28334e}.editorial-prose h2{margin-top:2.2em;font-size:2.25rem;line-height:1.15;letter-spacing:-.035em}.editorial-prose h3{margin-top:1.8em;font-size:1.55rem}.editorial-prose img{border-radius:24px}.editorial-prose blockquote{margin:35px 0;padding:22px 28px;border-left:4px solid #7049ff;border-radius:0 18px 18px 0;background:#f6f4ff;font-size:1.18rem}.editorial-prose table{width:100%;overflow:hidden;border-collapse:separate;border-spacing:0;border:1px solid var(--sit-line);border-radius:20px}.editorial-prose th,.editorial-prose td{padding:15px;border-bottom:1px solid var(--sit-line);text-align:left}.editorial-prose th{background:#f4f6fd}.editorial-disclosure{display:flex;gap:17px;margin-top:55px;padding:25px;border:1px solid rgba(84,105,165,.15);border-radius:24px;background:#f7f9ff}.editorial-disclosure>.icon{width:28px;color:#6243ff}.editorial-disclosure p{margin:5px 0 0;color:#66708a}.editorial-related{padding:90px 0 110px;background:#f5f7fd}.editorial-related-grid{margin-top:40px}
@media(max-width:1050px){.editorial-hub-hero-grid{grid-template-columns:1fr;gap:45px}.comparison-visual,.guide-visual{max-width:700px;width:100%;margin:auto}.editorial-featured-story-grid{grid-template-columns:1fr}.editorial-featured-media{min-height:410px}.guide-route-grid,.editorial-method-grid{grid-template-columns:repeat(2,1fr)}.editorial-single-layout{grid-template-columns:1fr;max-width:820px}.editorial-single-aside{order:2}.editorial-toc-card{position:static}.editorial-card-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.editorial-hub-hero{padding:85px 0 65px}.editorial-hub-intro h1{font-size:3.25rem}.comparison-visual{min-height:340px;padding:20px}.comparison-visual-card{min-height:220px;padding:18px}.comparison-visual-card strong{font-size:1.1rem}.comparison-vs{width:48px;height:48px}.guide-visual{min-height:340px}.guide-visual-note{font-size:.75rem}.editorial-featured-story{padding:60px 0}.editorial-featured-media{min-height:280px}.editorial-featured-copy{padding:30px}.editorial-featured-copy h2{font-size:2.35rem}.guide-route-grid,.editorial-method-grid,.editorial-card-grid{grid-template-columns:1fr}.guide-routes,.editorial-library{padding:70px 0}.editorial-story-media{height:225px}.editorial-single-hero{padding:80px 0 55px}.editorial-single-hero h1{font-size:3rem}.editorial-single-cover{height:65vw;margin-top:28px;border-radius:24px}.editorial-single-layout{padding-top:50px;gap:35px}.editorial-prose{font-size:1rem}.editorial-prose h2{font-size:1.85rem}}
@media(prefers-reduced-motion:reduce){.guide-visual-orbit{animation:none}}


/* Editorial product visuals (v1.7.1) */
.editorial-featured-media:has(.editorial-product-visual),
.editorial-story-media:has(.editorial-product-visual){overflow:hidden}
.editorial-product-visual{position:relative;display:grid;width:100%;height:100%;min-height:300px;place-items:center;overflow:hidden;background:radial-gradient(circle at 20% 20%,rgba(117,82,255,.18),transparent 34%),radial-gradient(circle at 82% 78%,rgba(40,190,255,.15),transparent 34%),linear-gradient(145deg,#eef2ff,#fbfcff)}
.editorial-product-shot{position:absolute;display:flex;flex-direction:column;align-items:center;justify-content:center;overflow:hidden;border:1px solid rgba(114,91,220,.16);border-radius:28px;background:rgba(255,255,255,.94);box-shadow:0 24px 60px rgba(35,47,103,.14);transform:rotate(-4deg)}
.editorial-product-shot-media{display:flex;align-items:center;justify-content:center;width:100%;height:calc(100% - 44px);overflow:hidden;padding:22px}
.editorial-product-shot img{width:100%;height:100%;object-fit:contain;object-position:var(--product-x,50%) var(--product-y,50%);transform:scale(min(var(--product-zoom,1),1.08))}
.editorial-product-shot>span{display:flex;align-items:center;width:100%;min-height:44px;padding:8px 16px;color:#17213f;font-size:.82rem;font-weight:900;background:#fff}
.editorial-product-visual-featured .shot-1,.editorial-product-visual-single .shot-1{left:8%;top:12%;width:48%;height:68%;z-index:2}
.editorial-product-visual-featured .shot-2,.editorial-product-visual-single .shot-2{right:8%;top:18%;width:38%;height:54%;z-index:3;transform:rotate(4deg)}
.editorial-product-visual-featured .shot-3,.editorial-product-visual-single .shot-3{right:22%;bottom:7%;width:30%;height:39%;z-index:4;transform:rotate(-2deg)}
.editorial-product-vs{position:absolute;left:50%;top:48%;z-index:8;display:grid;width:58px;height:58px;place-items:center;border-radius:50%;color:#fff;background:linear-gradient(135deg,#603cff,#8b5cff);box-shadow:0 15px 34px rgba(96,60,255,.35);font-size:.82rem;font-weight:1000;transform:translate(-50%,-50%)}
.editorial-product-visual-card{min-height:245px}
.editorial-product-visual-card .editorial-product-shot{border-radius:18px;box-shadow:0 14px 30px rgba(35,47,103,.12)}
.editorial-product-visual-card .shot-1{left:8%;top:12%;width:50%;height:72%;z-index:2}
.editorial-product-visual-card .shot-2{right:7%;top:18%;width:42%;height:64%;z-index:3;transform:rotate(4deg)}
.editorial-product-visual-card .editorial-product-vs{width:40px;height:40px;font-size:.65rem}
.editorial-single-product-cover{height:540px;padding:0;overflow:hidden;background:#f4f6ff}
.editorial-single-product-cover .editorial-product-visual{min-height:540px;border-radius:32px}
@media(max-width:700px){.editorial-product-visual-featured .shot-1,.editorial-product-visual-single .shot-1{left:5%;top:12%;width:56%;height:66%}.editorial-product-visual-featured .shot-2,.editorial-product-visual-single .shot-2{right:4%;top:21%;width:43%;height:50%}.editorial-product-visual-featured .shot-3,.editorial-product-visual-single .shot-3{right:20%;bottom:5%;width:35%;height:36%}.editorial-product-shot>span{font-size:.7rem}.editorial-single-product-cover{height:72vw}.editorial-single-product-cover .editorial-product-visual{min-height:72vw}}


/* v1.7.2 editorial cover fixes */
.story-kind{z-index:8}
.editorial-image,.editorial-story-media,.editorial-featured-media,.editorial-single-cover{position:relative;overflow:hidden}
.editorial-grid-pro .editorial-image .editorial-generic-cover,
.editorial-grid-pro .editorial-image .editorial-product-visual{height:220px;min-height:220px}
.editorial-story-media .editorial-generic-cover,
.editorial-featured-media .editorial-generic-cover,
.editorial-single-cover .editorial-generic-cover{width:100%;height:100%}
.editorial-generic-cover{position:relative;display:grid;place-items:center;min-height:245px;height:100%;overflow:hidden;background:radial-gradient(circle at 16% 18%,rgba(114,84,255,.20),transparent 34%),radial-gradient(circle at 84% 78%,rgba(0,188,212,.14),transparent 34%),linear-gradient(145deg,#eef3ff,#fafcff)}
.editorial-generic-cover::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.22));pointer-events:none}
.editorial-generic-cover .orb-a,.editorial-generic-cover .orb-b{position:absolute;border-radius:999px;filter:blur(8px);opacity:.6}
.editorial-generic-cover .orb-a{width:180px;height:180px;left:-40px;top:-35px;background:rgba(124,89,255,.18)}
.editorial-generic-cover .orb-b{width:140px;height:140px;right:-28px;bottom:-28px;background:rgba(35,195,255,.14)}
.editorial-generic-shell{position:relative;z-index:2;display:grid;justify-items:center;gap:18px;padding:32px 28px;text-align:center;width:min(100%,520px)}
.editorial-generic-kicker{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border:1px solid rgba(108,94,215,.12);border-radius:999px;background:rgba(255,255,255,.86);color:#5f55cf;font-size:.74rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.editorial-generic-icon{display:grid;place-items:center;width:112px;height:112px;border-radius:28px;background:rgba(255,255,255,.88);box-shadow:0 16px 40px rgba(26,39,89,.10);color:#6652ff}
.editorial-generic-icon .icon{width:56px;height:56px}
.editorial-generic-chips{display:flex;flex-wrap:wrap;justify-content:center;gap:10px}
.editorial-generic-chips span{padding:9px 12px;border-radius:999px;background:rgba(255,255,255,.78);border:1px solid rgba(107,118,168,.14);color:#45516f;font-size:.78rem;font-weight:700}
.editorial-generic-cover-comparison .editorial-generic-compare{position:relative;z-index:2;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:16px;width:min(92%,760px)}
.editorial-generic-cover-comparison .ghost-card{min-height:180px;padding:26px;border:1px solid rgba(109,121,182,.14);border-radius:28px;background:rgba(255,255,255,.88);box-shadow:0 18px 45px rgba(26,39,89,.11);display:flex;flex-direction:column;justify-content:flex-end}
.editorial-generic-cover-comparison .ghost-card span{color:#6854dd;font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.06em}
.editorial-generic-cover-comparison .ghost-card strong{margin-top:10px;font-size:1.6rem;line-height:1.05;color:#101b49}
.editorial-generic-cover-comparison .ghost-card small{margin-top:8px;color:#6a7491;font-size:.9rem;line-height:1.45}
.editorial-generic-cover-comparison .ghost-vs{display:grid;place-items:center;width:64px;height:64px;border-radius:999px;background:linear-gradient(135deg,#7254ff,#5e84ff);color:#fff;font-size:.84rem;font-weight:900;letter-spacing:.08em;box-shadow:0 12px 30px rgba(94,98,255,.32)}
.topic-audio .editorial-generic-icon{color:#6a53ff}
.topic-gaming .editorial-generic-icon{color:#0c8ba4}
.topic-mobile .editorial-generic-icon{color:#ff5f85}
.topic-offers .editorial-generic-icon{color:#ff8d39}
.topic-display .editorial-generic-icon{color:#3290ff}
.editorial-featured-media .editorial-generic-cover{min-height:530px}
.editorial-single-cover .editorial-generic-cover{min-height:520px;border-radius:32px}
@media(max-width:700px){.editorial-generic-cover-comparison .editorial-generic-compare{grid-template-columns:1fr;gap:12px;width:min(92%,420px)}.editorial-generic-cover-comparison .ghost-vs{margin-inline:auto;width:52px;height:52px}.editorial-generic-icon{width:88px;height:88px}.editorial-generic-icon .icon{width:44px;height:44px}.editorial-featured-media .editorial-generic-cover,.editorial-single-cover .editorial-generic-cover{min-height:280px}}


/* v1.7.3 simplified editorial illustrations */
.editorial-generic-shell,.editorial-generic-compare{display:none!important}
.editorial-symbol-stage{position:relative;z-index:3;display:flex;align-items:center;justify-content:center;gap:22px;width:100%;height:100%;padding:28px}
.editorial-symbol{display:grid;place-items:center;width:132px;height:132px;border-radius:34px;background:rgba(255,255,255,.92);box-shadow:0 22px 55px rgba(27,39,95,.14);color:#674fff}
.editorial-symbol .icon{width:68px;height:68px}
.editorial-symbol.symbol-a{transform:rotate(-5deg)}
.editorial-symbol.symbol-b{transform:rotate(5deg);color:#1d9fbd}
.editorial-symbol-vs{display:grid;place-items:center;flex:0 0 58px;width:58px;height:58px;border-radius:999px;background:linear-gradient(135deg,#6d4cff,#558eff);box-shadow:0 12px 28px rgba(100,82,255,.3);color:#fff;font-size:.75rem;font-weight:950;letter-spacing:.08em}
.editorial-symbol.symbol-main{width:150px;height:150px;border-radius:40px;color:#674fff}
.editorial-symbol-ring{position:absolute;border:1px solid rgba(103,79,255,.18);border-radius:999px;pointer-events:none}
.editorial-symbol-ring.ring-a{width:220px;height:220px}
.editorial-symbol-ring.ring-b{width:300px;height:300px;border-color:rgba(28,185,218,.13)}
.editorial-cover-topic{position:absolute;left:50%;bottom:18px;z-index:4;transform:translateX(-50%);padding:8px 13px;border-radius:999px;background:rgba(255,255,255,.9);border:1px solid rgba(103,79,255,.12);color:#4e57a2;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;white-space:nowrap}
.editorial-generic-cover-card .editorial-symbol{width:92px;height:92px;border-radius:25px}
.editorial-generic-cover-card .editorial-symbol .icon{width:46px;height:46px}
.editorial-generic-cover-card .editorial-symbol-vs{width:44px;height:44px;flex-basis:44px;font-size:.62rem}
.editorial-generic-cover-card .editorial-symbol.symbol-main{width:108px;height:108px}
.editorial-generic-cover-card .editorial-symbol-ring.ring-a{width:160px;height:160px}.editorial-generic-cover-card .editorial-symbol-ring.ring-b{width:215px;height:215px}
.editorial-generic-cover-home .editorial-symbol{width:92px;height:92px}.editorial-generic-cover-home .editorial-symbol .icon{width:46px;height:46px}.editorial-generic-cover-home .editorial-symbol-vs{width:42px;height:42px;flex-basis:42px}
.story-kind{z-index:20!important;isolation:isolate}
@media(max-width:700px){.editorial-symbol{width:86px;height:86px;border-radius:24px}.editorial-symbol .icon{width:42px;height:42px}.editorial-symbol-vs{width:42px;height:42px;flex-basis:42px}.editorial-symbol-stage{gap:12px;padding:18px}.editorial-cover-topic{bottom:10px}}

/* v1.8.0 corporate pages */
.corporate-page{background:#f7f9fd}.corporate-hero{position:relative;overflow:hidden;padding:105px 0 85px;background:radial-gradient(circle at 12% 18%,rgba(110,79,255,.17),transparent 30%),radial-gradient(circle at 88% 70%,rgba(41,193,255,.12),transparent 32%),linear-gradient(145deg,#eef4ff,#fbfcff)}.corporate-hero::after{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(59,78,139,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(59,78,139,.05) 1px,transparent 1px);background-size:54px 54px;mask-image:linear-gradient(to bottom,#000,transparent)}.corporate-hero .container-narrow{position:relative;z-index:1}.corporate-hero h1{margin:20px 0 18px;font-size:clamp(3.4rem,7vw,6.8rem);line-height:.96;letter-spacing:-.055em}.corporate-hero p{max-width:780px;margin:0;color:#5d6985;font-size:1.2rem;line-height:1.75}.corporate-layout{display:grid;grid-template-columns:290px minmax(0,1fr);gap:56px;padding-top:78px;padding-bottom:110px}.corporate-aside{display:grid;align-content:start;gap:18px}.corporate-nav-card,.corporate-trust-card{padding:26px;border:1px solid var(--sit-line);border-radius:26px;background:#fff;box-shadow:0 18px 48px rgba(33,48,101,.07)}.corporate-nav-card{position:sticky;top:110px}.corporate-nav-card strong{display:block;margin-bottom:14px;color:#15214a}.corporate-nav-card a{display:block;padding:11px 0;color:#59647f;text-decoration:none;border-bottom:1px solid #edf0f7}.corporate-nav-card a:last-child{border-bottom:0}.corporate-nav-card a:hover{color:#6846ff}.corporate-trust-card .icon{width:34px;color:#654cff}.corporate-trust-card strong{display:block;margin:13px 0 8px}.corporate-trust-card p{margin:0;color:#67718a;line-height:1.55}.corporate-content{max-width:900px;padding:50px 58px;border:1px solid var(--sit-line);border-radius:34px;background:#fff;box-shadow:0 24px 70px rgba(33,48,101,.08)}.corporate-content h2{margin:52px 0 18px;font-size:2rem;letter-spacing:-.03em}.corporate-content h2:first-child{margin-top:0}.corporate-content p,.corporate-content li{color:#55617c;line-height:1.82}.corporate-content ul{padding-left:1.3rem}.sauronit-legal-highlight,.sauronit-legal-warning{margin:28px 0;padding:22px 24px;border-radius:20px}.sauronit-legal-highlight{border:1px solid rgba(98,75,255,.2);background:#f1efff;color:#31277a}.sauronit-legal-warning{border:1px solid rgba(245,158,11,.28);background:#fff8e7;color:#7b4b00}.corporate-afiliacion .corporate-hero{background:radial-gradient(circle at 12% 18%,rgba(99,68,255,.18),transparent 30%),radial-gradient(circle at 88% 70%,rgba(255,105,128,.11),transparent 32%),linear-gradient(145deg,#f4f1ff,#fff)}.corporate-politica-de-privacidad .corporate-hero,.corporate-aviso-legal .corporate-hero{background:radial-gradient(circle at 12% 18%,rgba(0,167,185,.12),transparent 30%),linear-gradient(145deg,#effbfc,#fbfdff)}@media(max-width:900px){.corporate-layout{grid-template-columns:1fr}.corporate-nav-card{position:static}.corporate-aside{order:2}.corporate-content{padding:38px}}@media(max-width:600px){.corporate-hero{padding:80px 0 60px}.corporate-hero h1{font-size:3.2rem}.corporate-layout{padding-top:45px;padding-bottom:80px;gap:30px}.corporate-content{padding:28px 22px;border-radius:24px}}


/* v1.9.0 Contact page */
.corporate-contacto .corporate-hero{background:radial-gradient(circle at 20% 10%,rgba(117,82,255,.18),transparent 32%),radial-gradient(circle at 88% 60%,rgba(29,196,255,.14),transparent 34%),linear-gradient(180deg,#f7f9ff,#fff)}
.corporate-contacto .corporate-content>h2:first-child{margin-top:0;font-size:2rem}
.sitap-contact-form{position:relative;margin-top:30px;padding:34px;border:1px solid rgba(91,101,158,.16);border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(247,249,255,.96));box-shadow:0 24px 60px rgba(22,35,91,.09)}
.sitap-contact-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.sitap-contact-field{display:grid;gap:9px;margin-bottom:20px}
.sitap-contact-field>span{color:#162143;font-size:.9rem;font-weight:800}
.sitap-contact-field em,.sitap-contact-consent em{color:#e11d48;font-style:normal}
.sitap-contact-field input,.sitap-contact-field textarea{width:100%;border:1px solid rgba(76,89,145,.22);border-radius:15px;background:#fff;color:#101a3b;font:inherit;padding:15px 16px;outline:none;transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease}
.sitap-contact-field textarea{min-height:190px;resize:vertical;line-height:1.65}
.sitap-contact-field input:focus,.sitap-contact-field textarea:focus{border-color:#7049ff;box-shadow:0 0 0 4px rgba(112,73,255,.12)}
.sitap-contact-field small{color:#7a839b;font-size:.78rem}
.sitap-contact-consent{display:flex;align-items:flex-start;gap:11px;margin:2px 0 24px;color:#606b86;font-size:.9rem;line-height:1.5}
.sitap-contact-consent input{width:18px;height:18px;margin-top:2px;accent-color:#7049ff;flex:0 0 auto}
.sitap-contact-consent a{font-weight:800}
.sitap-contact-actions{display:flex;align-items:center;gap:22px;justify-content:space-between;padding-top:22px;border-top:1px solid rgba(81,93,143,.13)}
.sitap-contact-actions p{margin:0;color:#727c95;font-size:.86rem}
.sitap-contact-submit{min-width:190px;border:0;cursor:pointer}
.sitap-contact-honeypot{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important}
.sitap-contact-notice{display:flex;flex-direction:column;gap:4px;margin:0 0 22px;padding:16px 18px;border-radius:16px;font-size:.92rem}
.sitap-contact-notice.is-success{border:1px solid #a7e7c6;background:#effcf5;color:#13633b}
.sitap-contact-notice.is-error{border:1px solid #fecaca;background:#fff2f2;color:#8d1f2d}
.sitap-contact-notice strong{font-size:1rem}
@media(max-width:760px){.sitap-contact-form{padding:23px;border-radius:22px}.sitap-contact-grid{grid-template-columns:1fr;gap:0}.sitap-contact-actions{align-items:stretch;flex-direction:column}.sitap-contact-submit{width:100%}.sitap-contact-actions p{text-align:center}}
/* v2.0.0 production and cookie policy */
.corporate-politica-de-cookies .corporate-hero{background:radial-gradient(circle at 18% 14%,rgba(0,167,185,.14),transparent 31%),radial-gradient(circle at 88% 72%,rgba(105,76,255,.12),transparent 34%),linear-gradient(145deg,#effbfc,#f8f8ff)}.footer-cookie-settings{display:block;padding:11px 0;border:0;border-bottom:1px solid rgba(255,255,255,.08);background:none;color:inherit;font:inherit;cursor:pointer}.footer-cookie-settings:hover{color:#fff}

/* =========================================================
   SauronIT Pro 2.1 — Visible dynamic product sections
   ========================================================= */
.category-ribbon{border-top:1px solid rgba(117,129,166,.11);background:rgba(250,251,255,.94)}
.category-ribbon-track{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;min-height:50px;overflow:visible;padding-top:7px;padding-bottom:7px}.category-ribbon-track::-webkit-scrollbar{display:none}
.category-ribbon-link{--ribbon-accent:#6256e8;display:inline-flex;align-items:center;gap:7px;flex:0 0 auto;min-height:36px;padding:7px 11px;border:1px solid rgba(103,113,150,.13);border-radius:999px;background:#fff;color:#26314e;text-decoration:none;font-size:12px;font-weight:800;white-space:nowrap;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,color .2s ease}
.category-ribbon-link:hover{transform:translateY(-2px);border-color:color-mix(in srgb,var(--ribbon-accent) 35%,#dfe3ed);box-shadow:0 8px 20px rgba(30,42,80,.09);color:var(--ribbon-accent)}
.category-ribbon-link .icon{width:17px;height:17px;color:var(--ribbon-accent)}.category-ribbon-link small{display:grid;place-items:center;min-width:20px;height:20px;padding:0 5px;border-radius:999px;background:color-mix(in srgb,var(--ribbon-accent) 10%,#fff);color:var(--ribbon-accent);font-size:9px}.category-ribbon-link.is-empty{border-style:dashed;background:rgba(255,255,255,.78)}.category-ribbon-link.is-empty:hover{color:var(--ribbon-accent)}
.category-ribbon-violet{--ribbon-accent:#7056ef}.category-ribbon-blue{--ribbon-accent:#3478e5}.category-ribbon-coral{--ribbon-accent:#df5b78}.category-ribbon-indigo{--ribbon-accent:#4f5cc7}.category-ribbon-green{--ribbon-accent:#198b63}.category-ribbon-orange{--ribbon-accent:#d46a24}.category-ribbon-cyan{--ribbon-accent:#1389a4}.category-ribbon-amber{--ribbon-accent:#a96b0b}.category-ribbon-slate{--ribbon-accent:#58657d}

.category-directory-section{position:relative;padding:96px 0;background:linear-gradient(180deg,#f7f9ff 0%,#fff 100%)}
.category-directory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.category-directory-card{--section-accent:#6b58eb;--section-soft:#eeebff;position:relative;isolation:isolate;display:grid;grid-template-rows:auto 1fr auto auto;min-height:330px;overflow:hidden;padding:23px;border:1px solid rgba(34,48,87,.09);border-radius:26px;background:linear-gradient(145deg,#fff 0%,color-mix(in srgb,var(--section-soft) 45%,#fff) 100%);box-shadow:0 16px 42px rgba(29,42,78,.07);color:#17213b;text-decoration:none;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.category-directory-card:hover{transform:translateY(-6px);border-color:color-mix(in srgb,var(--section-accent) 24%,#dce1ec);box-shadow:0 27px 62px rgba(29,42,78,.14)}
.category-directory-glow{position:absolute;z-index:-1;width:190px;height:190px;right:-70px;top:-80px;border-radius:50%;background:var(--section-soft);filter:blur(4px);opacity:.8}
.category-directory-top{display:flex;align-items:center;justify-content:space-between;gap:12px}.category-directory-icon{display:grid;place-items:center;width:46px;height:46px;border-radius:15px;background:#fff;color:var(--section-accent);box-shadow:0 10px 28px rgba(28,42,87,.09)}.category-directory-icon .icon{width:24px;height:24px}.category-directory-count{padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.72);color:#68738a;font-size:10px;font-weight:850}
.category-directory-copy{align-self:start;padding-top:24px}.category-directory-copy h3{margin:0 0 9px;font-size:clamp(1.35rem,2vw,1.75rem);letter-spacing:-.035em}.category-directory-copy p{margin:0;color:#68738b;line-height:1.58;font-size:.9rem}
.category-directory-product{display:grid;grid-template-columns:78px 1fr;align-items:center;gap:13px;margin-top:18px;padding:10px;border:1px solid rgba(42,56,91,.08);border-radius:17px;background:rgba(255,255,255,.8)}.category-directory-product>span{display:grid;place-items:center;height:68px;border-radius:12px;background:#fff}.category-directory-product img{width:100%;height:64px;object-fit:contain;object-position:var(--product-x,50%) var(--product-y,50%);transform:scale(var(--product-zoom,1))}.category-directory-product small{display:-webkit-box;overflow:hidden;color:#2f3b57;font-size:.78rem;font-weight:800;line-height:1.35;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.category-directory-empty{display:grid;place-items:center;width:98px;height:98px;margin:18px 0 3px auto;border:1px solid color-mix(in srgb,var(--section-accent) 15%,transparent);border-radius:30px;background:rgba(255,255,255,.46);color:color-mix(in srgb,var(--section-accent) 45%,#fff);transform:rotate(7deg)}.category-directory-empty .icon{width:48px;height:48px}
.category-directory-link{display:flex;align-items:center;gap:7px;margin-top:19px;color:var(--section-accent);font-size:.82rem;font-weight:900}.category-directory-link .icon{width:17px}
.category-directory-violet{--section-accent:#6d52ef;--section-soft:#e8e2ff}.category-directory-blue{--section-accent:#3378e5;--section-soft:#e0edff}.category-directory-coral{--section-accent:#dc5a79;--section-soft:#ffe3ea}.category-directory-indigo{--section-accent:#505fc9;--section-soft:#e5e8ff}.category-directory-green{--section-accent:#18875e;--section-soft:#ddf6e9}.category-directory-orange{--section-accent:#d36b27;--section-soft:#ffeadb}.category-directory-cyan{--section-accent:#1387a0;--section-soft:#dcf5f8}.category-directory-amber{--section-accent:#a66a0e;--section-soft:#fff0cd}.category-directory-slate{--section-accent:#59667d;--section-soft:#e8edf3}

.category-product-rows-section{padding:18px 0 96px;background:#fff}.category-product-rows{display:grid;gap:24px}.category-product-row{padding:28px;border:1px solid #e2e6ef;border-radius:28px;background:linear-gradient(145deg,#fff,#f8faff);box-shadow:0 17px 46px rgba(30,43,79,.065)}
.category-product-row-heading{display:grid;grid-template-columns:54px minmax(0,1fr) auto;align-items:center;gap:16px;margin-bottom:21px}.category-product-row-heading h2{margin:3px 0 5px;font-size:clamp(1.75rem,3vw,2.7rem);letter-spacing:-.045em}.category-product-row-heading p{max-width:680px;margin:0;color:#69738a}.category-product-row-icon{--section-accent:#6256e8;display:grid;place-items:center;width:54px;height:54px;border-radius:17px;background:var(--section-soft,#eceaff);color:var(--section-accent)}.category-product-row-icon .icon{width:28px;height:28px}
.category-product-row-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:13px}.category-row-product{display:grid;grid-template-rows:150px auto;overflow:hidden;border:1px solid #e2e6ee;border-radius:19px;background:#fff;color:#1b253e;text-decoration:none;transition:.22s ease}.category-row-product:hover{transform:translateY(-4px);box-shadow:0 16px 35px rgba(30,43,79,.11)}.category-row-product-media{display:grid;place-items:center;padding:17px;background:linear-gradient(145deg,#fafbff,#f1f4fa)}.category-row-product-media img{width:100%;height:120px;object-fit:contain;object-position:var(--product-x,50%) var(--product-y,50%);transform:scale(var(--product-zoom,1))}.category-row-product-copy{display:grid;gap:5px;padding:14px}.category-row-product-copy small{color:#6b59dc;font-size:.66rem;font-weight:900;text-transform:uppercase;letter-spacing:.06em}.category-row-product-copy strong{font-size:.88rem;line-height:1.35}

.category-filter-bar{top:var(--sauronit-sticky-header-height,139px)}
@media(max-width:1180px){.category-directory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.category-product-row-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:920px){.site-header-v2 .primary-navigation{inset:126px 0 auto;max-height:calc(100vh - 126px)}.category-ribbon{overflow:hidden}.category-ribbon-track{justify-content:flex-start;flex-wrap:nowrap;overflow-x:auto;scroll-snap-type:x proximity;scroll-padding-inline:16px;mask-image:linear-gradient(90deg,transparent 0,#000 16px,#000 calc(100% - 22px),transparent 100%);-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 16px,#000 calc(100% - 22px),transparent 100%)}.category-ribbon-link{scroll-snap-align:start}.category-filter-bar{top:var(--sauronit-sticky-header-height,126px)}}
@media(max-width:680px){.site-header-v2 .primary-navigation{inset:118px 0 auto;max-height:calc(100vh - 118px)}.category-ribbon-track{width:100%;padding-left:14px;padding-right:14px}.category-ribbon-link{font-size:11px;padding:7px 10px}.category-directory-section{padding:64px 0}.category-directory-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;margin-right:-14px;padding:0 14px 9px 0;scrollbar-width:none}.category-directory-grid::-webkit-scrollbar{display:none}.category-directory-card{flex:0 0 84vw;min-height:315px;scroll-snap-align:start}.category-product-row{padding:21px 18px;border-radius:23px}.category-product-row-heading{grid-template-columns:48px 1fr}.category-product-row-heading>.text-link{grid-column:1/-1}.category-product-row-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;margin-right:-18px;padding-right:18px;scrollbar-width:none}.category-product-row-grid::-webkit-scrollbar{display:none}.category-row-product{flex:0 0 70vw;scroll-snap-align:start}.category-filter-bar{top:var(--sauronit-sticky-header-height,118px)}}


/* SauronIT Pro 2.2.0 — clean transparent product imagery and adaptive sections. */
.product-card img,
.selection-card img,
.hero-tile img,
.hero-canvas img,
.category-directory-product img,
.experience-world img,
.category-row-product img,
.offer-card img,
.comparison-product img,
.fresh-card img,
.product-detail img,
.compact-section-products img,
.sauron-product-card img,
.wp-post-image {
    object-fit: contain !important;
    object-position: center !important;
}

.hero-tile-media,
.selection-card-media,
.category-directory-product > span,
.experience-world-lead-media,
.experience-mini-card > span,
.category-row-product-media,
.offer-card-media,
.comparison-product-media,
.fresh-card-media,
.compact-section-products > span {
    background: transparent !important;
}

.hero-tile-media img,
.selection-card-media img,
.category-directory-product img,
.experience-world-lead-media img,
.experience-mini-card img,
.category-row-product-media img,
.offer-card-media img,
.comparison-product-media img,
.fresh-card-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: clamp(8px, 1.25vw, 18px);
    box-sizing: border-box;
}

.compact-sections-section {
    padding: clamp(3.25rem, 6vw, 5.75rem) 0;
}
.compact-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.compact-section-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 132px;
    gap: 1rem;
    padding: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(15, 27, 61, .09);
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 45px rgba(15, 27, 61, .07);
    color: var(--sauron-ink, #0f1b3d);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.compact-section-card:hover {
    transform: translateY(-3px);
    border-color: rgba(107, 70, 255, .24);
    box-shadow: 0 22px 55px rgba(15, 27, 61, .11);
}
.compact-section-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(107, 70, 255, .08);
}
.compact-section-icon svg { width: 23px; height: 23px; }
.compact-section-copy { display: grid; gap: .3rem; min-width: 0; }
.compact-section-copy small { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; opacity: .58; }
.compact-section-copy strong { font-size: 1.08rem; line-height: 1.2; }
.compact-section-copy em { display: inline-flex; align-items: center; gap: .35rem; font-size: .82rem; font-style: normal; font-weight: 800; color: #6b46ff; }
.compact-section-copy em svg { width: 15px; height: 15px; }
.compact-section-products { display: flex; align-items: center; padding-right: .25rem; }
.compact-section-products > span {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin-left: -18px;
    border: 1px solid rgba(15, 27, 61, .08);
    border-radius: 18px;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(15, 27, 61, .08);
}
.compact-section-products > span:first-child { margin-left: 0; }
.compact-section-products img { width: 100%; height: 100%; padding: 7px; }

@media (max-width: 620px) {
    .compact-section-card { grid-template-columns: auto 1fr; }
    .compact-section-products { grid-column: 1 / -1; padding-left: 66px; }
}


/* v2.2.1 polishing fixes */
.category-row-product{grid-template-rows:170px auto;position:relative}
.category-row-product-media{position:relative;overflow:hidden;padding:16px 16px 10px;min-height:170px}
.category-row-product-media img{height:130px;max-height:130px;transform:scale(min(var(--product-zoom,1),1.02));transition:transform .22s ease}
.category-row-product:hover .category-row-product-media img{transform:scale(min(calc(var(--product-zoom,1) + .03),1.05))}
.category-row-product-copy{position:relative;z-index:2;background:#fff;padding:14px 14px 16px}
.category-row-product-copy small{display:block;position:relative;z-index:2}
.category-row-product-copy strong{display:block;position:relative;z-index:2;word-break:break-word}

.editorial-compare-block{display:grid;gap:22px;margin:0 0 38px;padding:28px;border:1px solid #e5e8f1;border-radius:30px;background:linear-gradient(180deg,#fcfcff,#f7f8ff);box-shadow:0 18px 45px rgba(28,39,84,.06)}
.editorial-compare-head h2{margin:.45rem 0 .65rem;font-size:clamp(1.8rem,3vw,2.55rem);letter-spacing:-.04em}
.editorial-compare-head p{margin:0;color:#65708a;line-height:1.7}
.editorial-compare-table{display:grid;gap:0;border:1px solid #e8ebf2;border-radius:24px;overflow:hidden;background:#fff}
.editorial-compare-table.compare-count-2 .editorial-compare-row{grid-template-columns:180px repeat(2,minmax(0,1fr))}
.editorial-compare-table.compare-count-3 .editorial-compare-row{grid-template-columns:180px repeat(3,minmax(0,1fr))}
.editorial-compare-row{display:grid;border-top:1px solid #eceef5}
.editorial-compare-row:first-child{border-top:0}
.editorial-compare-row > *{padding:18px;border-left:1px solid #eceef5}
.editorial-compare-row > *:first-child{border-left:0}
.editorial-compare-label{font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.13em;color:#737a91;background:#fafbfe}
.editorial-compare-product{display:grid;gap:12px;align-content:start;justify-items:center;text-align:center;background:#fff}
.editorial-compare-product-media{display:grid;place-items:center;width:100%;min-height:150px;padding:14px;background:linear-gradient(145deg,#f8faff,#f2f3fb);border-radius:18px;overflow:hidden}
.editorial-compare-product img{width:100%;height:128px;max-width:100%;object-fit:contain;object-position:var(--product-x,50%) var(--product-y,50%);transform:scale(min(var(--product-zoom,1),1.04))}
.editorial-compare-product strong{font-size:.94rem;line-height:1.35}
.editorial-compare-cell{display:flex;align-items:center;line-height:1.6;color:#566078}
.editorial-compare-row.is-actions .editorial-compare-cell{justify-content:center}
.editorial-compare-row.is-actions .button{width:100%;justify-content:center}

@media(max-width:1050px){.editorial-compare-table.compare-count-2 .editorial-compare-row{grid-template-columns:150px repeat(2,minmax(220px,1fr))}.editorial-compare-table.compare-count-3 .editorial-compare-row{grid-template-columns:150px repeat(3,minmax(220px,1fr))}.editorial-compare-table{overflow-x:auto}}
@media(max-width:700px){.editorial-compare-block{padding:22px;border-radius:24px}.editorial-compare-table.compare-count-2 .editorial-compare-row{grid-template-columns:120px repeat(2,220px)}.editorial-compare-table.compare-count-3 .editorial-compare-row{grid-template-columns:120px repeat(3,220px)}.category-row-product{grid-template-rows:156px auto}.category-row-product-media{min-height:156px}.category-row-product-media img{height:116px;max-height:116px}}

.editorial-cover-stage{position:relative;z-index:2;display:grid;place-items:center;width:100%;height:100%}
.editorial-cover-hero-plate,.editorial-cover-plate{display:grid;place-items:center;overflow:hidden;border:1px solid rgba(109,92,240,.14);background:rgba(255,255,255,.96);box-shadow:0 18px 42px rgba(27,37,81,.12)}
.editorial-cover-hero-plate{width:min(78%,260px);height:min(72%,220px);padding:18px;border-radius:28px}
.editorial-cover-plate{position:absolute;width:42%;height:58%;padding:15px;border-radius:24px}
.editorial-cover-plate img,.editorial-cover-hero-plate img{width:100%;height:100%;object-fit:contain}
.editorial-cover-plate small{display:block;width:100%;padding-top:8px;color:#17213f;font-size:.68rem;font-weight:900;text-align:left;text-transform:uppercase;letter-spacing:.06em}
.editorial-cover-plate.plate-a{left:9%;top:14%;transform:rotate(-4deg)}
.editorial-cover-plate.plate-b{right:9%;top:20%;transform:rotate(4deg)}
.editorial-cover-meta{position:absolute;left:18px;right:18px;bottom:18px;z-index:3;display:flex;justify-content:space-between;align-items:flex-end;gap:12px}
.editorial-cover-meta strong{display:block;color:#17213f;font-size:.82rem;line-height:1.2}
.editorial-cover-topic{display:inline-flex;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.84);font-size:.72rem;font-weight:900;letter-spacing:.08em;color:#6554e6;text-transform:uppercase;box-shadow:0 10px 24px rgba(25,31,55,.08)}

/* v2.3.0 editorial collections */
.home-collections-section{padding:clamp(72px,8vw,112px) 0;background:linear-gradient(180deg,#fff,#f7f8ff)}
.home-collections-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.home-collection-card{--collection-accent:#7047eb;position:relative;display:grid;grid-template-columns:minmax(0,1fr) minmax(220px,.8fr);min-height:285px;overflow:hidden;padding:30px;border:1px solid rgba(20,32,69,.09);border-radius:30px;background:linear-gradient(145deg,#fff,#f8f7ff);box-shadow:0 22px 55px rgba(23,34,76,.08);color:#101936;text-decoration:none;transition:.25s ease}
.home-collection-card:hover{transform:translateY(-6px);box-shadow:0 32px 70px rgba(23,34,76,.14);border-color:color-mix(in srgb,var(--collection-accent) 28%,#e4e7ef)}
.home-collection-card.accent-blue{--collection-accent:#2e90fa;background:linear-gradient(145deg,#fff,#f2f8ff)}.home-collection-card.accent-green{--collection-accent:#12b76a;background:linear-gradient(145deg,#fff,#f1fbf6)}.home-collection-card.accent-orange{--collection-accent:#f79009;background:linear-gradient(145deg,#fff,#fff7ec)}.home-collection-card.accent-rose{--collection-accent:#e74694;background:linear-gradient(145deg,#fff,#fff2f8)}
.home-collection-orb{position:absolute;width:250px;height:250px;right:-70px;top:-95px;border-radius:999px;background:color-mix(in srgb,var(--collection-accent) 14%,transparent);filter:blur(2px)}
.home-collection-copy{position:relative;z-index:2;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding-right:16px}.home-collection-copy small{display:inline-flex;padding:7px 10px;border-radius:999px;background:color-mix(in srgb,var(--collection-accent) 11%,#fff);color:var(--collection-accent);font-size:.67rem;font-weight:900;text-transform:uppercase;letter-spacing:.09em}.home-collection-copy>strong{display:block;margin:17px 0 10px;font-size:clamp(1.7rem,2.8vw,2.7rem);line-height:1.02;letter-spacing:-.045em}.home-collection-copy em{max-width:520px;color:#66708a;font-size:.95rem;font-style:normal;line-height:1.65}.home-collection-copy>span:last-child{display:flex;align-items:center;gap:7px;margin-top:22px;color:var(--collection-accent);font-size:.82rem;font-weight:900}.home-collection-copy svg{width:16px;height:16px}
.home-collection-products{position:relative;z-index:2;display:grid;place-items:center;min-height:225px}.home-collection-product{position:absolute;display:grid;place-items:center;overflow:hidden;border:1px solid rgba(37,48,83,.09);border-radius:23px;background:rgba(255,255,255,.95);box-shadow:0 18px 38px rgba(29,42,85,.12)}.home-collection-product img{width:100%;height:100%;padding:13px;object-fit:contain;object-position:var(--product-x,50%) var(--product-y,50%);transform:scale(min(var(--product-zoom,1),1.04))}.home-collection-product.product-1{left:4%;top:9%;width:48%;height:62%;transform:rotate(-4deg);z-index:3}.home-collection-product.product-2{right:3%;top:18%;width:45%;height:58%;transform:rotate(4deg);z-index:4}.home-collection-product.product-3{left:27%;bottom:2%;width:38%;height:44%;transform:rotate(1deg);z-index:5}.home-collection-product.product-4{right:7%;bottom:0;width:28%;height:34%;transform:rotate(-3deg);z-index:2}

.category-collections-section{padding:78px 0 20px;background:#fff}.category-collections-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.category-collection-card{--collection-accent:#7047eb;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:20px;min-height:190px;padding:25px;border:1px solid #e3e7ef;border-radius:25px;background:linear-gradient(145deg,#fff,#f8f7ff);box-shadow:0 15px 38px rgba(24,36,78,.06);color:#111b38;text-decoration:none;transition:.22s ease}.category-collection-card:hover{transform:translateY(-4px);border-color:color-mix(in srgb,var(--collection-accent) 25%,#e3e7ef);box-shadow:0 24px 52px rgba(24,36,78,.11)}.category-collection-card.accent-blue{--collection-accent:#2e90fa;background:linear-gradient(145deg,#fff,#f2f8ff)}.category-collection-card.accent-green{--collection-accent:#12b76a;background:linear-gradient(145deg,#fff,#f1fbf6)}.category-collection-card.accent-orange{--collection-accent:#f79009;background:linear-gradient(145deg,#fff,#fff8ef)}.category-collection-card.accent-rose{--collection-accent:#e74694;background:linear-gradient(145deg,#fff,#fff4f9)}.category-collection-copy{display:grid;gap:8px}.category-collection-copy small{color:var(--collection-accent);font-size:.68rem;font-weight:900;text-transform:uppercase;letter-spacing:.09em}.category-collection-copy strong{font-size:1.45rem;line-height:1.1}.category-collection-copy em{color:#69738a;font-size:.88rem;font-style:normal;line-height:1.55}.category-collection-copy>span{display:flex;align-items:center;gap:6px;color:var(--collection-accent);font-size:.78rem;font-weight:900}.category-collection-images{display:flex;align-items:center;padding-right:5px}.category-collection-images>span{display:grid;place-items:center;width:72px;height:72px;margin-left:-17px;overflow:hidden;border:1px solid rgba(30,43,78,.08);border-radius:19px;background:#fff;box-shadow:0 9px 22px rgba(25,36,75,.09)}.category-collection-images>span:first-child{margin-left:0}.category-collection-images img{width:100%;height:100%;padding:8px;object-fit:contain}

.collection-single{--collection-accent:#7047eb}.collection-single.accent-blue{--collection-accent:#2e90fa}.collection-single.accent-green{--collection-accent:#12b76a}.collection-single.accent-orange{--collection-accent:#f79009}.collection-single.accent-rose{--collection-accent:#e74694}
.collection-single-hero{position:relative;overflow:hidden;padding:clamp(90px,11vw,150px) 0 95px;background:linear-gradient(145deg,#f8f7ff,#eef3ff)}.collection-single-orb{position:absolute;border-radius:999px;filter:blur(3px);background:color-mix(in srgb,var(--collection-accent) 14%,transparent)}.collection-single-orb.orb-a{width:420px;height:420px;right:-80px;top:-150px}.collection-single-orb.orb-b{width:300px;height:300px;left:-100px;bottom:-160px}.collection-single-hero-grid{position:relative;display:grid;grid-template-columns:minmax(0,1fr) minmax(390px,.85fr);gap:70px;align-items:center}.collection-single-copy h1{margin:.65rem 0 1.2rem;font-size:clamp(3.4rem,7vw,7rem);line-height:.9;letter-spacing:-.065em}.collection-single-deck{max-width:720px;color:#606b85;font-size:1.18rem;line-height:1.75}.collection-single-meta{display:flex;align-items:center;gap:10px;margin:25px 0;color:#65708a}.collection-single-meta strong{font-size:1.45rem;color:#111a35}.collection-single-meta i{width:5px;height:5px;border-radius:50%;background:var(--collection-accent)}.collection-single-meta a{color:var(--collection-accent);font-weight:850;text-decoration:none}.collection-single-copy .button{margin-top:6px}
.collection-single-montage{position:relative;min-height:520px}.collection-single-shot{position:absolute;display:grid;place-items:center;overflow:hidden;border:1px solid rgba(33,45,84,.09);border-radius:28px;background:rgba(255,255,255,.95);box-shadow:0 26px 65px rgba(27,40,83,.14)}.collection-single-shot img{width:100%;height:100%;padding:22px;object-fit:contain;object-position:var(--product-x,50%) var(--product-y,50%);transform:scale(min(var(--product-zoom,1),1.04))}.collection-single-shot.shot-1{left:4%;top:4%;width:52%;height:55%;transform:rotate(-5deg);z-index:3}.collection-single-shot.shot-2{right:3%;top:12%;width:45%;height:48%;transform:rotate(5deg);z-index:4}.collection-single-shot.shot-3{left:18%;bottom:3%;width:43%;height:43%;transform:rotate(2deg);z-index:5}.collection-single-shot.shot-4{right:4%;bottom:5%;width:34%;height:36%;transform:rotate(-3deg);z-index:2}
.collection-single-intro{padding:75px 0 25px;background:#fff}.collection-single-products{padding:80px 0 115px;background:#fff}.collection-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.collection-product-card{display:grid;grid-template-rows:300px minmax(0,1fr);overflow:hidden;border:1px solid #e3e7ef;border-radius:27px;background:#fff;box-shadow:0 15px 42px rgba(24,36,78,.07);transition:.24s ease}.collection-product-card:hover{transform:translateY(-6px);box-shadow:0 28px 60px rgba(24,36,78,.13)}.collection-product-media{position:relative;display:grid;place-items:center;overflow:hidden;height:300px;padding:24px 24px 18px;background:linear-gradient(145deg,#fafbff,#f2f4fb)}.collection-product-media::after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:#e9edf5}.collection-product-media img{display:block;width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain;object-position:var(--product-x,50%) var(--product-y,50%);transform:scale(min(var(--product-zoom,1),1.02))}.collection-product-index{position:absolute;right:18px;top:15px;color:#d4d8e3;font-size:1.3rem;font-weight:950;z-index:2}.collection-product-copy{position:relative;z-index:2;display:flex;flex:1;flex-direction:column;gap:10px;padding:22px 20px 20px;background:#fff}.collection-product-copy h3{margin:4px 0 0;font-size:1.22rem;line-height:1.18;letter-spacing:-.03em;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.collection-product-copy>p{margin:0;color:#69738a;line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.collection-product-point{display:grid;gap:3px;margin-top:2px}.collection-product-point span{color:#8a92a5;font-size:.65rem;font-weight:850;text-transform:uppercase;letter-spacing:.11em}.collection-product-point strong{font-size:.86rem;line-height:1.4}.collection-product-copy .button{margin-top:auto;justify-content:center}
@media(max-width:1050px){.home-collections-grid,.category-collections-grid{grid-template-columns:1fr}.collection-single-hero-grid{grid-template-columns:1fr}.collection-single-montage{max-width:680px;width:100%;margin:auto}.collection-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){.home-collection-card{grid-template-columns:1fr;min-height:470px;padding:24px}.home-collection-products{min-height:220px}.category-collection-card{grid-template-columns:1fr}.category-collection-images{padding-top:8px}.collection-single-hero{padding:82px 0 65px}.collection-single-copy h1{font-size:3.35rem}.collection-single-montage{min-height:390px}.collection-single-shot img{padding:14px}.collection-product-grid{grid-template-columns:1fr}.collection-product-card{grid-template-rows:265px minmax(0,1fr)}.collection-product-media{height:265px;padding:18px 18px 14px}}
