
/* ===== INDEX ===== */

        body.page-home{
            --ink: #0b1828;
            --navy: #071b2e;
            --navy-2: #0b2945;
            --muted: #5c6b7c;
            --line: #dce4ec;
            --soft: #f4f7fa;
            --white: #ffffff;
            --blue: #1769e0;
            --blue-dark: #0d4fb7;
            --green: #0f8b75;
            --green-dark: #087060;
            --amber: #e38a09;
            --amber-dark: #b96800;
            --violet: #6d4bd1;
            --violet-dark: #5333b3;
            --danger: #b42318;
            --shadow-sm: 0 8px 24px rgba(8, 27, 46, .07);
            --shadow-md: 0 18px 48px rgba(8, 27, 46, .11);
            --radius-sm: 12px;
            --radius-md: 18px;
            --radius-lg: 28px;
            --container: 1180px;
        }

        body.page-home *{ box-sizing: border-box; }
        html{ scroll-behavior: smooth; }
        body.page-home{
            margin: 0;
            color: var(--ink);
            background: var(--white);
            font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            line-height: 1.55;
            -webkit-font-smoothing: antialiased;
        }
        body.page-home.menu-open{ overflow: hidden; }
        body.page-home a{ color: inherit; }
        body.page-home button, body.page-home input{ font: inherit; }
        body.page-home button{ color: inherit; }
        body.page-home img, body.page-home svg{ display: block; }
        body.page-home .container{ width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
        body.page-home .skip-link{ position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-140%); background: white; color: var(--navy); padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow-md); font-weight: 800; }
        body.page-home .skip-link:focus{ transform: translateY(0); }

        body.page-home .utility-bar{ background: #03111f; color: #d9e4ef; font-size: 12px; letter-spacing: .02em; }
        body.page-home .utility-bar .container{ min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        body.page-home .utility-bar strong{ color: #fff; }
        body.page-home .utility-bar__right{ display: flex; align-items: center; gap: 18px; white-space: nowrap; }
        body.page-home .status-dot{ width: 7px; height: 7px; border-radius: 50%; display: inline-block; background: #45d4aa; box-shadow: 0 0 0 4px rgba(69, 212, 170, .13); margin-right: 8px; }

        body.page-home .site-header{ position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(220,228,236,.8); backdrop-filter: blur(16px); transition: box-shadow .2s ease, background .2s ease; }
        body.page-home .site-header.is-scrolled{ box-shadow: 0 10px 30px rgba(8,27,46,.08); background: rgba(255,255,255,.98); }
        body.page-home .site-header__inner{ min-height: 76px; display: flex; align-items: center; gap: 26px; }
        body.page-home .brand{ display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
        body.page-home .brand__mark{ width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(145deg, #0d4fb7, #0f8b75); color: white; font-size: 21px; box-shadow: 0 9px 22px rgba(23, 105, 224, .24); }
        body.page-home .brand__text{ display: flex; flex-direction: column; line-height: 1; }
        body.page-home .brand__name{ font-weight: 900; font-size: 21px; letter-spacing: -.045em; }
        body.page-home .brand__tagline{ margin-top: 6px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
        body.page-home .main-nav{ margin-left: auto; display: flex; align-items: stretch; gap: 6px; }
        body.page-home .main-nav a{ position: relative; display: inline-flex; align-items: center; gap: 7px; padding: 13px 12px; border-radius: 10px; color: #26384a; text-decoration: none; font-size: 14px; font-weight: 800; transition: color .2s ease, background .2s ease; }
        body.page-home .main-nav a:hover, body.page-home .main-nav a.is-active{ color: var(--blue-dark); background: #edf5ff; }
        body.page-home .main-nav a::after{ content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px; border-radius: 2px; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
        body.page-home .main-nav a.is-active::after{ transform: scaleX(1); }
        body.page-home .header-cta{ margin-left: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 17px; border-radius: 12px; background: var(--navy); color: #fff; text-decoration: none; font-size: 14px; font-weight: 850; box-shadow: 0 9px 20px rgba(7, 27, 46, .18); transition: transform .2s ease, background .2s ease; }
        body.page-home .header-cta:hover{ transform: translateY(-1px); background: var(--navy-2); }
        body.page-home .menu-toggle{ display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
        body.page-home .menu-toggle span{ display: block; width: 19px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
        body.page-home .menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
        body.page-home .menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
        body.page-home .menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

        body.page-home .hero{ position: relative; overflow: hidden; padding: 74px 0 0; color: #fff; background:
            radial-gradient(circle at 82% 12%, rgba(55, 205, 177, .22), transparent 28%),
            radial-gradient(circle at 8% 86%, rgba(38, 125, 244, .22), transparent 30%),
            linear-gradient(135deg, #061727 0%, #0a2742 52%, #0d3a4c 100%); }
        body.page-home .hero::before{ content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 86%); }
        body.page-home .hero__grid{ position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); gap: 64px; align-items: center; padding-bottom: 62px; }
        body.page-home .hero__eyebrow{ display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: #b7f4e2; font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
        body.page-home .hero__eyebrow::before{ content: ""; width: 32px; height: 2px; border-radius: 2px; background: #45d4aa; }
        body.page-home .hero h1{ max-width: 760px; margin: 0; font-size: clamp(42px, 5.1vw, 70px); line-height: .99; letter-spacing: -.057em; text-wrap: balance; }
        body.page-home .hero h1 span{ color: #78e8c8; }
        body.page-home .hero__lead{ max-width: 690px; margin: 24px 0 0; color: #d4e1ed; font-size: clamp(17px, 1.55vw, 21px); line-height: 1.6; }
        body.page-home .hero-search{ max-width: 720px; margin-top: 32px; padding: 8px; display: grid; grid-template-columns: 1fr auto; gap: 8px; background: #fff; border-radius: 17px; box-shadow: 0 22px 55px rgba(0,0,0,.25); }
        body.page-home .hero-search__field{ min-width: 0; display: flex; align-items: center; gap: 12px; padding-left: 13px; }
        body.page-home .hero-search__field svg{ width: 21px; height: 21px; flex: 0 0 auto; fill: none; stroke: #708195; stroke-width: 2; }
        body.page-home .hero-search input{ width: 100%; height: 48px; border: 0; outline: 0; color: var(--ink); font-size: 16px; background: transparent; }
        body.page-home .hero-search input::placeholder{ color: #8291a1; }
        body.page-home .hero-search button{ min-width: 144px; border: 0; border-radius: 12px; background: var(--blue); color: white; font-weight: 850; cursor: pointer; transition: transform .2s ease, background .2s ease; }
        body.page-home .hero-search button:hover{ transform: translateY(-1px); background: var(--blue-dark); }
        body.page-home .hero__quick-links{ margin-top: 17px; display: flex; flex-wrap: wrap; gap: 9px; }
        body.page-home .hero__quick-links a{ display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #edf7ff; background: rgba(255,255,255,.06); text-decoration: none; font-size: 12px; font-weight: 800; transition: background .2s ease, border-color .2s ease; }
        body.page-home .hero__quick-links a:hover{ background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }

        body.page-home .hero-panel{ position: relative; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 26px; background: rgba(255,255,255,.09); box-shadow: 0 26px 70px rgba(0,0,0,.22); backdrop-filter: blur(18px); }
        body.page-home .hero-panel::after{ content: ""; position: absolute; width: 145px; height: 145px; right: -70px; top: -70px; border-radius: 50%; background: rgba(69,212,170,.15); filter: blur(2px); }
        body.page-home .hero-panel__header{ display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
        body.page-home .hero-panel__header span{ color: #9fbbcd; font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
        body.page-home .hero-panel__header h2{ margin: 5px 0 0; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
        body.page-home .hero-panel__update{ flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: rgba(69,212,170,.14); color: #b7f4e2 !important; font-size: 12px !important; letter-spacing: .04em !important; text-transform: none !important; }
        body.page-home .hero-panel__list{ display: grid; gap: 10px; }
        body.page-home .hero-panel__item{ display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 13px; border-radius: 16px; background: rgba(255,255,255,.075); text-decoration: none; transition: transform .2s ease, background .2s ease; }
        body.page-home .hero-panel__item:hover{ transform: translateX(3px); background: rgba(255,255,255,.13); }
        body.page-home .hero-panel__icon{ width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #fff; color: var(--navy); font-weight: 900; font-size: 20px; }
        body.page-home .hero-panel__item strong{ display: block; font-size: 14px; }
        body.page-home .hero-panel__item small{ color: #aebfd0; font-size: 12px; }
        body.page-home .hero-panel__item > span:last-child{ color: #8fe6cf; font-size: 20px; }
        body.page-home .hero-panel__foot{ margin-top: 14px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #bdcad7; font-size: 12px; }
        body.page-home .hero-panel__foot strong{ color: #fff; }

        body.page-home .hero-stats{ position: relative; border-top: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.09); }
        body.page-home .hero-stats__grid{ display: grid; grid-template-columns: repeat(4, 1fr); }
        body.page-home .hero-stat{ min-height: 92px; padding: 20px 26px; display: flex; align-items: center; gap: 15px; border-right: 1px solid rgba(255,255,255,.11); }
        body.page-home .hero-stat:last-child{ border-right: 0; }
        body.page-home .hero-stat strong{ display: block; font-size: 27px; line-height: 1; letter-spacing: -.04em; }
        body.page-home .hero-stat span{ display: block; margin-top: 5px; color: #b9c9d7; font-size: 12px; }
        body.page-home .hero-stat__icon{ width: 38px; height: 38px; display: grid !important; place-items: center; margin: 0 !important; border-radius: 11px; background: rgba(255,255,255,.1); color: #fff !important; font-size: 17px !important; }

        body.page-home .trust-strip{ border-bottom: 1px solid var(--line); background: #fff; }
        body.page-home .trust-strip__grid{ min-height: 76px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
        body.page-home .trust-item{ padding: 15px 28px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--line); }
        body.page-home .trust-item:first-child{ padding-left: 0; }
        body.page-home .trust-item:last-child{ border-right: 0; }
        body.page-home .trust-item__icon{ width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: #e3f4ec; color: var(--green-dark); }
        body.page-home .trust-item__icon svg{ width: 23px; height: 23px; display: block; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; fill: none; }
        body.page-home .trust-item strong{ display: block; font-size: 13px; }
        body.page-home .trust-item > div > span{ display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }

        body.page-home .intro-section{ padding: 86px 0 76px; background: #fff; }
        body.page-home .intro-section__grid{ display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: start; }
        body.page-home .overline{ display: inline-flex; align-items: center; gap: 9px; color: var(--blue-dark); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
        body.page-home .overline::before{ content: ""; width: 24px; height: 2px; background: currentColor; }
        body.page-home .intro-section h2{ margin: 15px 0 18px; font-size: clamp(34px, 3.5vw, 50px); line-height: 1.06; letter-spacing: -.052em; text-wrap: balance; }
        body.page-home .intro-section__lead{ margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
        body.page-home .method-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
        body.page-home .method-card{
            min-height: 216px;
            padding: 22px;
            display: grid;
            grid-template-columns: 38px minmax(0, 1fr);
            column-gap: 16px;
            align-content: start;
            border: 1px solid var(--line);
            border-radius: 20px;
            background: #fff;
            box-shadow: var(--shadow-sm);
        }
        body.page-home .method-card__number{
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            margin: 0;
            border-radius: 11px;
            color: white;
            background: var(--navy);
            font-weight: 900;
        }
        body.page-home .method-card__content{
            min-width: 0;
        }
        body.page-home .method-card h3{
            margin: 4px 0 8px;
            font-size: 17px;
            letter-spacing: -.025em;
        }
        body.page-home .method-card p{
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
        }

        body.page-home .ranking-section{ position: relative; padding: 84px 0; border-top: 1px solid rgba(220,228,236,.78); }
        body.page-home .ranking-section:nth-of-type(even){ background: #f7f9fb; }
        body.page-home .ranking-section--blue{ --section-accent: var(--blue); --section-accent-dark: var(--blue-dark); --section-soft: #ecf4ff; }
        body.page-home .ranking-section--green{ --section-accent: var(--green); --section-accent-dark: var(--green-dark); --section-soft: #eaf8f4; }
        body.page-home .ranking-section--amber{ --section-accent: var(--amber); --section-accent-dark: var(--amber-dark); --section-soft: #fff5e5; }
        body.page-home .ranking-section--violet{ --section-accent: var(--violet); --section-accent-dark: var(--violet-dark); --section-soft: #f1edff; }
        body.page-home .section-heading{ margin-bottom: 30px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
        body.page-home .section-heading__eyebrow{ display: block; margin-bottom: 10px; color: var(--section-accent-dark); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
        body.page-home .section-heading h2{ margin: 0; display: flex; align-items: center; gap: 13px; font-size: clamp(30px, 3.2vw, 45px); line-height: 1.08; letter-spacing: -.048em; }
        body.page-home .section-heading__icon{ width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--section-accent-dark); background: var(--section-soft); font-size: 23px; letter-spacing: 0; }
        body.page-home .section-heading p{ max-width: 730px; margin: 15px 0 0; color: var(--muted); font-size: 16px; }
        body.page-home .section-heading__meta{ flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
        body.page-home .section-heading__meta span{ color: var(--muted); font-size: 12px; font-weight: 750; }
        body.page-home .section-heading__meta a{ color: var(--section-accent-dark); text-decoration: none; font-size: 13px; font-weight: 900; }
        body.page-home .section-heading__meta a:hover{ text-decoration: underline; }

        body.page-home .platform-grid{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
        body.page-home .platform-card{ position: relative; min-width: 0; padding: 24px; border: 1px solid #d8e1ea; border-radius: 22px; background: #fff; box-shadow: 0 10px 26px rgba(8,27,46,.055); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; overflow: hidden; }
        body.page-home .platform-card::before{ content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--section-accent); opacity: 0; transition: opacity .24s ease; }
        body.page-home .platform-card:hover{ transform: translateY(-3px); border-color: color-mix(in srgb, var(--section-accent) 35%, #d8e1ea); box-shadow: var(--shadow-md); }
        body.page-home .platform-card:hover::before{ opacity: 1; }
        body.page-home .platform-card.search-highlight{ animation: searchPulse 1.2s ease; border-color: var(--section-accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--section-accent) 13%, transparent), var(--shadow-md); }
        @keyframes searchPulse{ 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
        body.page-home .platform-card__top{ display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
        body.page-home .platform-card__identity{ min-width: 0; display: flex; align-items: center; gap: 14px; }
        body.page-home .platform-card__rank{ width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; color: #fff; background: var(--section-accent); font-size: 20px; font-weight: 950; box-shadow: 0 8px 18px color-mix(in srgb, var(--section-accent) 25%, transparent); }
        body.page-home .platform-card__category{ display: block; margin-bottom: 3px; color: var(--muted); font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
        body.page-home .platform-card h3{ margin: 0; font-size: clamp(20px, 2.1vw, 27px); line-height: 1.05; letter-spacing: -.04em; overflow-wrap: anywhere; }
        body.page-home .reaction-group{ display: flex; gap: 6px; flex: 0 0 auto; }
        body.page-home .reaction-button{ min-height: 34px; padding: 0 9px; display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--line); border-radius: 999px; color: #526274; background: #fff; font-size: 12px; font-weight: 850; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
        body.page-home .reaction-button:hover{ transform: translateY(-1px); border-color: #b8c5d2; color: var(--ink); }
        body.page-home .reaction-button.is-selected[data-reaction="like"]{ color: #06715d; border-color: #8bd8c7; background: #e9f9f5; }
        body.page-home .reaction-button.is-selected[data-reaction="unlike"]{ color: #9b271f; border-color: #f0aaa4; background: #fff0ef; }
        body.page-home .platform-card__badge-row{ margin-top: 17px; }
        body.page-home .platform-card__badge{ display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; border-radius: 8px; color: #fff; background: #263747; font-size: 12px; font-weight: 850; letter-spacing: .015em; }
        body.page-home .platform-card__description{ min-height: 78px; margin: 17px 0 19px; color: #1b2c3e; font-size: 15px; line-height: 1.65; }
        body.page-home .platform-card__facts{ padding: 16px; display: grid; grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr); gap: 18px; border: 1px solid #e4eaf0; border-radius: 16px; background: #f8fafc; }
        body.page-home .fact-label{ display: block; margin-bottom: 7px; color: var(--muted); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
        body.page-home .rating-block{ padding-right: 17px; border-right: 1px solid #dfe6ed; }
        body.page-home .rating-block__score{ display: flex; align-items: baseline; gap: 4px; }
        body.page-home .rating-block__score strong{ color: var(--section-accent-dark); font-size: 25px; line-height: 1; letter-spacing: -.045em; }
        body.page-home .rating-block__score span{ color: var(--muted); font-size: 12px; font-weight: 750; }
        body.page-home .rating-meter{ height: 5px; margin-top: 9px; overflow: hidden; border-radius: 999px; background: #dfe7ee; }
        body.page-home .rating-meter span{ display: block; height: 100%; border-radius: inherit; background: var(--section-accent); }
        body.page-home .channel-list{ display: flex; flex-wrap: wrap; gap: 6px; }
        body.page-home .channel-list span{ padding: 4px 7px; border: 1px solid #d8e1e9; border-radius: 7px; color: #415367; background: #fff; font-size: 11px; font-weight: 800; }
        body.page-home .promo-box{ margin-top: 15px; min-height: 52px; padding: 8px 9px 8px 13px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px dashed #8bb7df; border-radius: 13px; background: #edf7ff; }
        body.page-home .promo-box__label{ display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; text-align: center; color: #34506c; font-size: 12px; font-weight: 850; }
        body.page-home .promo-box__code{ min-height: 34px; padding: 0 10px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid #c4dff5; border-radius: 9px; color: #0f4f84; background: #fff; cursor: pointer; transition: transform .2s ease, border-color .2s ease; }
        body.page-home .promo-box__code:hover{ transform: translateY(-1px); border-color: #8bb7df; }
        body.page-home .promo-box__code strong{ font-size: 12px; letter-spacing: .035em; }
        body.page-home .promo-box__code svg{ width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
        body.page-home .platform-card__actions{ margin-top: 17px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
        body.page-home .button{ min-height: 46px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; text-decoration: none; text-align: center; font-size: 12px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
        body.page-home .button:hover{ transform: translateY(-1px); }
        body.page-home .button--primary{ color: #fff; background: var(--section-accent); box-shadow: 0 9px 20px color-mix(in srgb, var(--section-accent) 22%, transparent); }
        body.page-home .button--primary:hover{ background: var(--section-accent-dark); box-shadow: 0 12px 25px color-mix(in srgb, var(--section-accent) 28%, transparent); }
        body.page-home .button--secondary{ border: 1px solid #d7e0e8; color: #23364a; background: #fff; }
        body.page-home .button--secondary:hover{ border-color: #aebdcc; background: #f8fafc; }
        body.page-home .section-note{ margin-top: 20px; padding: 15px 17px; display: flex; align-items: flex-start; gap: 11px; border: 1px solid #cfe1f0; border-radius: 14px; color: #365069; background: #f0f7fc; font-size: 12px; }
        body.page-home .section-note p{ margin: 0; }
        body.page-home .section-note--warning{ border-color: #f0d8a9; color: #6a4a14; background: #fff8e9; }
        body.page-home .section-footer-cta{ margin-top: 28px; display: flex; justify-content: center; }
        body.page-home .button--section{ min-height: 50px; padding: 0 22px; color: var(--section-accent-dark); border: 1px solid color-mix(in srgb, var(--section-accent) 32%, #d7e0e8); background: var(--section-soft); }
        body.page-home .button--section:hover{ border-color: var(--section-accent); }

        body.page-home .editorial-section{ padding: 92px 0; color: #fff; background:
            radial-gradient(circle at 88% 22%, rgba(69,212,170,.18), transparent 25%),
            linear-gradient(135deg, #061727 0%, #0a2944 100%); }
        body.page-home .editorial-section__grid{ display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
        body.page-home .editorial-section .overline{ color: #78e8c8; }
        body.page-home .editorial-section h2{ margin: 16px 0 18px; font-size: clamp(36px, 4vw, 56px); line-height: 1.02; letter-spacing: -.055em; }
        body.page-home .editorial-section__lead{ margin: 0; color: #c7d6e4; font-size: 18px; line-height: 1.7; }
        body.page-home .editorial-section__note{ margin-top: 24px; padding: 14px 16px; border-left: 3px solid #45d4aa; color: #d4e1ed; background: rgba(255,255,255,.06); font-size: 12px; }
        body.page-home .editorial-steps{ display: grid; gap: 13px; }
        body.page-home .editorial-step{ padding: 20px; display: grid; grid-template-columns: 48px 1fr; gap: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(255,255,255,.065); }
        body.page-home .editorial-step__number{ width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: var(--navy); background: #78e8c8; font-weight: 950; }
        body.page-home .editorial-step h3{ margin: 1px 0 6px; font-size: 16px; }
        body.page-home .editorial-step p{ margin: 0; color: #b9c9d7; font-size: 12px; line-height: 1.6; }

        body.page-home .guides-section{ padding: 88px 0; background: #f6f8fa; }
        body.page-home .guides-section__heading{ margin-bottom: 28px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
        body.page-home .guides-section h2{ margin: 13px 0 0; font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -.05em; }
        body.page-home .guides-section__heading > p{ max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; }
        body.page-home .guide-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
        body.page-home .guide-card{
            min-height: 265px;
            padding: 24px;
            display: grid;
            grid-template-columns: 48px minmax(0, 1fr);
            grid-template-rows: auto 1fr;
            column-gap: 16px;
            align-content: start;
            border: 1px solid var(--line);
            border-radius: 20px;
            background: #fff;
            box-shadow: var(--shadow-sm);
            text-decoration: none;
            transition: transform .22s ease, box-shadow .22s ease;
        }
        body.page-home .guide-card:hover{
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        body.page-home .guide-card__label{
            grid-column: 1 / -1;
            margin-bottom: 18px;
            color: var(--blue-dark);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .12em;
            text-transform: uppercase;
        }
        body.page-home .guide-card__icon{
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            margin: 0;
            border-radius: 14px;
            background: #edf4fb;
            font-size: 22px;
        }
        body.page-home .guide-card__content{
            min-width: 0;
            min-height: 100%;
            display: flex;
            flex-direction: column;
        }
        body.page-home .guide-card h3{
            margin: 1px 0 10px;
            font-size: 20px;
            line-height: 1.25;
            letter-spacing: -.035em;
        }
        body.page-home .guide-card p{
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
        }
        body.page-home .guide-card__link{
            margin-top: auto;
            padding-top: 22px;
            color: var(--navy);
            font-size: 12px;
            font-weight: 900;
        }

        body.page-home .faq-section{ padding: 88px 0; background: #fff; }
        body.page-home .faq-section__grid{ display: grid; grid-template-columns: .68fr 1.32fr; gap: 74px; align-items: start; }
        body.page-home .faq-section h2{ margin: 14px 0 17px; font-size: clamp(34px, 4vw, 51px); line-height: 1.04; letter-spacing: -.052em; }
        body.page-home .faq-section__intro p{ margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
        body.page-home .faq-list{ border-top: 1px solid var(--line); }
        body.page-home .faq-list details{ border-bottom: 1px solid var(--line); }
        body.page-home .faq-list summary{ min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-size: 15px; font-weight: 850; }
        body.page-home .faq-list summary::-webkit-details-marker{ display: none; }
        body.page-home .faq-list summary::after{ content: "+"; width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: var(--blue-dark); background: #edf5ff; font-size: 20px; transition: transform .2s ease; }
        body.page-home .faq-list details[open] summary::after{ transform: rotate(45deg); }
        body.page-home .faq-list details p{ margin: -4px 46px 22px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

        body.page-home .site-footer{ color: #d0d8e1; background: #030a11; }
        body.page-home .site-footer__top{ padding: 66px 0 52px; display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 48px; }
        body.page-home .footer-brand .brand__name{ color: #fff; }
        body.page-home .footer-brand .brand__tagline{ color: #8998a8; }
        body.page-home .footer-brand p{ max-width: 400px; margin: 20px 0 0; color: #95a3b1; font-size: 13px; line-height: 1.7; }
        body.page-home .footer-column h3{ margin: 0 0 16px; color: #fff; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
        body.page-home .footer-column a{ display: block; width: fit-content; margin: 10px 0; color: #aab6c2; text-decoration: none; font-size: 12px; }
        body.page-home .footer-column a:hover{ color: #fff; }
        body.page-home .site-footer__bottom{ padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; gap: 22px; color: #788694; font-size: 12px; line-height: 1.6; }
        body.page-home .site-footer__bottom p{ max-width: 850px; margin: 0; }
        body.page-home .back-to-top{ width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.15); border-radius: 11px; color: #fff; background: rgba(255,255,255,.06); text-decoration: none; }

        body.page-home .toast{ position: fixed; left: 50%; bottom: 24px; z-index: 3000; max-width: min(92vw, 460px); padding: 12px 16px; border-radius: 12px; color: #fff; background: #071b2e; box-shadow: 0 16px 42px rgba(0,0,0,.25); font-size: 12px; font-weight: 800; transform: translate(-50%, 140%); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
        body.page-home .toast.is-visible{ transform: translate(-50%, 0); opacity: 1; }
        body.page-home .no-results{ display: none; margin-top: 24px; padding: 24px; border: 1px solid #f0c6c3; border-radius: 16px; color: #76241f; background: #fff3f2; text-align: center; }
        body.page-home .no-results.is-visible{ display: block; }

        @media (max-width: 1050px){
            body.page-home .main-nav a{ padding-inline: 9px; font-size: 13px; }
            body.page-home .header-cta{ display: none; }
            body.page-home .hero__grid{ grid-template-columns: 1fr .72fr; gap: 38px; }
            body.page-home .hero-panel{ padding: 18px; }
            body.page-home .method-grid{ grid-template-columns: 1fr; }
            body.page-home .method-card{ min-height: 0; }
            body.page-home .method-card__number{ margin: 0; }
        }

        @media (max-width: 860px){
            body.page-home .utility-bar__right span:last-child{ display: none; }
            body.page-home .site-header__inner{ min-height: 68px; }
            body.page-home .menu-toggle{ display: block; margin-left: auto; }
            body.page-home .main-nav{ position: fixed; top: 102px; left: 16px; right: 16px; z-index: 1200; margin: 0; padding: 12px; display: grid; gap: 5px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); transform: translateY(-14px); opacity: 0; visibility: hidden; transition: transform .2s ease, opacity .2s ease, visibility .2s ease; }
            body.page-home .main-nav.is-open{ transform: translateY(0); opacity: 1; visibility: visible; }
            body.page-home .main-nav a{ min-height: 46px; padding: 0 13px; }
            body.page-home .main-nav a::after{ display: none; }
            body.page-home .hero{ padding-top: 58px; }
            body.page-home .hero__grid{ grid-template-columns: 1fr; gap: 34px; padding-bottom: 42px; }
            body.page-home .hero-panel{ max-width: 650px; }
            body.page-home .hero-stats__grid{ grid-template-columns: repeat(2, 1fr); }
            body.page-home .hero-stat:nth-child(2){ border-right: 0; }
            body.page-home .hero-stat:nth-child(-n/**/+2){ border-bottom: 1px solid rgba(255,255,255,.11); }
            body.page-home .trust-strip__grid{ grid-template-columns: 1fr; }
            body.page-home .trust-item{ padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
            body.page-home .trust-item:last-child{ border-bottom: 0; }
            body.page-home .intro-section__grid, body.page-home .editorial-section__grid, body.page-home .faq-section__grid{ grid-template-columns: 1fr; gap: 38px; }
            body.page-home .method-grid{ grid-template-columns: repeat(3, 1fr); }
            body.page-home .platform-grid{ grid-template-columns: 1fr; }
            body.page-home .platform-card__description{ min-height: 0; }
            body.page-home .guide-grid{ grid-template-columns: 1fr; }
            body.page-home .guide-card{ min-height: 230px; }
            body.page-home .site-footer__top{ grid-template-columns: 1.2fr 1fr 1fr; }
            body.page-home .footer-brand{ grid-column: 1 / -1; }
        }

        @media (max-width: 640px){
            body.page-home .container{ width: min(calc(100% - 24px), var(--container)); }
            body.page-home .utility-bar .container{ min-height: 30px; }
            body.page-home .utility-bar__right{ gap: 8px; }
            body.page-home .utility-bar__right span:first-child{ display: none; }
            body.page-home .brand__mark{ width: 39px; height: 39px; border-radius: 12px; }
            body.page-home .brand__name{ font-size: 19px; }
            body.page-home .brand__tagline{ font-size: 10px; }
            body.page-home .main-nav{ top: 88px; left: 12px; right: 12px; }
            body.page-home .hero{ padding-top: 46px; }
            body.page-home .hero h1{ font-size: clamp(39px, 12vw, 55px); }
            body.page-home .hero__lead{ font-size: 16px; }
            body.page-home .hero-search{ grid-template-columns: 1fr; padding: 7px; border-radius: 15px; }
            body.page-home .hero-search__field{ min-height: 47px; }
            body.page-home .hero-search button{ min-height: 45px; }
            body.page-home .hero-panel__header h2{ font-size: 21px; }
            body.page-home .hero-panel__update{ display: none; }
            body.page-home .hero-panel__item{ grid-template-columns: 39px 1fr auto; padding: 11px; }
            body.page-home .hero-panel__icon{ width: 39px; height: 39px; }
            body.page-home .hero-stats__grid{ grid-template-columns: 1fr 1fr; }
            body.page-home .hero-stat{ min-height: 84px; padding: 16px 11px; gap: 10px; }
            body.page-home .hero-stat strong{ font-size: 22px; }
            body.page-home .hero-stat span{ font-size: 12px; }
            body.page-home .hero-stat__icon{ width: 34px; height: 34px; }
            body.page-home .intro-section, body.page-home .ranking-section, body.page-home .editorial-section, body.page-home .guides-section, body.page-home .faq-section{ padding: 66px 0; }
            body.page-home .intro-section__grid{ gap: 30px; }
            body.page-home .intro-section h2{ font-size: 37px; }
            body.page-home .intro-section__lead{ font-size: 16px; }
            body.page-home .method-grid{ grid-template-columns: 1fr; }
            body.page-home .method-card{ padding: 19px; }
            body.page-home .section-heading{ align-items: flex-start; flex-direction: column; gap: 15px; }
            body.page-home .section-heading h2{ align-items: flex-start; font-size: 34px; }
            body.page-home .section-heading__icon{ width: 43px; height: 43px; border-radius: 13px; font-size: 20px; }
            body.page-home .section-heading__meta{ align-items: flex-start; }
            body.page-home .platform-card{ padding: 18px; border-radius: 18px; }
            body.page-home .platform-card__top{ gap: 12px; }
            body.page-home .platform-card__rank{ width: 43px; height: 43px; border-radius: 12px; font-size: 18px; }
            body.page-home .platform-card h3{ font-size: 23px; }
            body.page-home .reaction-button{ width: 34px; padding: 0; justify-content: center; }
            body.page-home .reaction-button span:last-child{ display: inline; }
            body.page-home .reaction-button{ min-width: 64px; justify-content: center; gap: 6px; font-size: 12px; font-weight: 900; }
            body.page-home .platform-card__description{ margin-top: 15px; font-size: 14px; }
            body.page-home .platform-card__facts{ grid-template-columns: 1fr; gap: 14px; padding: 14px; }
            body.page-home .rating-block{ padding: 0 0 13px; border-right: 0; border-bottom: 1px solid #dfe6ed; }
            body.page-home .promo-box{ align-items: stretch; flex-direction: column; gap: 7px; padding: 10px; }
            body.page-home .promo-box__code{ justify-content: space-between; }
            body.page-home .platform-card__actions{ grid-template-columns: 1fr; }
            body.page-home .button{ min-height: 48px; }
            body.page-home .editorial-section h2{ font-size: 39px; }
            body.page-home .guides-section__heading{ align-items: flex-start; flex-direction: column; }
            body.page-home .faq-section h2{ font-size: 39px; }
            body.page-home .site-footer__top{ grid-template-columns: 1fr 1fr; gap: 35px 22px; }
            body.page-home .footer-brand{ grid-column: 1 / -1; }
            body.page-home .site-footer__bottom{ align-items: flex-start; }
        }

        @media (prefers-reduced-motion: reduce){
            body.page-home *, body.page-home *::before, body.page-home *::after{ scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
        }
    
        /* Codice promo centrato */
        body.page-home .promo-box__code{
            position: relative;
            justify-content: center;
            text-align: center;
        }

        body.page-home .promo-box__code svg{
            position: absolute;
            right: 16px;
        }
    

        /* Palette approvata: bianco, grigio chiaro, antracite e verde. */
        body.page-home{
            --ink: #171b21;
            --navy: #222831;
            --navy-2: #303842;
            --muted: #69727f;
            --line: #dde2e6;
            --soft: #f4f6f5;
            --white: #ffffff;
            --blue: #169d6c;
            --blue-dark: #0d7b54;
            --green: #169d6c;
            --green-dark: #0d7b54;
            --amber: #169d6c;
            --amber-dark: #0d7b54;
            --violet: #169d6c;
            --violet-dark: #0d7b54;
            --shadow-sm: 0 8px 26px rgba(27, 34, 40, .06);
            --shadow-md: 0 18px 52px rgba(27, 34, 40, .10);
        }

        body.page-home{
            color: var(--ink);
            background: #f5f6f6;
        }

        body.page-home .utility-bar{
            color: #5f6874;
            background: #f8f9f9;
            border-bottom: 1px solid var(--line);
        }
        body.page-home .utility-bar strong{ color: var(--ink); }
        body.page-home .status-dot{
            background: var(--green);
            box-shadow: 0 0 0 4px rgba(22, 157, 108, .12);
        }

        body.page-home .site-header{
            background: rgba(255, 255, 255, .96);
            border-bottom-color: rgba(221, 226, 230, .92);
        }
        body.page-home .site-header.is-scrolled{
            background: rgba(255, 255, 255, .99);
            box-shadow: 0 10px 30px rgba(27, 34, 40, .07);
        }
        body.page-home .brand__mark{
            position: relative;
            overflow: hidden;
            background: #090b0c;
            box-shadow: 0 9px 22px rgba(0, 0, 0, .18);
        }
        body.page-home .brand__mark-a{
            position: relative;
            display: block;
            width: 25px;
            height: 28px;
        }
        body.page-home .brand__mark-a::before{
            content: "";
            position: absolute;
            inset: 0;
            background: #fff;
            clip-path: polygon(50% 0, 100% 100%, 73% 100%, 62% 73%, 38% 73%, 27% 100%, 0 100%);
        }
        body.page-home .brand__mark-a::after{
            content: "";
            position: absolute;
            left: 5px;
            right: 5px;
            bottom: 0;
            height: 7px;
            background: linear-gradient(90deg, #159a67 0 33.333%, #fff 33.333% 66.666%, #e3272d 66.666% 100%);
            clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
        }
        body.page-home .brand__dot{ color: var(--green); }
        body.page-home .main-nav a{ color: #28303a; }
        body.page-home .main-nav a:hover, body.page-home .main-nav a.is-active{
            color: var(--green-dark);
            background: #edf8f3;
        }
        body.page-home .main-nav a::after{ background: var(--green); }
        body.page-home .header-cta{
            background: var(--green);
            box-shadow: 0 9px 20px rgba(22, 157, 108, .20);
        }
        body.page-home .header-cta:hover{ background: var(--green-dark); }

        body.page-home .hero{
            color: var(--ink);
            background:
                radial-gradient(circle at 84% 12%, rgba(22, 157, 108, .075), transparent 28%),
                radial-gradient(circle at 8% 88%, rgba(22, 157, 108, .045), transparent 30%),
                linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
            border-bottom: 1px solid var(--line);
        }
        body.page-home .hero::before{
            opacity: .48;
            background-image:
                linear-gradient(rgba(22, 157, 108, .035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(22, 157, 108, .035) 1px, transparent 1px);
        }
        body.page-home .hero__eyebrow{ color: var(--green-dark); }
        body.page-home .hero__eyebrow::before{ background: var(--green); }
        body.page-home .hero h1 span{ color: var(--green); }
        body.page-home .hero__lead{ color: var(--muted); }
        body.page-home .hero-search{
            border: 1px solid var(--line);
            background: #ffffff;
            box-shadow: 0 16px 40px rgba(27, 34, 40, .09);
        }
        body.page-home .hero-search__field svg{ stroke: #737d89; }
        body.page-home .hero-search input::placeholder{ color: #848d98; }
        body.page-home .hero-search button{ background: var(--green); }
        body.page-home .hero-search button:hover{ background: var(--green-dark); }
        body.page-home .hero__quick-links a{
            color: #29313a;
            border-color: var(--line);
            background: rgba(255, 255, 255, .92);
        }
        body.page-home .hero__quick-links a:hover{
            color: var(--green-dark);
            border-color: #b9dccd;
            background: #edf8f3;
        }

        body.page-home .hero-panel{
            color: var(--ink);
            border-color: var(--line);
            background: rgba(255, 255, 255, .94);
            box-shadow: 0 22px 58px rgba(27, 34, 40, .09);
        }
        body.page-home .hero-panel::after{ background: rgba(22, 157, 108, .09); }
        body.page-home .hero-panel__header span{ color: var(--green-dark); }
        body.page-home .hero-panel__header h2{ color: var(--ink); }
        body.page-home .hero-panel__update{
            color: var(--green-dark) !important;
            background: #e2f4ec;
        }
        body.page-home .hero-panel__item{
            color: var(--ink);
            background: #f7f8f8;
        }
        body.page-home .hero-panel__item:hover{ background: #edf8f3; }
        body.page-home .hero-panel__icon{
            color: var(--green-dark);
            background: #e6f5ee;
        }
        body.page-home .hero-panel__item small{ color: var(--muted); }
        body.page-home .hero-panel__item > span:last-child{ color: var(--green); }
        body.page-home .hero-panel__foot{
            color: var(--muted);
            border-top-color: var(--line);
        }
        body.page-home .hero-panel__foot strong{ color: var(--ink); }

        body.page-home .hero-stats{
            border-top-color: var(--line);
            background: #ffffff;
        }
        body.page-home .hero-stat{ border-right-color: var(--line); }
        body.page-home .hero-stat strong{ color: var(--ink); }
        body.page-home .hero-stat span{ color: var(--muted); }
        body.page-home .hero-stat__icon{
            color: var(--green-dark) !important;
            background: #e3f4ec;
        }

        body.page-home .trust-strip{ background: #ffffff; }
        body.page-home .trust-item .trust-item__icon{
            display: flex;
            align-items: center;
            justify-content: center;
            align-self: center;
            margin: 0;
            color: var(--green-dark);
            background: #e3f4ec;
            line-height: 0;
        }
        body.page-home .trust-item__icon svg{
            width: 26px;
            height: 26px;
            margin: 0;
            flex: 0 0 auto;
            stroke: var(--green-dark);
        }

        body.page-home .intro-section{ background: #ffffff; }
        body.page-home .overline{ color: var(--green-dark); }
        body.page-home .method-card{ background: #ffffff; }
        body.page-home .method-card__number{
            color: var(--green-dark);
            background: #e3f4ec;
        }

        body.page-home .ranking-section{
            --section-accent: var(--green);
            --section-accent-dark: var(--green-dark);
            --section-soft: #e5f5ed;
            background: #ffffff;
        }
        body.page-home .ranking-section:nth-of-type(even){ background: #f7f8f8; }
        body.page-home .ranking-section--blue, body.page-home .ranking-section--green, body.page-home .ranking-section--amber, body.page-home .ranking-section--violet{
            --section-accent: var(--green);
            --section-accent-dark: var(--green-dark);
            --section-soft: #e5f5ed;
        }
        body.page-home .platform-card{
            border-color: #dde2e6;
            background: #ffffff;
            box-shadow: 0 10px 28px rgba(27, 34, 40, .055);
        }
        body.page-home .platform-card:hover{
            border-color: #aed9c7;
            box-shadow: 0 18px 48px rgba(27, 34, 40, .10);
        }
        body.page-home .platform-card__rank{
            color: #222831;
            background: #eef0f2;
            box-shadow: none;
        }
        body.page-home .reaction-button{
            color: #4d5662;
            border-color: #d9dfe4;
            background: #ffffff;
        }
        body.page-home .reaction-button:hover{ border-color: #b8c0c8; }
        body.page-home .reaction-button.is-selected[data-reaction="like"]{
            color: var(--green-dark);
            border-color: #94d2b8;
            background: #e7f6ef;
        }
        body.page-home .platform-card__badge{
            color: var(--green-dark);
            background: #e1f4ec;
        }
        body.page-home .platform-card__description{ color: #171b21; }
        body.page-home .platform-card__facts{
            border-color: #e1e5e8;
            background: #f7f8f8;
        }
        body.page-home .rating-block{ border-right-color: #dce1e5; }
        body.page-home .rating-block__score strong{ color: var(--ink); }
        body.page-home .rating-meter{ background: #dfe4e2; }
        body.page-home .channel-list span{
            color: #343b44;
            border-color: #d7dde2;
            background: #ffffff;
        }
        body.page-home .promo-box{
            border-color: var(--green);
            background: #fbfdfc;
        }
        body.page-home .promo-box__label{ color: #69727f; }
        body.page-home .promo-box__code{
            color: #252b33;
            border-color: #d9e2de;
            background: #ffffff;
        }
        body.page-home .promo-box__code:hover{ border-color: var(--green); }
        body.page-home .button--primary{
            background: var(--green);
            box-shadow: 0 9px 20px rgba(22, 157, 108, .18);
        }
        body.page-home .button--primary:hover{
            background: var(--green-dark);
            box-shadow: 0 12px 25px rgba(22, 157, 108, .22);
        }
        body.page-home .button--secondary{
            color: #252b33;
            border-color: #cfd5da;
            background: #ffffff;
        }
        body.page-home .button--secondary:hover{
            border-color: #adb6bf;
            background: #f7f8f8;
        }
        body.page-home .section-note{
            color: #385a4c;
            border-color: #cbe6da;
            background: #f0f9f5;
        }
        body.page-home .button--section{
            color: var(--green-dark);
            border-color: #b8ddcd;
            background: #e7f6ef;
        }

        body.page-home .editorial-section{
            color: var(--ink);
            background:
                radial-gradient(circle at 88% 22%, rgba(22, 157, 108, .08), transparent 25%),
                linear-gradient(135deg, #f2f5f3 0%, #f7f9f8 100%);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
        body.page-home .editorial-section .overline{ color: var(--green-dark); }
        body.page-home .editorial-section__lead{ color: var(--muted); }
        body.page-home .editorial-section__note{
            color: #385a4c;
            border-left-color: var(--green);
            background: #e9f6f0;
        }
        body.page-home .editorial-step{
            border-color: var(--line);
            background: #ffffff;
            box-shadow: var(--shadow-sm);
        }
        body.page-home .editorial-step__number{
            color: var(--green-dark);
            background: #e1f4ec;
        }
        body.page-home .editorial-step p{ color: var(--muted); }

        body.page-home .guides-section{ background: #f7f8f8; }
        body.page-home .guide-card{ background: #ffffff; }
        body.page-home .guide-card__icon{ background: #e4f4ed; }
        body.page-home .guide-card__label{ color: var(--green-dark); }
        body.page-home .guide-card__link{ color: var(--green-dark); }

        body.page-home .faq-section{ background: #ffffff; }
        body.page-home .faq-list summary::after{
            color: var(--green-dark);
            background: #e4f4ed;
        }

        body.page-home .toast{ background: #1f2b26; }

        @media (max-width: 860px){
            body.page-home .hero-stat:nth-child(-n/**/+2){ border-bottom-color: var(--line); }
        }
        @media (max-width: 640px){
            body.page-home .rating-block{ border-bottom-color: #dce1e5; }
            body.page-home .method-card{
                grid-template-columns: 38px minmax(0, 1fr);
                column-gap: 14px;
            }
            body.page-home .guide-card{
                grid-template-columns: 46px minmax(0, 1fr);
                column-gap: 14px;
            }
            body.page-home .guide-card__icon{
                width: 46px;
                height: 46px;
            }
        }
    
        /* Logo ufficiale scelto: proposta numero 9. */
        body.page-home .site-header .brand--logo-nine{
            flex: 0 1 310px;
            min-width: 0;
            gap: 0;
            line-height: 0;
        }
        body.page-home .site-header .brand__logo-nine{
            width: 310px;
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }
        @media (max-width: 1040px) and (min-width: 861px){
            body.page-home .site-header .brand--logo-nine{
                flex-basis: 245px;
            }
            body.page-home .site-header .brand__logo-nine{
                width: 245px;
            }
            body.page-home .site-header__inner{
                gap: 16px;
            }
            body.page-home .main-nav a{
                padding-inline: 9px;
            }
            body.page-home .header-cta{
                padding-inline: 13px;
            }
        }
        @media (max-width: 860px){
            body.page-home .site-header .brand--logo-nine{
                flex: 1 1 auto;
                max-width: 310px;
            }
            body.page-home .site-header .brand__logo-nine{
                width: 310px;
            }
        }
        @media (max-width: 640px){
            body.page-home .site-header .brand--logo-nine{
                max-width: calc(100vw - 96px);
            }
            body.page-home .site-header .brand__logo-nine{
                width: 100%;
            }
            body.page-home .site-header__inner{
                gap: 14px;
            }
        }


        /* Logo ufficiale n. 9 nel footer: versione chiara per lo sfondo nero. */
        body.page-home .footer-logo-nine{
            display: block;
            width: min(100%, 385px);
            line-height: 0;
            text-decoration: none;
        }
        body.page-home .footer-logo-nine__image{
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        body.page-home .footer-brand p{
            margin-top: 22px;
        }
        @media (max-width: 640px){
            body.page-home .footer-logo-nine{
                width: min(100%, 360px);
            }
        }

    


/* ===== CONTI ===== */

   body.page-conti{
        --green: #159a67;
        --green-dark: #0d7650;
        --green-soft: #eaf7f1;
        --ink: #151918;
        --muted: #6c7470;
        --line: #e4e8e6;
        --soft: #f6f8f7;
        --white: #ffffff;
        --shadow: 0 10px 30px rgba(17, 24, 20, 0.07);
        --max: 1120px;
    }
    body.page-conti *{
        box-sizing: border-box;
    }
    html{
        scroll-behavior: smooth;
    }
    body.page-conti{
        margin: 0;
        background: var(--white);
        color: var(--ink);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.55;
    }
    body.page-conti a{
        color: inherit;
    }
    body.page-conti .container{
        width: min(var(--max), calc(100% - 28px));
        margin: 0 auto;
    }
    body.page-conti .site-header{
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255,255,255,.97);
        border-bottom: 1px solid var(--line);
    }
    body.page-conti .site-header__inner{
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    body.page-conti .brand__logo-nine{
        display: block;
        width: 238px;
        max-width: 70vw;
        height: auto;
    }
    body.page-conti .menu-toggle{
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 14px;
        background: #111;
        color: #fff;
        font-size: 23px;
        cursor: pointer;
    }
    body.page-conti .site-nav{
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        padding: 10px 18px 18px;
        background: #111;
        color: #fff;
    }
    body.page-conti .site-nav.is-open{
        display: block;
    }
    body.page-conti .site-nav a{
        display: block;
        padding: 13px 4px;
        border-bottom: 1px solid #2b2b2b;
        text-decoration: none;
        font-weight: 700;
    }
    body.page-conti .hero{
        padding: 52px 0 40px;
        background: linear-gradient(180deg,#f5faf8 0%,#fff 100%);
    }
    body.page-conti .eyebrow{
        margin: 0 0 10px;
        color: var(--green-dark);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }
    body.page-conti .hero h1{
        margin: 0;
        max-width: 780px;
        font-size: clamp(36px,7vw,64px);
        line-height: 1.02;
        letter-spacing: -.045em;
    }
    body.page-conti .hero p{
        max-width: 760px;
        margin: 18px 0 0;
        color: var(--muted);
        font-size: 17px;
    }
    body.page-conti .hero-meta{
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-top: 22px;
    }
    body.page-conti .hero-meta span{
        padding: 8px 11px;
        border: 1px solid #cfe6dc;
        border-radius: 999px;
        background: #fff;
        color: #315246;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-conti .page-tabs{
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: #fff;
    }
    body.page-conti .page-tabs__inner{
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 11px 0;
    }
    body.page-conti .page-tabs a{
        flex: 0 0 auto;
        padding: 9px 13px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-conti .page-tabs a.active{
        background: #111;
        color: #fff;
    }
    body.page-conti .ranking{
        padding: 42px 0 60px;
    }
    body.page-conti .section-head{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }
    body.page-conti .section-head h2{
        margin: 0;
        font-size: clamp(29px,5vw,44px);
        letter-spacing: -.035em;
    }
    body.page-conti .section-head p{
        margin: 0;
        color: var(--muted);
        max-width: 760px;
    }
    body.page-conti .platform-list{
        display: grid;
        gap: 16px;
    }
    body.page-conti .platform-card{
        border: 1px solid var(--line);
        border-radius: 22px;
        background: #fff;
        padding: 18px;
        box-shadow: var(--shadow);
    }
    body.page-conti .platform-top{
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    body.page-conti .rank{
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: #edf0ef;
        font-size: 16px;
        font-weight: 900;
    }
    body.page-conti .platform-identity{
        min-width: 0;
        flex: 1;
    }
    body.page-conti .platform-category{
        display: block;
        margin-bottom: 2px;
        color: #7b817e;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-conti .platform-identity h3{
        margin: 0;
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: -.02em;
    }
    body.page-conti .votes{
        display: flex;
        gap: 6px;
    }
    body.page-conti .vote{
        min-width: 54px;
        height: 38px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        color: #515956;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-conti .vote.active{
        border-color: var(--green);
        background: var(--green-soft);
        color: var(--green-dark);
    }
    body.page-conti .badge{
        display: inline-block;
        margin-top: 14px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--green-soft);
        color: #1d6046;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-conti .description{
        margin: 14px 0 16px;
        font-size: 15px;
    }
    body.page-conti .facts{
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 14px;
        padding: 15px 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }
    body.page-conti .fact-label{
        display: block;
        margin-bottom: 5px;
        color: #7a817e;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-conti .rating{
        font-size: 20px;
        font-weight: 900;
    }
    body.page-conti .rating span{
        color: var(--green);
    }
    body.page-conti .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    body.page-conti .channels span{
        padding: 5px 8px;
        border-radius: 8px;
        background: #f3f5f4;
        font-size: 11px;
        font-weight: 800;
    }
    body.page-conti .promo-box{
        margin-top: 15px;
        padding: 12px;
        border: 1px dashed #91bea9;
        border-radius: 14px;
        background: #f4fbf8;
        text-align: center;
    }
    body.page-conti .promo-label{
        display: block;
        text-align: center;
        color: #477565;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-conti .promo-code{
        position: relative;
        width: 100%;
        min-height: 38px;
        margin-top: 3px;
        border: 0;
        background: transparent;
        color: #111;
        font-size: 16px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-conti .copy-icon{
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-style: normal;
        color: #5b6862;
    }
    body.page-conti .actions{
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 14px;
    }
    body.page-conti .button{
        display: block;
        padding: 13px 15px;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        font-size: 13px;
        font-weight: 900;
    }
    body.page-conti .button-primary{
        background: var(--green);
        color: #fff;
        box-shadow: 0 7px 18px rgba(21,154,103,.2);
    }
    body.page-conti .button-secondary{
        border: 1px solid var(--line);
        background: #fff;
    }
    body.page-conti .editorial{
        padding: 54px 0;
        background: var(--soft);
    }
    body.page-conti .editorial-grid{
        display: grid;
        gap: 14px;
    }
    body.page-conti .editorial-card{
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
    }
    body.page-conti .editorial-card h3{
        margin: 0 0 7px;
        font-size: 19px;
    }
    body.page-conti .editorial-card p{
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }
    body.page-conti .site-footer{
        background: #0c0d0d;
        color: #d9dddb;
        padding: 44px 0 28px;
    }
    body.page-conti .footer-logo-nine__image{
        display: block;
        width: 265px;
        max-width: 82vw;
        height: auto;
    }
    body.page-conti .footer-note{
        max-width: 640px;
        margin: 16px 0 0;
        color: #9fa6a2;
        font-size: 12px;
    }
    body.page-conti .footer-links{
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        margin-top: 22px;
    }
    body.page-conti .footer-links a{
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-conti .footer-bottom{
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid #282b2a;
        color: #858c88;
        font-size: 11px;
    }
    @media (min-width: 760px){
        body.page-conti .menu-toggle{
            display: none;
        }
        body.page-conti .site-nav{
            display: flex;
            position: static;
            padding: 0;
            gap: 18px;
            background: transparent;
            color: #202522;
        }
        body.page-conti .site-nav a{
            padding: 8px 0;
            border: 0;
            font-size: 12px;
        }
        body.page-conti .platform-list{
            grid-template-columns: repeat(2, minmax(0,1fr));
        }
        body.page-conti .actions{
            grid-template-columns: 1fr 1fr;
        }
        body.page-conti .editorial-grid{
            grid-template-columns: repeat(3,1fr);
        }
    }
    @media (max-width: 520px){
        body.page-conti .brand__logo-nine{
            width: 205px;
        }
        body.page-conti .platform-card{
            padding: 15px;
        }
        body.page-conti .platform-identity h3{
            font-size: 21px;
        }
        body.page-conti .votes{
            gap: 4px;
        }
        body.page-conti .vote{
            min-width: 50px;
            padding: 0 5px;
            font-size: 12px;
        }
        body.page-conti .facts{
            grid-template-columns: .78fr 1.22fr;
            gap: 10px;
        }
    }
    

    /* Header, FAQ e footer coordinati con la index ufficiale */
    body.page-conti .utility-bar{
        background: #03111f;
        color: #d9e4ef;
        font-size: 12px;
        letter-spacing: .02em;
    }
    body.page-conti .utility-bar .container{
        min-height: 34px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    body.page-conti .utility-bar strong{
        color: #ffffff;
    }
    body.page-conti .utility-bar__right{
        display: flex;
        align-items: center;
        gap: 18px;
        white-space: nowrap;
    }
    body.page-conti .status-dot{
        width: 7px;
        height: 7px;
        border-radius: 50%;
        display: inline-block;
        background: #45d4aa;
        box-shadow: 0 0 0 4px rgba(69, 212, 170, .13);
        margin-right: 8px;
    }
    body.page-conti .site-header{
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255,255,255,.94);
        border-bottom: 1px solid rgba(220,228,236,.8);
        backdrop-filter: blur(16px);
    }
    body.page-conti .site-header__inner{
        min-height: 76px;
        display: flex;
        align-items: center;
        gap: 26px;
    }
    body.page-conti .brand--logo-nine{
        display: inline-flex;
        align-items: center;
        flex: 0 1 310px;
        min-width: 0;
        gap: 0;
        line-height: 0;
        text-decoration: none;
    }
    body.page-conti .site-header .brand__logo-nine{
        width: 310px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    body.page-conti .main-nav{
        margin-left: auto;
        display: flex;
        align-items: stretch;
        gap: 6px;
    }
    body.page-conti .main-nav a{
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 13px 12px;
        border-radius: 10px;
        color: #26384a;
        text-decoration: none;
        font-size: 14px;
        font-weight: 800;
    }
    body.page-conti .main-nav a:hover, body.page-conti .main-nav a.is-active{
        color: #087060;
        background: #eef8f4;
    }
    body.page-conti .header-cta{
        margin-left: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 17px;
        border-radius: 12px;
        background: #071b2e;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 850;
        box-shadow: 0 9px 20px rgba(7,27,46,.18);
    }
    body.page-conti .menu-toggle{
        display: none;
        width: 44px;
        height: 44px;
        border: 1px solid #dce4ec;
        border-radius: 12px;
        background: #ffffff;
        cursor: pointer;
        padding: 0;
    }
    body.page-conti .menu-toggle span{
        display: block;
        width: 19px;
        height: 2px;
        margin: 4px auto;
        border-radius: 2px;
        background: #071b2e;
        transition: transform .2s ease, opacity .2s ease;
    }
    body.page-conti .menu-toggle[aria-expanded="true"] span:nth-child(1){
        transform: translateY(6px) rotate(45deg);
    }
    body.page-conti .menu-toggle[aria-expanded="true"] span:nth-child(2){
        opacity: 0;
    }
    body.page-conti .menu-toggle[aria-expanded="true"] span:nth-child(3){
        transform: translateY(-6px) rotate(-45deg);
    }
    body.page-conti .faq-section{
        padding: 88px 0;
        background: #ffffff;
    }
    body.page-conti .faq-section__grid{
        display: grid;
        grid-template-columns: .68fr 1.32fr;
        gap: 74px;
        align-items: start;
    }
    body.page-conti .faq-section .overline{
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #087060;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .16em;
        text-transform: uppercase;
    }
    body.page-conti .faq-section .overline::before{
        content: "";
        width: 34px;
        height: 2px;
        background: #169d6c;
    }
    body.page-conti .faq-section h2{
        margin: 14px 0 17px;
        font-size: clamp(34px, 4vw, 51px);
        line-height: 1.04;
        letter-spacing: -.052em;
    }
    body.page-conti .faq-section__intro p{
        margin: 0;
        color: #687384;
        font-size: 16px;
        line-height: 1.7;
    }
    body.page-conti .faq-list{
        border-top: 1px solid #dce4ec;
    }
    body.page-conti .faq-list details{
        border-bottom: 1px solid #dce4ec;
    }
    body.page-conti .faq-list summary{
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        list-style: none;
        cursor: pointer;
        font-size: 15px;
        font-weight: 850;
    }
    body.page-conti .faq-list summary::-webkit-details-marker{
        display: none;
    }
    body.page-conti .faq-list summary::after{
        content: "+";
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border-radius: 9px;
        color: #087060;
        background: #eaf7f1;
        font-size: 20px;
        transition: transform .2s ease;
    }
    body.page-conti .faq-list details[open] summary::after{
        transform: rotate(45deg);
    }
    body.page-conti .faq-list details p{
        margin: -4px 46px 22px 0;
        color: #687384;
        font-size: 13px;
        line-height: 1.7;
    }
    body.page-conti .site-footer{
        color: #d0d8e1;
        background: #030a11;
        padding: 0;
    }
    body.page-conti .site-footer__top{
        padding: 66px 0 52px;
        display: grid;
        grid-template-columns: 1.4fr repeat(3, .7fr);
        gap: 48px;
    }
    body.page-conti .footer-logo-nine{
        display: block;
        width: min(100%, 385px);
        line-height: 0;
        text-decoration: none;
    }
    body.page-conti .footer-logo-nine__image{
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    body.page-conti .footer-brand p{
        max-width: 400px;
        margin: 22px 0 0;
        color: #95a3b1;
        font-size: 13px;
        line-height: 1.7;
    }
    body.page-conti .footer-column h3{
        margin: 0 0 16px;
        color: #ffffff;
        font-size: 12px;
        letter-spacing: .12em;
        text-transform: uppercase;
    }
    body.page-conti .footer-column a{
        display: block;
        width: fit-content;
        margin: 10px 0;
        color: #aab6c2;
        text-decoration: none;
        font-size: 12px;
    }
    body.page-conti .site-footer__bottom{
        padding: 22px 0;
        border-top: 1px solid rgba(255,255,255,.09);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
        color: #788694;
        font-size: 12px;
        line-height: 1.6;
    }
    body.page-conti .site-footer__bottom p{
        max-width: 850px;
        margin: 0;
    }
    body.page-conti .back-to-top{
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 11px;
        color: #ffffff;
        background: rgba(255,255,255,.06);
        text-decoration: none;
    }
    @media (max-width: 860px){
        body.page-conti .site-header__inner{
            min-height: 68px;
        }
        body.page-conti .menu-toggle{
            display: block;
            margin-left: auto;
        }
        body.page-conti .main-nav{
            position: fixed;
            top: 102px;
            left: 16px;
            right: 16px;
            z-index: 1200;
            margin: 0;
            padding: 12px;
            display: grid;
            gap: 5px;
            border: 1px solid #dce4ec;
            border-radius: 18px;
            background: #ffffff;
            box-shadow: 0 18px 48px rgba(8,27,46,.11);
            transform: translateY(-14px);
            opacity: 0;
            visibility: hidden;
            transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
        }
        body.page-conti .main-nav.is-open{
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        body.page-conti .main-nav a{
            min-height: 46px;
            padding: 0 13px;
        }
        body.page-conti .header-cta{
            display: none;
        }
        body.page-conti .faq-section__grid{
            grid-template-columns: 1fr;
            gap: 38px;
        }
        body.page-conti .site-footer__top{
            grid-template-columns: 1.2fr 1fr 1fr;
        }
        body.page-conti .footer-brand{
            grid-column: 1 / -1;
        }
    }
    @media (max-width: 640px){
        body.page-conti .utility-bar .container{
            min-height: 30px;
        }
        body.page-conti .utility-bar__right{
            display: none;
        }
        body.page-conti .site-header .brand--logo-nine{
            flex: 1 1 auto;
            max-width: calc(100vw - 96px);
        }
        body.page-conti .site-header .brand__logo-nine{
            width: 100%;
        }
        body.page-conti .site-header__inner{
            gap: 14px;
        }
        body.page-conti .main-nav{
            top: 88px;
            left: 12px;
            right: 12px;
        }
        body.page-conti .faq-section{
            padding: 66px 0;
        }
        body.page-conti .faq-section h2{
            font-size: 39px;
        }
        body.page-conti .site-footer__top{
            grid-template-columns: 1fr 1fr;
            gap: 35px 22px;
        }
        body.page-conti .footer-brand{
            grid-column: 1 / -1;
        }
        body.page-conti .footer-logo-nine{
            width: min(100%, 360px);
        }
        body.page-conti .site-footer__bottom{
            align-items: flex-start;
        }
    }
   /* Schede piattaforma coordinate alla index.html */
    body.page-conti .platform-list{
        display: grid;
        gap: 24px;
    }

    body.page-conti .platform-card{
        border: 1px solid #d8dee4;
        border-radius: 24px;
        background: #ffffff;
        padding: 24px;
        box-shadow: 0 8px 24px rgba(8, 27, 46, 0.045);
    }

    body.page-conti .platform-top{
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    body.page-conti .rank{
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        display: grid;
        place-items: center;
        border-radius: 15px;
        background: #eef0f2;
        color: #15191f;
        font-size: 20px;
        font-weight: 900;
    }

    body.page-conti .platform-identity{
        min-width: 0;
        flex: 1;
    }

    body.page-conti .platform-category{
        display: block;
        margin-bottom: 4px;
        color: #717a89;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    body.page-conti .platform-identity h3{
        margin: 0;
        color: #101319;
        font-size: 28px;
        line-height: 1.05;
        letter-spacing: -.035em;
    }

    body.page-conti .votes{
        display: flex;
        gap: 8px;
        flex: 0 0 auto;
    }

    body.page-conti .vote{
        min-width: 72px;
        height: 42px;
        padding: 0 12px;
        border: 1px solid #d8dee4;
        border-radius: 999px;
        background: #ffffff;
        color: #515a68;
        font-size: 13px;
        font-weight: 900;
        cursor: pointer;
    }

    body.page-conti .vote.active{
        border-color: #84cbb0;
        background: #eef9f4;
        color: #08704c;
    }

    body.page-conti .badge{
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        padding: 7px 11px;
        border-radius: 9px;
        background: #e3f5ed;
        color: #147451;
        font-size: 12px;
        font-weight: 900;
    }

    body.page-conti .description{
        margin: 22px 0 20px;
        color: #15191f;
        font-size: 16px;
        line-height: 1.65;
    }

    body.page-conti .facts{
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 18px;
        border: 1px solid #dfe4e8;
        border-radius: 19px;
        background: #f8faf9;
    }

    body.page-conti .facts > div:first-child{
        padding-bottom: 17px;
        border-bottom: 1px solid #dfe4e8;
    }

    body.page-conti .facts > div:last-child{
        padding-top: 17px;
    }

    body.page-conti .fact-label{
        display: block;
        margin-bottom: 8px;
        color: #727b89;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    body.page-conti .rating{
        color: #11151b;
        font-size: 28px;
        font-weight: 900;
        letter-spacing: -.04em;
    }

    body.page-conti .rating .rating-star{
        display: none;
    }

    body.page-conti .rating small{
        color: #697282;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0;
    }

    body.page-conti .rating-meter{
        height: 6px;
        margin-top: 12px;
        overflow: hidden;
        border-radius: 999px;
        background: #dfe5e2;
    }

    body.page-conti .rating-meter span{
        display: block;
        height: 100%;
        border-radius: inherit;
        background: #18a26c;
    }

    body.page-conti .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    body.page-conti .channels span{
        padding: 7px 10px;
        border: 1px solid #d8dee4;
        border-radius: 9px;
        background: #ffffff;
        color: #333b46;
        font-size: 12px;
        font-weight: 900;
    }

    body.page-conti .promo-box{
        margin-top: 18px;
        padding: 14px;
        border: 1px dashed #159a67;
        border-radius: 17px;
        background: #ffffff;
        text-align: center;
    }

    body.page-conti .promo-label{
        display: block;
        text-align: center;
        color: #697282;
        font-size: 13px;
        font-weight: 900;
    }

    body.page-conti .promo-code{
        position: relative;
        width: 100%;
        min-height: 46px;
        margin-top: 9px;
        border: 1px solid #d8dee4;
        border-radius: 11px;
        background: #ffffff;
        color: #252a31;
        font-size: 17px;
        font-weight: 900;
        cursor: pointer;
        text-align: center;
    }

    body.page-conti .promo-code svg{
        position: absolute;
        top: 50%;
        right: 16px;
        width: 18px;
        height: 18px;
        transform: translateY(-50%);
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }

    body.page-conti .actions{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    body.page-conti .actions .button{
        display: flex;
        min-height: 54px;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border-radius: 14px;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        font-weight: 900;
    }

    body.page-conti .actions .button-primary{
        border: 1px solid #18a26c;
        background: #18a26c;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(24, 162, 108, .16);
    }

    body.page-conti .actions .button-secondary{
        border: 1px solid #cfd6dc;
        background: #ffffff;
        color: #20262e;
    }

    @media (min-width: 760px){
        body.page-conti .facts{
            grid-template-columns: .82fr 1.18fr;
            gap: 22px;
        }

        body.page-conti .facts > div:first-child{
            padding: 0 22px 0 0;
            border-right: 1px solid #dfe4e8;
            border-bottom: 0;
        }

        body.page-conti .facts > div:last-child{
            padding: 0;
        }

        body.page-conti .actions{
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 620px){
        body.page-conti .platform-card{
            padding: 18px;
            border-radius: 20px;
        }

        body.page-conti .platform-top{
            gap: 11px;
        }

        body.page-conti .rank{
            flex-basis: 46px;
            width: 46px;
            height: 46px;
            border-radius: 13px;
            font-size: 18px;
        }

        body.page-conti .platform-identity h3{
            font-size: 25px;
        }

        body.page-conti .platform-category{
            font-size: 12px;
        }

        body.page-conti .votes{
            gap: 6px;
        }

        body.page-conti .vote{
            min-width: 63px;
            height: 39px;
            padding: 0 8px;
            font-size: 12px;
        }

        body.page-conti .description{
            font-size: 15px;
        }

        body.page-conti .facts{
            padding: 15px;
        }
    }
  
    /* Schede piattaforma: allineate al modello ufficiale della index */
    body.page-conti .platform-list{
        display: grid;
        gap: 22px;
    }
    body.page-conti .platform-card{
        position: relative;
        min-width: 0;
        padding: 24px;
        border: 1px solid #d8e1ea;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(8,27,46,.055);
        overflow: hidden;
    }
    body.page-conti .platform-top{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }
    body.page-conti .platform-identity{
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 14px;
        flex: 1;
    }
    body.page-conti .rank{
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: #111820;
        background: #edf0f2;
        font-size: 20px;
        font-weight: 950;
        box-shadow: none;
    }
    body.page-conti .platform-category{
        display: block;
        margin-bottom: 3px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        letter-spacing: .11em;
        text-transform: uppercase;
    }
    body.page-conti .platform-identity h3{
        margin: 0;
        font-size: 27px;
        line-height: 1.05;
        letter-spacing: -.04em;
    }
    body.page-conti .votes{
        display: flex;
        gap: 8px;
        flex: 0 0 auto;
    }
    body.page-conti .vote{
        min-width: 68px;
        height: 44px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid #d8e1ea;
        border-radius: 15px;
        background: #ffffff;
        color: #343b48;
        font-size: 12px;
        font-weight: 850;
    }
    body.page-conti .badge{
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        padding: 9px 12px;
        border-radius: 11px;
        background: #e4f5ee;
        color: #16845d;
        font-size: 12px;
        font-weight: 850;
    }
    body.page-conti .description{
        margin: 21px 0 18px;
        font-size: 16px;
        line-height: 1.55;
    }
    body.page-conti .facts{
        padding: 16px;
        display: grid;
        grid-template-columns: minmax(150px,.72fr) minmax(0,1.28fr);
        gap: 18px;
        border: 1px solid #e4eaf0;
        border-radius: 16px;
        background: #f8fafc;
    }
    body.page-conti .fact-label{
        display: block;
        margin-bottom: 7px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    body.page-conti .rating{
        font-size: 25px;
        line-height: 1;
        font-weight: 950;
    }
    body.page-conti .rating-star{
        display: none;
    }
    body.page-conti .rating small{
        color: #707887;
        font-size: 12px;
        font-weight: 750;
    }
    body.page-conti .rating-meter{
        height: 5px;
        margin-top: 12px;
        border-radius: 999px;
        background: #e1e7e5;
        overflow: hidden;
    }
    body.page-conti .rating-meter span{
        display: block;
        height: 100%;
        border-radius: inherit;
        background: #1ba36f;
    }
    body.page-conti .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    body.page-conti .channels span{
        padding: 7px 10px;
        border: 1px solid #d8e1ea;
        border-radius: 10px;
        background: #ffffff;
        color: #343b48;
        font-size: 11px;
        font-weight: 800;
    }
    body.page-conti .promo-box{
        margin-top: 16px;
        padding: 13px 14px;
        border: 1.5px dashed #1a9b6d;
        border-radius: 15px;
        background: #ffffff;
        text-align: center;
    }
    body.page-conti .promo-label{
        display: block;
        margin-bottom: 9px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        text-align: center;
    }
    body.page-conti .promo-code{
        position: relative;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #d8e1dd;
        border-radius: 11px;
        background: #ffffff;
        color: #252b34;
        font-size: 14px;
        letter-spacing: .04em;
    }
    body.page-conti .promo-code svg{
        position: absolute;
        right: 13px;
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }
    body.page-conti .actions{
        display: grid;
        gap: 10px;
        margin-top: 16px;
    }
    body.page-conti .button{
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 900;
        text-decoration: none;
    }
    body.page-conti .button-primary{
        background: #1ba36f;
        color: #ffffff;
        box-shadow: 0 10px 24px rgba(27,163,111,.18);
    }
    body.page-conti .button-secondary{
        border: 1px solid #cfd7df;
        background: #ffffff;
        color: #202630;
    }
    @media (max-width: 640px){
        body.page-conti .platform-card{
            padding: 18px;
        }
        body.page-conti .platform-top{
            gap: 10px;
        }
        body.page-conti .platform-identity{
            gap: 10px;
        }
        body.page-conti .rank{
            width: 44px;
            height: 44px;
            flex-basis: 44px;
            font-size: 18px;
        }
        body.page-conti .platform-identity h3{
            font-size: 24px;
        }
        body.page-conti .votes{
            gap: 6px;
        }
        body.page-conti .vote{
            min-width: 54px;
            height: 42px;
            padding: 0 8px;
            font-size: 12px;
        }
        body.page-conti .facts{
            grid-template-columns: 1fr;
            gap: 15px;
        }
        body.page-conti .facts > div:first-child{
            padding-bottom: 15px;
            border-bottom: 1px solid #dfe6ed;
        }
    }
  

    /* Hero categoria nello stile della home ApriOnline */
    body.page-conti .category-hero{
        position: relative;
        overflow: hidden;
        padding: 70px 0 58px;
        border-bottom: 1px solid var(--line);
        background:
            radial-gradient(circle at 92% 84%, rgba(43, 191, 145, .13), transparent 24%),
            linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
    }
    body.page-conti .category-hero::before{
        content: "";
        position: absolute;
        inset: 0;
        opacity: .32;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(20, 154, 103, .055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(20, 154, 103, .055) 1px, transparent 1px);
        background-size: 42px 42px;
    }
    body.page-conti .category-hero__inner{
        position: relative;
        max-width: 850px;
    }
    body.page-conti .category-hero__eyebrow{
        display: inline-flex;
        align-items: center;
        gap: 16px;
        margin: 0 0 27px;
        color: var(--green-dark);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .17em;
        line-height: 1.45;
        text-transform: uppercase;
    }
    body.page-conti .category-hero__eyebrow::before{
        content: "";
        width: 44px;
        height: 3px;
        flex: 0 0 auto;
        border-radius: 99px;
        background: var(--green);
    }
    body.page-conti .category-hero h1{
        max-width: 820px;
        margin: 0;
        color: var(--ink);
        font-size: clamp(48px, 7.2vw, 82px);
        font-weight: 900;
        line-height: .98;
        letter-spacing: -.06em;
    }
    body.page-conti .category-hero h1 span{
        display: block;
        color: var(--green);
    }
    body.page-conti .category-hero__lead{
        max-width: 780px;
        margin: 28px 0 0;
        color: #737b88;
        font-size: clamp(18px, 2vw, 22px);
        line-height: 1.65;
    }
    body.page-conti .category-search{
        max-width: 760px;
        margin-top: 34px;
        padding: 10px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 9px;
        border: 1px solid #d9dfe3;
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(18, 34, 29, .06);
    }
    body.page-conti .category-search__field{
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0 15px;
    }
    body.page-conti .category-search__field svg{
        width: 25px;
        height: 25px;
        flex: 0 0 auto;
        fill: none;
        stroke: #74808f;
        stroke-width: 2;
        stroke-linecap: round;
    }
    body.page-conti .category-search input{
        width: 100%;
        height: 52px;
        border: 0;
        outline: 0;
        color: var(--ink);
        background: transparent;
        font-family: inherit;
        font-size: 17px;
    }
    body.page-conti .category-search input::placeholder{
        color: #8a929f;
    }
    body.page-conti .category-search button{
        min-width: 190px;
        min-height: 52px;
        border: 0;
        border-radius: 14px;
        background: var(--green);
        color: #ffffff;
        font-family: inherit;
        font-size: 16px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-conti .category-search button:hover{
        background: var(--green-dark);
    }
    body.page-conti .category-hero__quick-links{
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    body.page-conti .category-hero__quick-links a{
        display: inline-flex;
        align-items: center;
        min-height: 41px;
        padding: 8px 14px;
        border: 1px solid #d8dee1;
        border-radius: 999px;
        background: rgba(255,255,255,.9);
        color: #262c31;
        text-decoration: none;
        font-size: 13px;
        font-weight: 850;
    }
    body.page-conti .category-search-note{
        display: none;
        margin: 13px 0 0;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
    }
    body.page-conti .category-search-note.is-visible{
        display: block;
    }

    @media (max-width: 640px){
        body.page-conti .category-hero{
            padding: 54px 0 48px;
        }
        body.page-conti .category-hero__eyebrow{
            gap: 12px;
            margin-bottom: 23px;
            font-size: 12px;
        }
        body.page-conti .category-hero__eyebrow::before{
            width: 36px;
        }
        body.page-conti .category-hero h1{
            font-size: clamp(47px, 13.2vw, 64px);
        }
        body.page-conti .category-hero__lead{
            margin-top: 25px;
            font-size: 18px;
            line-height: 1.65;
        }
        body.page-conti .category-search{
            margin-top: 30px;
            grid-template-columns: 1fr;
            padding: 8px;
            border-radius: 18px;
        }
        body.page-conti .category-search__field{
            min-height: 54px;
            padding: 0 14px;
        }
        body.page-conti .category-search input{
            font-size: 16px;
        }
        body.page-conti .category-search button{
            width: 100%;
            min-height: 52px;
            font-size: 16px;
        }
        body.page-conti .category-hero__quick-links{
            gap: 9px;
        }
        body.page-conti .category-hero__quick-links a{
            min-height: 39px;
            padding: 7px 12px;
            font-size: 12px;
        }
    }



   /* BOX PIATTAFORMA: copia fedele della index.html ufficiale */
body.page-conti .ranking-section, body.page-conti .ranking, body.page-conti main{ --section-accent:#169d6c; --section-accent-dark:#087060; --section-soft:#e7f6ef; }
body.page-conti .platform-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
body.page-conti .platform-card{ position:relative; min-width:0; padding:24px; border:1px solid #d8e1ea; border-radius:22px; background:#fff; box-shadow:0 10px 26px rgba(8,27,46,.055); overflow:hidden; font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; }
body.page-conti .platform-card::before{ content:""; position:absolute; inset:0 0 auto; height:4px; background:var(--green,#169d6c); opacity:0; }
body.page-conti .platform-card__top{ display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
body.page-conti .platform-card__identity{ min-width:0; display:flex; align-items:center; gap:14px; }
body.page-conti .platform-card__rank{ width:48px; height:48px; display:grid; place-items:center; flex:0 0 auto; border-radius:14px; color:#171b21; background:#eef0f2; font-size:20px; font-weight:950; box-shadow:none; }
body.page-conti .platform-card__category{ display:block; margin-bottom:3px; color:#69727f; font-size:12px; font-weight:850; letter-spacing:.11em; text-transform:uppercase; }
body.page-conti .platform-card h3{ margin:0; font-size:clamp(20px,2.1vw,27px); line-height:1.05; letter-spacing:-.04em; overflow-wrap:anywhere; }
body.page-conti .reaction-group{ display:flex; gap:6px; flex:0 0 auto; }
body.page-conti .reaction-button{ min-height:34px; padding:0 9px; display:inline-flex; align-items:center; justify-content:center; gap:5px; border:1px solid #dde2e6; border-radius:999px; color:#526274; background:#fff; font-size:12px; font-weight:850; cursor:pointer; }
body.page-conti .platform-card__badge-row{ margin-top:17px; }
body.page-conti .platform-card__badge{ display:inline-flex; align-items:center; min-height:28px; padding:5px 10px; border-radius:8px; color:#087060; background:#e4f5ee; font-size:12px; font-weight:850; letter-spacing:.015em; }
body.page-conti .platform-card__description{ min-height:78px; margin:17px 0 19px; color:#171b21; font-size:15px; line-height:1.65; }
body.page-conti .platform-card__facts{ padding:16px; display:grid; grid-template-columns:minmax(150px,.72fr) minmax(0,1.28fr); gap:18px; border:1px solid #e1e5e8; border-radius:16px; background:#f7f8f8; }
body.page-conti .fact-label{ display:block; margin-bottom:7px; color:#69727f; font-size:12px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
body.page-conti .rating-block{ padding-right:17px; border-right:1px solid #dce1e5; }
body.page-conti .rating-block__score{ display:flex; align-items:baseline; gap:4px; }
body.page-conti .rating-block__score strong{ color:#171b21; font-size:25px; line-height:1; letter-spacing:-.045em; }
body.page-conti .rating-block__score span{ color:#69727f; font-size:12px; font-weight:750; }
body.page-conti .rating-meter{ height:5px; margin-top:9px; overflow:hidden; border-radius:999px; background:#dfe4e2; }
body.page-conti .rating-meter span{ display:block; height:100%; border-radius:inherit; background:#169d6c; }
body.page-conti .channel-list{ display:flex; flex-wrap:wrap; gap:6px; }
body.page-conti .channel-list span{ padding:4px 7px; border:1px solid #d7dde2; border-radius:7px; color:#343b44; background:#fff; font-size:11px; font-weight:800; }
body.page-conti .promo-box{ margin-top:15px; min-height:52px; padding:10px; display:flex; align-items:stretch; flex-direction:column; gap:7px; border:1px dashed #169d6c; border-radius:13px; background:#fbfdfc; }
body.page-conti .promo-box__label{ display:flex; align-items:center; justify-content:center; gap:7px; width:100%; text-align:center; color:#69727f; font-size:13px; font-weight:850; }
body.page-conti .promo-box__code{ position:relative; min-height:34px; padding:0 10px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border:1px solid #d9e2de; border-radius:9px; color:#252b33; background:#fff; cursor:pointer; text-align:center; }
body.page-conti .promo-box__code strong{ font-size:14px; letter-spacing:.035em; }
body.page-conti .promo-box__code svg{ width:15px; height:15px; position:absolute; right:16px; fill:none; stroke:currentColor; stroke-width:1.8; }
body.page-conti .platform-card__actions{ margin-top:17px; display:grid; grid-template-columns:1fr 1fr; gap:9px; }
body.page-conti .platform-card .button{ min-height:46px; padding:0 14px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:12px; text-decoration:none; text-align:center; font-size:14px; font-weight:900; }
body.page-conti .platform-card .button--primary{ color:#fff; background:#169d6c; box-shadow:0 9px 20px rgba(22,157,108,.18); }
body.page-conti .platform-card .button--secondary{ color:#252b33; border:1px solid #cfd5da; background:#fff; }
@media (max-width:860px){ body.page-conti .platform-grid{ grid-template-columns:1fr; } }
@media (max-width:640px){
  body.page-conti .platform-card{ padding:18px; border-radius:18px; }
  body.page-conti .platform-card__top{ gap:12px; }
  body.page-conti .platform-card__rank{ width:43px; height:43px; border-radius:12px; font-size:18px; }
  body.page-conti .platform-card h3{ font-size:23px; }
  body.page-conti .reaction-button{ min-width:64px; width:auto; padding:0; justify-content:center; gap:6px; font-size:12px; font-weight:900; }
  body.page-conti .platform-card__description{ margin-top:15px; font-size:14px; }
  body.page-conti .platform-card__facts{ grid-template-columns:1fr; gap:14px; padding:14px; }
  body.page-conti .rating-block{ padding:0 0 13px; border-right:0; border-bottom:1px solid #dfe6ed; }
  body.page-conti .platform-card__actions{ grid-template-columns:1fr; }
  body.page-conti .platform-card .button{ min-height:48px; }
}
  
    body.page-conti .breadcrumb-bar{
        background:#fff;
        border-bottom:1px solid #e3e7eb;
    }
    body.page-conti .breadcrumb{
        min-height:46px;
        display:flex;
        align-items:center;
        gap:9px;
        color:#737c89;
        font-size:12px;
        font-weight:750;
    }
    body.page-conti .breadcrumb a{
        color:#16875f;
        text-decoration:none;
        font-weight:850;
    }
    body.page-conti .breadcrumb a:hover{
        text-decoration:underline;
    }
    body.page-conti .breadcrumb__separator{
        color:#a4abb4;
    }
    body.page-conti .breadcrumb__current{
        color:#252b33;
        font-weight:850;
    }



/* ===== BROKER ===== */

   body.page-broker{
        --green: #159a67;
        --green-dark: #0d7650;
        --green-soft: #eaf7f1;
        --ink: #151918;
        --muted: #6c7470;
        --line: #e4e8e6;
        --soft: #f6f8f7;
        --white: #ffffff;
        --shadow: 0 10px 30px rgba(17, 24, 20, 0.07);
        --max: 1120px;
    }
    body.page-broker *{
        box-sizing: border-box;
    }
    html{
        scroll-behavior: smooth;
    }
    body.page-broker{
        margin: 0;
        background: var(--white);
        color: var(--ink);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.55;
    }
    body.page-broker a{
        color: inherit;
    }
    body.page-broker .container{
        width: min(var(--max), calc(100% - 28px));
        margin: 0 auto;
    }
    body.page-broker .site-header{
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255,255,255,.97);
        border-bottom: 1px solid var(--line);
    }
    body.page-broker .site-header__inner{
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    body.page-broker .brand__logo-nine{
        display: block;
        width: 238px;
        max-width: 70vw;
        height: auto;
    }
    body.page-broker .menu-toggle{
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 14px;
        background: #111;
        color: #fff;
        font-size: 23px;
        cursor: pointer;
    }
    body.page-broker .site-nav{
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        padding: 10px 18px 18px;
        background: #111;
        color: #fff;
    }
    body.page-broker .site-nav.is-open{
        display: block;
    }
    body.page-broker .site-nav a{
        display: block;
        padding: 13px 4px;
        border-bottom: 1px solid #2b2b2b;
        text-decoration: none;
        font-weight: 700;
    }
    body.page-broker .hero{
        padding: 52px 0 40px;
        background: linear-gradient(180deg,#f5faf8 0%,#fff 100%);
    }
    body.page-broker .eyebrow{
        margin: 0 0 10px;
        color: var(--green-dark);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }
    body.page-broker .hero h1{
        margin: 0;
        max-width: 780px;
        font-size: clamp(36px,7vw,64px);
        line-height: 1.02;
        letter-spacing: -.045em;
    }
    body.page-broker .hero p{
        max-width: 760px;
        margin: 18px 0 0;
        color: var(--muted);
        font-size: 17px;
    }
    body.page-broker .hero-meta{
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-top: 22px;
    }
    body.page-broker .hero-meta span{
        padding: 8px 11px;
        border: 1px solid #cfe6dc;
        border-radius: 999px;
        background: #fff;
        color: #315246;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-broker .page-tabs{
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: #fff;
    }
    body.page-broker .page-tabs__inner{
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 11px 0;
    }
    body.page-broker .page-tabs a{
        flex: 0 0 auto;
        padding: 9px 13px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-broker .page-tabs a.active{
        background: #111;
        color: #fff;
    }
    body.page-broker .ranking{
        padding: 42px 0 60px;
    }
    body.page-broker .section-head{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }
    body.page-broker .section-head h2{
        margin: 0;
        font-size: clamp(29px,5vw,44px);
        letter-spacing: -.035em;
    }
    body.page-broker .section-head p{
        margin: 0;
        color: var(--muted);
        max-width: 760px;
    }
    body.page-broker .platform-list{
        display: grid;
        gap: 16px;
    }
    body.page-broker .platform-card{
        border: 1px solid var(--line);
        border-radius: 22px;
        background: #fff;
        padding: 18px;
        box-shadow: var(--shadow);
    }
    body.page-broker .platform-card.is-extra{
        display: none;
    }
    body.page-broker .platform-card.is-extra.is-visible{
        display: block;
    }
    body.page-broker .platform-top{
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    body.page-broker .rank{
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: #edf0ef;
        font-size: 16px;
        font-weight: 900;
    }
    body.page-broker .platform-identity{
        min-width: 0;
        flex: 1;
    }
    body.page-broker .platform-category{
        display: block;
        margin-bottom: 2px;
        color: #7b817e;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-broker .platform-identity h3{
        margin: 0;
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: -.02em;
    }
    body.page-broker .votes{
        display: flex;
        gap: 6px;
    }
    body.page-broker .vote{
        min-width: 54px;
        height: 38px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        color: #515956;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-broker .vote.active{
        border-color: var(--green);
        background: var(--green-soft);
        color: var(--green-dark);
    }
    body.page-broker .badge{
        display: inline-block;
        margin-top: 14px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--green-soft);
        color: #1d6046;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-broker .description{
        margin: 14px 0 16px;
        font-size: 15px;
    }
    body.page-broker .facts{
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 14px;
        padding: 15px 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }
    body.page-broker .fact-label{
        display: block;
        margin-bottom: 5px;
        color: #7a817e;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-broker .rating{
        font-size: 20px;
        font-weight: 900;
    }
    body.page-broker .rating span{
        color: var(--green);
    }
    body.page-broker .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    body.page-broker .channels span{
        padding: 5px 8px;
        border-radius: 8px;
        background: #f3f5f4;
        font-size: 11px;
        font-weight: 800;
    }
    body.page-broker .promo-box{
        margin-top: 15px;
        padding: 12px;
        border: 1px dashed #91bea9;
        border-radius: 14px;
        background: #f4fbf8;
        text-align: center;
    }
    body.page-broker .promo-label{
        display: block;
        text-align: center;
        color: #477565;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-broker .promo-code{
        position: relative;
        width: 100%;
        min-height: 38px;
        margin-top: 3px;
        border: 0;
        background: transparent;
        color: #111;
        font-size: 16px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-broker .copy-icon{
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-style: normal;
        color: #5b6862;
    }
    body.page-broker .actions{
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 14px;
    }
    body.page-broker .button{
        display: block;
        padding: 13px 15px;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        font-size: 13px;
        font-weight: 900;
    }
    body.page-broker .button-primary{
        background: var(--green);
        color: #fff;
        box-shadow: 0 7px 18px rgba(21,154,103,.2);
    }
    body.page-broker .button-secondary{
        border: 1px solid var(--line);
        background: #fff;
    }
    body.page-broker .more-wrap{
        text-align: center;
        margin-top: 24px;
    }
    body.page-broker .more-button{
        min-height: 46px;
        padding: 0 20px;
        border: 1px solid #cfd6d2;
        border-radius: 13px;
        background: #fff;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-broker .editorial{
        padding: 54px 0;
        background: var(--soft);
    }
    body.page-broker .editorial-grid{
        display: grid;
        gap: 14px;
    }
    body.page-broker .editorial-card{
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
    }
    body.page-broker .editorial-card h3{
        margin: 0 0 7px;
        font-size: 19px;
    }
    body.page-broker .editorial-card p{
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }
    body.page-broker .site-footer{
        background: #0c0d0d;
        color: #d9dddb;
        padding: 44px 0 28px;
    }
    body.page-broker .footer-logo-nine__image{
        display: block;
        width: 265px;
        max-width: 82vw;
        height: auto;
    }
    body.page-broker .footer-note{
        max-width: 640px;
        margin: 16px 0 0;
        color: #9fa6a2;
        font-size: 12px;
    }
    body.page-broker .footer-links{
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        margin-top: 22px;
    }
    body.page-broker .footer-links a{
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-broker .footer-bottom{
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid #282b2a;
        color: #858c88;
        font-size: 11px;
    }
    @media (min-width: 760px){
        body.page-broker .menu-toggle{
            display: none;
        }
        body.page-broker .site-nav{
            display: flex;
            position: static;
            padding: 0;
            gap: 18px;
            background: transparent;
            color: #202522;
        }
        body.page-broker .site-nav a{
            padding: 8px 0;
            border: 0;
            font-size: 12px;
        }
        body.page-broker .platform-list{
            grid-template-columns: repeat(2, minmax(0,1fr));
        }
        body.page-broker .actions{
            grid-template-columns: 1fr 1fr;
        }
        body.page-broker .editorial-grid{
            grid-template-columns: repeat(3,1fr);
        }
    }
    @media (max-width: 520px){
        body.page-broker .brand__logo-nine{
            width: 205px;
        }
        body.page-broker .platform-card{
            padding: 15px;
        }
        body.page-broker .platform-identity h3{
            font-size: 21px;
        }
        body.page-broker .votes{
            gap: 4px;
        }
        body.page-broker .vote{
            min-width: 50px;
            padding: 0 5px;
            font-size: 12px;
        }
        body.page-broker .facts{
            grid-template-columns: .78fr 1.22fr;
            gap: 10px;
        }
    }
    

    /* Header, FAQ e footer coordinati con la index ufficiale */
    body.page-broker .utility-bar{
        background: #03111f;
        color: #d9e4ef;
        font-size: 12px;
        letter-spacing: .02em;
    }
    body.page-broker .utility-bar .container{
        min-height: 34px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    body.page-broker .utility-bar strong{
        color: #ffffff;
    }
    body.page-broker .utility-bar__right{
        display: flex;
        align-items: center;
        gap: 18px;
        white-space: nowrap;
    }
    body.page-broker .status-dot{
        width: 7px;
        height: 7px;
        border-radius: 50%;
        display: inline-block;
        background: #45d4aa;
        box-shadow: 0 0 0 4px rgba(69, 212, 170, .13);
        margin-right: 8px;
    }
    body.page-broker .site-header{
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255,255,255,.94);
        border-bottom: 1px solid rgba(220,228,236,.8);
        backdrop-filter: blur(16px);
    }
    body.page-broker .site-header__inner{
        min-height: 76px;
        display: flex;
        align-items: center;
        gap: 26px;
    }
    body.page-broker .brand--logo-nine{
        display: inline-flex;
        align-items: center;
        flex: 0 1 310px;
        min-width: 0;
        gap: 0;
        line-height: 0;
        text-decoration: none;
    }
    body.page-broker .site-header .brand__logo-nine{
        width: 310px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    body.page-broker .main-nav{
        margin-left: auto;
        display: flex;
        align-items: stretch;
        gap: 6px;
    }
    body.page-broker .main-nav a{
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 13px 12px;
        border-radius: 10px;
        color: #26384a;
        text-decoration: none;
        font-size: 14px;
        font-weight: 800;
    }
    body.page-broker .main-nav a:hover, body.page-broker .main-nav a.is-active{
        color: #087060;
        background: #eef8f4;
    }
    body.page-broker .header-cta{
        margin-left: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 17px;
        border-radius: 12px;
        background: #071b2e;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 850;
        box-shadow: 0 9px 20px rgba(7,27,46,.18);
    }
    body.page-broker .menu-toggle{
        display: none;
        width: 44px;
        height: 44px;
        border: 1px solid #dce4ec;
        border-radius: 12px;
        background: #ffffff;
        cursor: pointer;
        padding: 0;
    }
    body.page-broker .menu-toggle span{
        display: block;
        width: 19px;
        height: 2px;
        margin: 4px auto;
        border-radius: 2px;
        background: #071b2e;
        transition: transform .2s ease, opacity .2s ease;
    }
    body.page-broker .menu-toggle[aria-expanded="true"] span:nth-child(1){
        transform: translateY(6px) rotate(45deg);
    }
    body.page-broker .menu-toggle[aria-expanded="true"] span:nth-child(2){
        opacity: 0;
    }
    body.page-broker .menu-toggle[aria-expanded="true"] span:nth-child(3){
        transform: translateY(-6px) rotate(-45deg);
    }
    body.page-broker .faq-section{
        padding: 88px 0;
        background: #ffffff;
    }
    body.page-broker .faq-section__grid{
        display: grid;
        grid-template-columns: .68fr 1.32fr;
        gap: 74px;
        align-items: start;
    }
    body.page-broker .faq-section .overline{
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #087060;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .16em;
        text-transform: uppercase;
    }
    body.page-broker .faq-section .overline::before{
        content: "";
        width: 34px;
        height: 2px;
        background: #169d6c;
    }
    body.page-broker .faq-section h2{
        margin: 14px 0 17px;
        font-size: clamp(34px, 4vw, 51px);
        line-height: 1.04;
        letter-spacing: -.052em;
    }
    body.page-broker .faq-section__intro p{
        margin: 0;
        color: #687384;
        font-size: 16px;
        line-height: 1.7;
    }
    body.page-broker .faq-list{
        border-top: 1px solid #dce4ec;
    }
    body.page-broker .faq-list details{
        border-bottom: 1px solid #dce4ec;
    }
    body.page-broker .faq-list summary{
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        list-style: none;
        cursor: pointer;
        font-size: 15px;
        font-weight: 850;
    }
    body.page-broker .faq-list summary::-webkit-details-marker{
        display: none;
    }
    body.page-broker .faq-list summary::after{
        content: "+";
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border-radius: 9px;
        color: #087060;
        background: #eaf7f1;
        font-size: 20px;
        transition: transform .2s ease;
    }
    body.page-broker .faq-list details[open] summary::after{
        transform: rotate(45deg);
    }
    body.page-broker .faq-list details p{
        margin: -4px 46px 22px 0;
        color: #687384;
        font-size: 13px;
        line-height: 1.7;
    }
    body.page-broker .site-footer{
        color: #d0d8e1;
        background: #030a11;
        padding: 0;
    }
    body.page-broker .site-footer__top{
        padding: 66px 0 52px;
        display: grid;
        grid-template-columns: 1.4fr repeat(3, .7fr);
        gap: 48px;
    }
    body.page-broker .footer-logo-nine{
        display: block;
        width: min(100%, 385px);
        line-height: 0;
        text-decoration: none;
    }
    body.page-broker .footer-logo-nine__image{
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    body.page-broker .footer-brand p{
        max-width: 400px;
        margin: 22px 0 0;
        color: #95a3b1;
        font-size: 13px;
        line-height: 1.7;
    }
    body.page-broker .footer-column h3{
        margin: 0 0 16px;
        color: #ffffff;
        font-size: 12px;
        letter-spacing: .12em;
        text-transform: uppercase;
    }
    body.page-broker .footer-column a{
        display: block;
        width: fit-content;
        margin: 10px 0;
        color: #aab6c2;
        text-decoration: none;
        font-size: 12px;
    }
    body.page-broker .site-footer__bottom{
        padding: 22px 0;
        border-top: 1px solid rgba(255,255,255,.09);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
        color: #788694;
        font-size: 12px;
        line-height: 1.6;
    }
    body.page-broker .site-footer__bottom p{
        max-width: 850px;
        margin: 0;
    }
    body.page-broker .back-to-top{
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 11px;
        color: #ffffff;
        background: rgba(255,255,255,.06);
        text-decoration: none;
    }
    @media (max-width: 860px){
        body.page-broker .site-header__inner{
            min-height: 68px;
        }
        body.page-broker .menu-toggle{
            display: block;
            margin-left: auto;
        }
        body.page-broker .main-nav{
            position: fixed;
            top: 102px;
            left: 16px;
            right: 16px;
            z-index: 1200;
            margin: 0;
            padding: 12px;
            display: grid;
            gap: 5px;
            border: 1px solid #dce4ec;
            border-radius: 18px;
            background: #ffffff;
            box-shadow: 0 18px 48px rgba(8,27,46,.11);
            transform: translateY(-14px);
            opacity: 0;
            visibility: hidden;
            transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
        }
        body.page-broker .main-nav.is-open{
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        body.page-broker .main-nav a{
            min-height: 46px;
            padding: 0 13px;
        }
        body.page-broker .header-cta{
            display: none;
        }
        body.page-broker .faq-section__grid{
            grid-template-columns: 1fr;
            gap: 38px;
        }
        body.page-broker .site-footer__top{
            grid-template-columns: 1.2fr 1fr 1fr;
        }
        body.page-broker .footer-brand{
            grid-column: 1 / -1;
        }
    }
    @media (max-width: 640px){
        body.page-broker .utility-bar .container{
            min-height: 30px;
        }
        body.page-broker .utility-bar__right{
            display: none;
        }
        body.page-broker .site-header .brand--logo-nine{
            flex: 1 1 auto;
            max-width: calc(100vw - 96px);
        }
        body.page-broker .site-header .brand__logo-nine{
            width: 100%;
        }
        body.page-broker .site-header__inner{
            gap: 14px;
        }
        body.page-broker .main-nav{
            top: 88px;
            left: 12px;
            right: 12px;
        }
        body.page-broker .faq-section{
            padding: 66px 0;
        }
        body.page-broker .faq-section h2{
            font-size: 39px;
        }
        body.page-broker .site-footer__top{
            grid-template-columns: 1fr 1fr;
            gap: 35px 22px;
        }
        body.page-broker .footer-brand{
            grid-column: 1 / -1;
        }
        body.page-broker .footer-logo-nine{
            width: min(100%, 360px);
        }
        body.page-broker .site-footer__bottom{
            align-items: flex-start;
        }
    }
   /* Schede piattaforma coordinate alla index.html */
    body.page-broker .platform-list{
        display: grid;
        gap: 24px;
    }

    body.page-broker .platform-card{
        border: 1px solid #d8dee4;
        border-radius: 24px;
        background: #ffffff;
        padding: 24px;
        box-shadow: 0 8px 24px rgba(8, 27, 46, 0.045);
    }

    body.page-broker .platform-top{
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    body.page-broker .rank{
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        display: grid;
        place-items: center;
        border-radius: 15px;
        background: #eef0f2;
        color: #15191f;
        font-size: 20px;
        font-weight: 900;
    }

    body.page-broker .platform-identity{
        min-width: 0;
        flex: 1;
    }

    body.page-broker .platform-category{
        display: block;
        margin-bottom: 4px;
        color: #717a89;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    body.page-broker .platform-identity h3{
        margin: 0;
        color: #101319;
        font-size: 28px;
        line-height: 1.05;
        letter-spacing: -.035em;
    }

    body.page-broker .votes{
        display: flex;
        gap: 8px;
        flex: 0 0 auto;
    }

    body.page-broker .vote{
        min-width: 72px;
        height: 42px;
        padding: 0 12px;
        border: 1px solid #d8dee4;
        border-radius: 999px;
        background: #ffffff;
        color: #515a68;
        font-size: 13px;
        font-weight: 900;
        cursor: pointer;
    }

    body.page-broker .vote.active{
        border-color: #84cbb0;
        background: #eef9f4;
        color: #08704c;
    }

    body.page-broker .badge{
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        padding: 7px 11px;
        border-radius: 9px;
        background: #e3f5ed;
        color: #147451;
        font-size: 12px;
        font-weight: 900;
    }

    body.page-broker .description{
        margin: 22px 0 20px;
        color: #15191f;
        font-size: 16px;
        line-height: 1.65;
    }

    body.page-broker .facts{
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 18px;
        border: 1px solid #dfe4e8;
        border-radius: 19px;
        background: #f8faf9;
    }

    body.page-broker .facts > div:first-child{
        padding-bottom: 17px;
        border-bottom: 1px solid #dfe4e8;
    }

    body.page-broker .facts > div:last-child{
        padding-top: 17px;
    }

    body.page-broker .fact-label{
        display: block;
        margin-bottom: 8px;
        color: #727b89;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    body.page-broker .rating{
        color: #11151b;
        font-size: 28px;
        font-weight: 900;
        letter-spacing: -.04em;
    }

    body.page-broker .rating .rating-star{
        display: none;
    }

    body.page-broker .rating small{
        color: #697282;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0;
    }

    body.page-broker .rating-meter{
        height: 6px;
        margin-top: 12px;
        overflow: hidden;
        border-radius: 999px;
        background: #dfe5e2;
    }

    body.page-broker .rating-meter span{
        display: block;
        height: 100%;
        border-radius: inherit;
        background: #18a26c;
    }

    body.page-broker .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    body.page-broker .channels span{
        padding: 7px 10px;
        border: 1px solid #d8dee4;
        border-radius: 9px;
        background: #ffffff;
        color: #333b46;
        font-size: 12px;
        font-weight: 900;
    }

    body.page-broker .promo-box{
        margin-top: 18px;
        padding: 14px;
        border: 1px dashed #159a67;
        border-radius: 17px;
        background: #ffffff;
        text-align: center;
    }

    body.page-broker .promo-label{
        display: block;
        text-align: center;
        color: #697282;
        font-size: 13px;
        font-weight: 900;
    }

    body.page-broker .promo-code{
        position: relative;
        width: 100%;
        min-height: 46px;
        margin-top: 9px;
        border: 1px solid #d8dee4;
        border-radius: 11px;
        background: #ffffff;
        color: #252a31;
        font-size: 17px;
        font-weight: 900;
        cursor: pointer;
        text-align: center;
    }

    body.page-broker .promo-code svg{
        position: absolute;
        top: 50%;
        right: 16px;
        width: 18px;
        height: 18px;
        transform: translateY(-50%);
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }

    body.page-broker .actions{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    body.page-broker .actions .button{
        display: flex;
        min-height: 54px;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border-radius: 14px;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        font-weight: 900;
    }

    body.page-broker .actions .button-primary{
        border: 1px solid #18a26c;
        background: #18a26c;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(24, 162, 108, .16);
    }

    body.page-broker .actions .button-secondary{
        border: 1px solid #cfd6dc;
        background: #ffffff;
        color: #20262e;
    }

    @media (min-width: 760px){
        body.page-broker .facts{
            grid-template-columns: .82fr 1.18fr;
            gap: 22px;
        }

        body.page-broker .facts > div:first-child{
            padding: 0 22px 0 0;
            border-right: 1px solid #dfe4e8;
            border-bottom: 0;
        }

        body.page-broker .facts > div:last-child{
            padding: 0;
        }

        body.page-broker .actions{
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 620px){
        body.page-broker .platform-card{
            padding: 18px;
            border-radius: 20px;
        }

        body.page-broker .platform-top{
            gap: 11px;
        }

        body.page-broker .rank{
            flex-basis: 46px;
            width: 46px;
            height: 46px;
            border-radius: 13px;
            font-size: 18px;
        }

        body.page-broker .platform-identity h3{
            font-size: 25px;
        }

        body.page-broker .platform-category{
            font-size: 12px;
        }

        body.page-broker .votes{
            gap: 6px;
        }

        body.page-broker .vote{
            min-width: 63px;
            height: 39px;
            padding: 0 8px;
            font-size: 12px;
        }

        body.page-broker .description{
            font-size: 15px;
        }

        body.page-broker .facts{
            padding: 15px;
        }
    }
  
    /* Schede piattaforma: allineate al modello ufficiale della index */
    body.page-broker .platform-list{
        display: grid;
        gap: 22px;
    }
    body.page-broker .platform-card{
        position: relative;
        min-width: 0;
        padding: 24px;
        border: 1px solid #d8e1ea;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(8,27,46,.055);
        overflow: hidden;
    }
    body.page-broker .platform-top{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }
    body.page-broker .platform-identity{
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 14px;
        flex: 1;
    }
    body.page-broker .rank{
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: #111820;
        background: #edf0f2;
        font-size: 20px;
        font-weight: 950;
        box-shadow: none;
    }
    body.page-broker .platform-category{
        display: block;
        margin-bottom: 3px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        letter-spacing: .11em;
        text-transform: uppercase;
    }
    body.page-broker .platform-identity h3{
        margin: 0;
        font-size: 27px;
        line-height: 1.05;
        letter-spacing: -.04em;
    }
    body.page-broker .votes{
        display: flex;
        gap: 8px;
        flex: 0 0 auto;
    }
    body.page-broker .vote{
        min-width: 68px;
        height: 44px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid #d8e1ea;
        border-radius: 15px;
        background: #ffffff;
        color: #343b48;
        font-size: 12px;
        font-weight: 850;
    }
    body.page-broker .badge{
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        padding: 9px 12px;
        border-radius: 11px;
        background: #e4f5ee;
        color: #16845d;
        font-size: 12px;
        font-weight: 850;
    }
    body.page-broker .description{
        margin: 21px 0 18px;
        font-size: 16px;
        line-height: 1.55;
    }
    body.page-broker .facts{
        padding: 16px;
        display: grid;
        grid-template-columns: minmax(150px,.72fr) minmax(0,1.28fr);
        gap: 18px;
        border: 1px solid #e4eaf0;
        border-radius: 16px;
        background: #f8fafc;
    }
    body.page-broker .fact-label{
        display: block;
        margin-bottom: 7px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    body.page-broker .rating{
        font-size: 25px;
        line-height: 1;
        font-weight: 950;
    }
    body.page-broker .rating-star{
        display: none;
    }
    body.page-broker .rating small{
        color: #707887;
        font-size: 12px;
        font-weight: 750;
    }
    body.page-broker .rating-meter{
        height: 5px;
        margin-top: 12px;
        border-radius: 999px;
        background: #e1e7e5;
        overflow: hidden;
    }
    body.page-broker .rating-meter span{
        display: block;
        height: 100%;
        border-radius: inherit;
        background: #1ba36f;
    }
    body.page-broker .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    body.page-broker .channels span{
        padding: 7px 10px;
        border: 1px solid #d8e1ea;
        border-radius: 10px;
        background: #ffffff;
        color: #343b48;
        font-size: 11px;
        font-weight: 800;
    }
    body.page-broker .promo-box{
        margin-top: 16px;
        padding: 13px 14px;
        border: 1.5px dashed #1a9b6d;
        border-radius: 15px;
        background: #ffffff;
        text-align: center;
    }
    body.page-broker .promo-label{
        display: block;
        margin-bottom: 9px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        text-align: center;
    }
    body.page-broker .promo-code{
        position: relative;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #d8e1dd;
        border-radius: 11px;
        background: #ffffff;
        color: #252b34;
        font-size: 14px;
        letter-spacing: .04em;
    }
    body.page-broker .promo-code svg{
        position: absolute;
        right: 13px;
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }
    body.page-broker .actions{
        display: grid;
        gap: 10px;
        margin-top: 16px;
    }
    body.page-broker .button{
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 900;
        text-decoration: none;
    }
    body.page-broker .button-primary{
        background: #1ba36f;
        color: #ffffff;
        box-shadow: 0 10px 24px rgba(27,163,111,.18);
    }
    body.page-broker .button-secondary{
        border: 1px solid #cfd7df;
        background: #ffffff;
        color: #202630;
    }
    @media (max-width: 640px){
        body.page-broker .platform-card{
            padding: 18px;
        }
        body.page-broker .platform-top{
            gap: 10px;
        }
        body.page-broker .platform-identity{
            gap: 10px;
        }
        body.page-broker .rank{
            width: 44px;
            height: 44px;
            flex-basis: 44px;
            font-size: 18px;
        }
        body.page-broker .platform-identity h3{
            font-size: 24px;
        }
        body.page-broker .votes{
            gap: 6px;
        }
        body.page-broker .vote{
            min-width: 54px;
            height: 42px;
            padding: 0 8px;
            font-size: 12px;
        }
        body.page-broker .facts{
            grid-template-columns: 1fr;
            gap: 15px;
        }
        body.page-broker .facts > div:first-child{
            padding-bottom: 15px;
            border-bottom: 1px solid #dfe6ed;
        }
    }
  

    /* Hero categoria nello stile della home ApriOnline */
    body.page-broker .category-hero{
        position: relative;
        overflow: hidden;
        padding: 70px 0 58px;
        border-bottom: 1px solid var(--line);
        background:
            radial-gradient(circle at 92% 84%, rgba(43, 191, 145, .13), transparent 24%),
            linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
    }
    body.page-broker .category-hero::before{
        content: "";
        position: absolute;
        inset: 0;
        opacity: .32;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(20, 154, 103, .055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(20, 154, 103, .055) 1px, transparent 1px);
        background-size: 42px 42px;
    }
    body.page-broker .category-hero__inner{
        position: relative;
        max-width: 850px;
    }
    body.page-broker .category-hero__eyebrow{
        display: inline-flex;
        align-items: center;
        gap: 16px;
        margin: 0 0 27px;
        color: var(--green-dark);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .17em;
        line-height: 1.45;
        text-transform: uppercase;
    }
    body.page-broker .category-hero__eyebrow::before{
        content: "";
        width: 44px;
        height: 3px;
        flex: 0 0 auto;
        border-radius: 99px;
        background: var(--green);
    }
    body.page-broker .category-hero h1{
        max-width: 820px;
        margin: 0;
        color: var(--ink);
        font-size: clamp(48px, 7.2vw, 82px);
        font-weight: 900;
        line-height: .98;
        letter-spacing: -.06em;
    }
    body.page-broker .category-hero h1 span{
        display: block;
        color: var(--green);
    }
    body.page-broker .category-hero__lead{
        max-width: 780px;
        margin: 28px 0 0;
        color: #737b88;
        font-size: clamp(18px, 2vw, 22px);
        line-height: 1.65;
    }
    body.page-broker .category-search{
        max-width: 760px;
        margin-top: 34px;
        padding: 10px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 9px;
        border: 1px solid #d9dfe3;
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(18, 34, 29, .06);
    }
    body.page-broker .category-search__field{
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0 15px;
    }
    body.page-broker .category-search__field svg{
        width: 25px;
        height: 25px;
        flex: 0 0 auto;
        fill: none;
        stroke: #74808f;
        stroke-width: 2;
        stroke-linecap: round;
    }
    body.page-broker .category-search input{
        width: 100%;
        height: 52px;
        border: 0;
        outline: 0;
        color: var(--ink);
        background: transparent;
        font-family: inherit;
        font-size: 17px;
    }
    body.page-broker .category-search input::placeholder{
        color: #8a929f;
    }
    body.page-broker .category-search button{
        min-width: 190px;
        min-height: 52px;
        border: 0;
        border-radius: 14px;
        background: var(--green);
        color: #ffffff;
        font-family: inherit;
        font-size: 16px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-broker .category-search button:hover{
        background: var(--green-dark);
    }
    body.page-broker .category-hero__quick-links{
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    body.page-broker .category-hero__quick-links a{
        display: inline-flex;
        align-items: center;
        min-height: 41px;
        padding: 8px 14px;
        border: 1px solid #d8dee1;
        border-radius: 999px;
        background: rgba(255,255,255,.9);
        color: #262c31;
        text-decoration: none;
        font-size: 13px;
        font-weight: 850;
    }
    body.page-broker .category-search-note{
        display: none;
        margin: 13px 0 0;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
    }
    body.page-broker .category-search-note.is-visible{
        display: block;
    }

    @media (max-width: 640px){
        body.page-broker .category-hero{
            padding: 54px 0 48px;
        }
        body.page-broker .category-hero__eyebrow{
            gap: 12px;
            margin-bottom: 23px;
            font-size: 12px;
        }
        body.page-broker .category-hero__eyebrow::before{
            width: 36px;
        }
        body.page-broker .category-hero h1{
            font-size: clamp(47px, 13.2vw, 64px);
        }
        body.page-broker .category-hero__lead{
            margin-top: 25px;
            font-size: 18px;
            line-height: 1.65;
        }
        body.page-broker .category-search{
            margin-top: 30px;
            grid-template-columns: 1fr;
            padding: 8px;
            border-radius: 18px;
        }
        body.page-broker .category-search__field{
            min-height: 54px;
            padding: 0 14px;
        }
        body.page-broker .category-search input{
            font-size: 16px;
        }
        body.page-broker .category-search button{
            width: 100%;
            min-height: 52px;
            font-size: 16px;
        }
        body.page-broker .category-hero__quick-links{
            gap: 9px;
        }
        body.page-broker .category-hero__quick-links a{
            min-height: 39px;
            padding: 7px 12px;
            font-size: 12px;
        }
    }


body.page-broker .breadcrumb{
        min-height:46px;
        display:flex;
        align-items:center;
        gap:9px;
        color:#737c89;
        font-size:12px;
        font-weight:750;
    }
body.page-broker .breadcrumb__current{
        color:#252b33;
        font-weight:850;
    }


   /* BOX PIATTAFORMA: copia fedele della index.html ufficiale */
body.page-broker .ranking-section, body.page-broker .ranking, body.page-broker main{ --section-accent:#169d6c; --section-accent-dark:#087060; --section-soft:#e7f6ef; }
body.page-broker .platform-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
body.page-broker .platform-card{ position:relative; min-width:0; padding:24px; border:1px solid #d8e1ea; border-radius:22px; background:#fff; box-shadow:0 10px 26px rgba(8,27,46,.055); overflow:hidden; font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; }
body.page-broker .platform-card::before{ content:""; position:absolute; inset:0 0 auto; height:4px; background:var(--green,#169d6c); opacity:0; }
body.page-broker .platform-card__top{ display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
body.page-broker .platform-card__identity{ min-width:0; display:flex; align-items:center; gap:14px; }
body.page-broker .platform-card__rank{ width:48px; height:48px; display:grid; place-items:center; flex:0 0 auto; border-radius:14px; color:#171b21; background:#eef0f2; font-size:20px; font-weight:950; box-shadow:none; }
body.page-broker .platform-card__category{ display:block; margin-bottom:3px; color:#69727f; font-size:12px; font-weight:850; letter-spacing:.11em; text-transform:uppercase; }
body.page-broker .platform-card h3{ margin:0; font-size:clamp(20px,2.1vw,27px); line-height:1.05; letter-spacing:-.04em; overflow-wrap:anywhere; }
body.page-broker .reaction-group{ display:flex; gap:6px; flex:0 0 auto; }
body.page-broker .reaction-button{ min-height:34px; padding:0 9px; display:inline-flex; align-items:center; justify-content:center; gap:5px; border:1px solid #dde2e6; border-radius:999px; color:#526274; background:#fff; font-size:12px; font-weight:850; cursor:pointer; }
body.page-broker .platform-card__badge-row{ margin-top:17px; }
body.page-broker .platform-card__badge{ display:inline-flex; align-items:center; min-height:28px; padding:5px 10px; border-radius:8px; color:#087060; background:#e4f5ee; font-size:12px; font-weight:850; letter-spacing:.015em; }
body.page-broker .platform-card__description{ min-height:78px; margin:17px 0 19px; color:#171b21; font-size:15px; line-height:1.65; }
body.page-broker .platform-card__facts{ padding:16px; display:grid; grid-template-columns:minmax(150px,.72fr) minmax(0,1.28fr); gap:18px; border:1px solid #e1e5e8; border-radius:16px; background:#f7f8f8; }
body.page-broker .fact-label{ display:block; margin-bottom:7px; color:#69727f; font-size:12px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
body.page-broker .rating-block{ padding-right:17px; border-right:1px solid #dce1e5; }
body.page-broker .rating-block__score{ display:flex; align-items:baseline; gap:4px; }
body.page-broker .rating-block__score strong{ color:#171b21; font-size:25px; line-height:1; letter-spacing:-.045em; }
body.page-broker .rating-block__score span{ color:#69727f; font-size:12px; font-weight:750; }
body.page-broker .rating-meter{ height:5px; margin-top:9px; overflow:hidden; border-radius:999px; background:#dfe4e2; }
body.page-broker .rating-meter span{ display:block; height:100%; border-radius:inherit; background:#169d6c; }
body.page-broker .channel-list{ display:flex; flex-wrap:wrap; gap:6px; }
body.page-broker .channel-list span{ padding:4px 7px; border:1px solid #d7dde2; border-radius:7px; color:#343b44; background:#fff; font-size:11px; font-weight:800; }
body.page-broker .promo-box{ margin-top:15px; min-height:52px; padding:10px; display:flex; align-items:stretch; flex-direction:column; gap:7px; border:1px dashed #169d6c; border-radius:13px; background:#fbfdfc; }
body.page-broker .promo-box__label{ display:flex; align-items:center; justify-content:center; gap:7px; width:100%; text-align:center; color:#69727f; font-size:12px; font-weight:850; }
body.page-broker .promo-box__code{ position:relative; min-height:34px; padding:0 10px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border:1px solid #d9e2de; border-radius:9px; color:#252b33; background:#fff; cursor:pointer; text-align:center; }
body.page-broker .promo-box__code strong{ font-size:12px; letter-spacing:.035em; }
body.page-broker .promo-box__code svg{ width:15px; height:15px; position:absolute; right:16px; fill:none; stroke:currentColor; stroke-width:1.8; }
body.page-broker .platform-card__actions{ margin-top:17px; display:grid; grid-template-columns:1fr 1fr; gap:9px; }
body.page-broker .platform-card .button{ min-height:46px; padding:0 14px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:12px; text-decoration:none; text-align:center; font-size:12px; font-weight:900; }
body.page-broker .platform-card .button--primary{ color:#fff; background:#169d6c; box-shadow:0 9px 20px rgba(22,157,108,.18); }
body.page-broker .platform-card .button--secondary{ color:#252b33; border:1px solid #cfd5da; background:#fff; }
@media (max-width:860px){ body.page-broker .platform-grid{ grid-template-columns:1fr; } }
@media (max-width:640px){
  body.page-broker .platform-card{ padding:18px; border-radius:18px; }
  body.page-broker .platform-card__top{ gap:12px; }
  body.page-broker .platform-card__rank{ width:43px; height:43px; border-radius:12px; font-size:18px; }
  body.page-broker .platform-card h3{ font-size:23px; }
  body.page-broker .reaction-button{ min-width:64px; width:auto; padding:0; justify-content:center; gap:6px; font-size:12px; font-weight:900; }
  body.page-broker .platform-card__description{ margin-top:15px; font-size:14px; }
  body.page-broker .platform-card__facts{ grid-template-columns:1fr; gap:14px; padding:14px; }
  body.page-broker .rating-block{ padding:0 0 13px; border-right:0; border-bottom:1px solid #dfe6ed; }
  body.page-broker .platform-card__actions{ grid-template-columns:1fr; }
  body.page-broker .platform-card .button{ min-height:48px; }
}
  


/* ===== CRIPTO ===== */

   body.page-cripto{
        --green: #159a67;
        --green-dark: #0d7650;
        --green-soft: #eaf7f1;
        --ink: #151918;
        --muted: #6c7470;
        --line: #e4e8e6;
        --soft: #f6f8f7;
        --white: #ffffff;
        --shadow: 0 10px 30px rgba(17, 24, 20, 0.07);
        --max: 1120px;
    }
    body.page-cripto *{
        box-sizing: border-box;
    }
    html{
        scroll-behavior: smooth;
    }
    body.page-cripto{
        margin: 0;
        background: var(--white);
        color: var(--ink);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.55;
    }
    body.page-cripto a{
        color: inherit;
    }
    body.page-cripto .container{
        width: min(var(--max), calc(100% - 28px));
        margin: 0 auto;
    }
    body.page-cripto .site-header{
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255,255,255,.97);
        border-bottom: 1px solid var(--line);
    }
    body.page-cripto .site-header__inner{
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    body.page-cripto .brand__logo-nine{
        display: block;
        width: 238px;
        max-width: 70vw;
        height: auto;
    }
    body.page-cripto .menu-toggle{
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 14px;
        background: #111;
        color: #fff;
        font-size: 23px;
        cursor: pointer;
    }
    body.page-cripto .site-nav{
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        padding: 10px 18px 18px;
        background: #111;
        color: #fff;
    }
    body.page-cripto .site-nav.is-open{
        display: block;
    }
    body.page-cripto .site-nav a{
        display: block;
        padding: 13px 4px;
        border-bottom: 1px solid #2b2b2b;
        text-decoration: none;
        font-weight: 700;
    }
    body.page-cripto .hero{
        padding: 52px 0 40px;
        background: linear-gradient(180deg,#f5faf8 0%,#fff 100%);
    }
    body.page-cripto .eyebrow{
        margin: 0 0 10px;
        color: var(--green-dark);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }
    body.page-cripto .hero h1{
        margin: 0;
        max-width: 780px;
        font-size: clamp(36px,7vw,64px);
        line-height: 1.02;
        letter-spacing: -.045em;
    }
    body.page-cripto .hero p{
        max-width: 760px;
        margin: 18px 0 0;
        color: var(--muted);
        font-size: 17px;
    }
    body.page-cripto .hero-meta{
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-top: 22px;
    }
    body.page-cripto .hero-meta span{
        padding: 8px 11px;
        border: 1px solid #cfe6dc;
        border-radius: 999px;
        background: #fff;
        color: #315246;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-cripto .page-tabs{
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: #fff;
    }
    body.page-cripto .page-tabs__inner{
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 11px 0;
    }
    body.page-cripto .page-tabs a{
        flex: 0 0 auto;
        padding: 9px 13px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-cripto .page-tabs a.active{
        background: #111;
        color: #fff;
    }
    body.page-cripto .ranking{
        padding: 42px 0 60px;
    }
    body.page-cripto .section-head{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }
    body.page-cripto .section-head h2{
        margin: 0;
        font-size: clamp(29px,5vw,44px);
        letter-spacing: -.035em;
    }
    body.page-cripto .section-head p{
        margin: 0;
        color: var(--muted);
        max-width: 760px;
    }
    body.page-cripto .platform-list{
        display: grid;
        gap: 16px;
    }
    body.page-cripto .platform-card{
        border: 1px solid var(--line);
        border-radius: 22px;
        background: #fff;
        padding: 18px;
        box-shadow: var(--shadow);
    }
    body.page-cripto .platform-card.is-extra{
        display: none;
    }
    body.page-cripto .platform-card.is-extra.is-visible{
        display: block;
    }
    body.page-cripto .platform-top{
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    body.page-cripto .rank{
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: #edf0ef;
        font-size: 16px;
        font-weight: 900;
    }
    body.page-cripto .platform-identity{
        min-width: 0;
        flex: 1;
    }
    body.page-cripto .platform-category{
        display: block;
        margin-bottom: 2px;
        color: #7b817e;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-cripto .platform-identity h3{
        margin: 0;
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: -.02em;
    }
    body.page-cripto .votes{
        display: flex;
        gap: 6px;
    }
    body.page-cripto .vote{
        min-width: 54px;
        height: 38px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        color: #515956;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-cripto .vote.active{
        border-color: var(--green);
        background: var(--green-soft);
        color: var(--green-dark);
    }
    body.page-cripto .badge{
        display: inline-block;
        margin-top: 14px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--green-soft);
        color: #1d6046;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-cripto .description{
        margin: 14px 0 16px;
        font-size: 15px;
    }
    body.page-cripto .facts{
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 14px;
        padding: 15px 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }
    body.page-cripto .fact-label{
        display: block;
        margin-bottom: 5px;
        color: #7a817e;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-cripto .rating{
        font-size: 20px;
        font-weight: 900;
    }
    body.page-cripto .rating span{
        color: var(--green);
    }
    body.page-cripto .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    body.page-cripto .channels span{
        padding: 5px 8px;
        border-radius: 8px;
        background: #f3f5f4;
        font-size: 11px;
        font-weight: 800;
    }
    body.page-cripto .promo-box{
        margin-top: 15px;
        padding: 12px;
        border: 1px dashed #91bea9;
        border-radius: 14px;
        background: #f4fbf8;
        text-align: center;
    }
    body.page-cripto .promo-label{
        display: block;
        text-align: center;
        color: #477565;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-cripto .promo-code{
        position: relative;
        width: 100%;
        min-height: 38px;
        margin-top: 3px;
        border: 0;
        background: transparent;
        color: #111;
        font-size: 16px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-cripto .copy-icon{
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-style: normal;
        color: #5b6862;
    }
    body.page-cripto .actions{
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 14px;
    }
    body.page-cripto .button{
        display: block;
        padding: 13px 15px;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        font-size: 13px;
        font-weight: 900;
    }
    body.page-cripto .button-primary{
        background: var(--green);
        color: #fff;
        box-shadow: 0 7px 18px rgba(21,154,103,.2);
    }
    body.page-cripto .button-secondary{
        border: 1px solid var(--line);
        background: #fff;
    }
    body.page-cripto .more-wrap{
        text-align: center;
        margin-top: 24px;
    }
    body.page-cripto .more-button{
        min-height: 46px;
        padding: 0 20px;
        border: 1px solid #cfd6d2;
        border-radius: 13px;
        background: #fff;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-cripto .editorial{
        padding: 54px 0;
        background: var(--soft);
    }
    body.page-cripto .editorial-grid{
        display: grid;
        gap: 14px;
    }
    body.page-cripto .editorial-card{
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
    }
    body.page-cripto .editorial-card h3{
        margin: 0 0 7px;
        font-size: 19px;
    }
    body.page-cripto .editorial-card p{
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }
    body.page-cripto .site-footer{
        background: #0c0d0d;
        color: #d9dddb;
        padding: 44px 0 28px;
    }
    body.page-cripto .footer-logo-nine__image{
        display: block;
        width: 265px;
        max-width: 82vw;
        height: auto;
    }
    body.page-cripto .footer-note{
        max-width: 640px;
        margin: 16px 0 0;
        color: #9fa6a2;
        font-size: 12px;
    }
    body.page-cripto .footer-links{
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        margin-top: 22px;
    }
    body.page-cripto .footer-links a{
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-cripto .footer-bottom{
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid #282b2a;
        color: #858c88;
        font-size: 11px;
    }
    @media (min-width: 760px){
        body.page-cripto .menu-toggle{
            display: none;
        }
        body.page-cripto .site-nav{
            display: flex;
            position: static;
            padding: 0;
            gap: 18px;
            background: transparent;
            color: #202522;
        }
        body.page-cripto .site-nav a{
            padding: 8px 0;
            border: 0;
            font-size: 12px;
        }
        body.page-cripto .platform-list{
            grid-template-columns: repeat(2, minmax(0,1fr));
        }
        body.page-cripto .actions{
            grid-template-columns: 1fr 1fr;
        }
        body.page-cripto .editorial-grid{
            grid-template-columns: repeat(3,1fr);
        }
    }
    @media (max-width: 520px){
        body.page-cripto .brand__logo-nine{
            width: 205px;
        }
        body.page-cripto .platform-card{
            padding: 15px;
        }
        body.page-cripto .platform-identity h3{
            font-size: 21px;
        }
        body.page-cripto .votes{
            gap: 4px;
        }
        body.page-cripto .vote{
            min-width: 50px;
            padding: 0 5px;
            font-size: 12px;
        }
        body.page-cripto .facts{
            grid-template-columns: .78fr 1.22fr;
            gap: 10px;
        }
    }
    

    /* Header, FAQ e footer coordinati con la index ufficiale */
    body.page-cripto .utility-bar{
        background: #03111f;
        color: #d9e4ef;
        font-size: 12px;
        letter-spacing: .02em;
    }
    body.page-cripto .utility-bar .container{
        min-height: 34px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    body.page-cripto .utility-bar strong{
        color: #ffffff;
    }
    body.page-cripto .utility-bar__right{
        display: flex;
        align-items: center;
        gap: 18px;
        white-space: nowrap;
    }
    body.page-cripto .status-dot{
        width: 7px;
        height: 7px;
        border-radius: 50%;
        display: inline-block;
        background: #45d4aa;
        box-shadow: 0 0 0 4px rgba(69, 212, 170, .13);
        margin-right: 8px;
    }
    body.page-cripto .site-header{
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255,255,255,.94);
        border-bottom: 1px solid rgba(220,228,236,.8);
        backdrop-filter: blur(16px);
    }
    body.page-cripto .site-header__inner{
        min-height: 76px;
        display: flex;
        align-items: center;
        gap: 26px;
    }
    body.page-cripto .brand--logo-nine{
        display: inline-flex;
        align-items: center;
        flex: 0 1 310px;
        min-width: 0;
        gap: 0;
        line-height: 0;
        text-decoration: none;
    }
    body.page-cripto .site-header .brand__logo-nine{
        width: 310px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    body.page-cripto .main-nav{
        margin-left: auto;
        display: flex;
        align-items: stretch;
        gap: 6px;
    }
    body.page-cripto .main-nav a{
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 13px 12px;
        border-radius: 10px;
        color: #26384a;
        text-decoration: none;
        font-size: 14px;
        font-weight: 800;
    }
    body.page-cripto .main-nav a:hover, body.page-cripto .main-nav a.is-active{
        color: #087060;
        background: #eef8f4;
    }
    body.page-cripto .header-cta{
        margin-left: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 17px;
        border-radius: 12px;
        background: #071b2e;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 850;
        box-shadow: 0 9px 20px rgba(7,27,46,.18);
    }
    body.page-cripto .menu-toggle{
        display: none;
        width: 44px;
        height: 44px;
        border: 1px solid #dce4ec;
        border-radius: 12px;
        background: #ffffff;
        cursor: pointer;
        padding: 0;
    }
    body.page-cripto .menu-toggle span{
        display: block;
        width: 19px;
        height: 2px;
        margin: 4px auto;
        border-radius: 2px;
        background: #071b2e;
        transition: transform .2s ease, opacity .2s ease;
    }
    body.page-cripto .menu-toggle[aria-expanded="true"] span:nth-child(1){
        transform: translateY(6px) rotate(45deg);
    }
    body.page-cripto .menu-toggle[aria-expanded="true"] span:nth-child(2){
        opacity: 0;
    }
    body.page-cripto .menu-toggle[aria-expanded="true"] span:nth-child(3){
        transform: translateY(-6px) rotate(-45deg);
    }
    body.page-cripto .faq-section{
        padding: 88px 0;
        background: #ffffff;
    }
    body.page-cripto .faq-section__grid{
        display: grid;
        grid-template-columns: .68fr 1.32fr;
        gap: 74px;
        align-items: start;
    }
    body.page-cripto .faq-section .overline{
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #087060;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .16em;
        text-transform: uppercase;
    }
    body.page-cripto .faq-section .overline::before{
        content: "";
        width: 34px;
        height: 2px;
        background: #169d6c;
    }
    body.page-cripto .faq-section h2{
        margin: 14px 0 17px;
        font-size: clamp(34px, 4vw, 51px);
        line-height: 1.04;
        letter-spacing: -.052em;
    }
    body.page-cripto .faq-section__intro p{
        margin: 0;
        color: #687384;
        font-size: 16px;
        line-height: 1.7;
    }
    body.page-cripto .faq-list{
        border-top: 1px solid #dce4ec;
    }
    body.page-cripto .faq-list details{
        border-bottom: 1px solid #dce4ec;
    }
    body.page-cripto .faq-list summary{
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        list-style: none;
        cursor: pointer;
        font-size: 15px;
        font-weight: 850;
    }
    body.page-cripto .faq-list summary::-webkit-details-marker{
        display: none;
    }
    body.page-cripto .faq-list summary::after{
        content: "+";
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border-radius: 9px;
        color: #087060;
        background: #eaf7f1;
        font-size: 20px;
        transition: transform .2s ease;
    }
    body.page-cripto .faq-list details[open] summary::after{
        transform: rotate(45deg);
    }
    body.page-cripto .faq-list details p{
        margin: -4px 46px 22px 0;
        color: #687384;
        font-size: 13px;
        line-height: 1.7;
    }
    body.page-cripto .site-footer{
        color: #d0d8e1;
        background: #030a11;
        padding: 0;
    }
    body.page-cripto .site-footer__top{
        padding: 66px 0 52px;
        display: grid;
        grid-template-columns: 1.4fr repeat(3, .7fr);
        gap: 48px;
    }
    body.page-cripto .footer-logo-nine{
        display: block;
        width: min(100%, 385px);
        line-height: 0;
        text-decoration: none;
    }
    body.page-cripto .footer-logo-nine__image{
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    body.page-cripto .footer-brand p{
        max-width: 400px;
        margin: 22px 0 0;
        color: #95a3b1;
        font-size: 13px;
        line-height: 1.7;
    }
    body.page-cripto .footer-column h3{
        margin: 0 0 16px;
        color: #ffffff;
        font-size: 12px;
        letter-spacing: .12em;
        text-transform: uppercase;
    }
    body.page-cripto .footer-column a{
        display: block;
        width: fit-content;
        margin: 10px 0;
        color: #aab6c2;
        text-decoration: none;
        font-size: 12px;
    }
    body.page-cripto .site-footer__bottom{
        padding: 22px 0;
        border-top: 1px solid rgba(255,255,255,.09);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
        color: #788694;
        font-size: 12px;
        line-height: 1.6;
    }
    body.page-cripto .site-footer__bottom p{
        max-width: 850px;
        margin: 0;
    }
    body.page-cripto .back-to-top{
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 11px;
        color: #ffffff;
        background: rgba(255,255,255,.06);
        text-decoration: none;
    }
    @media (max-width: 860px){
        body.page-cripto .site-header__inner{
            min-height: 68px;
        }
        body.page-cripto .menu-toggle{
            display: block;
            margin-left: auto;
        }
        body.page-cripto .main-nav{
            position: fixed;
            top: 102px;
            left: 16px;
            right: 16px;
            z-index: 1200;
            margin: 0;
            padding: 12px;
            display: grid;
            gap: 5px;
            border: 1px solid #dce4ec;
            border-radius: 18px;
            background: #ffffff;
            box-shadow: 0 18px 48px rgba(8,27,46,.11);
            transform: translateY(-14px);
            opacity: 0;
            visibility: hidden;
            transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
        }
        body.page-cripto .main-nav.is-open{
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        body.page-cripto .main-nav a{
            min-height: 46px;
            padding: 0 13px;
        }
        body.page-cripto .header-cta{
            display: none;
        }
        body.page-cripto .faq-section__grid{
            grid-template-columns: 1fr;
            gap: 38px;
        }
        body.page-cripto .site-footer__top{
            grid-template-columns: 1.2fr 1fr 1fr;
        }
        body.page-cripto .footer-brand{
            grid-column: 1 / -1;
        }
    }
    @media (max-width: 640px){
        body.page-cripto .utility-bar .container{
            min-height: 30px;
        }
        body.page-cripto .utility-bar__right{
            display: none;
        }
        body.page-cripto .site-header .brand--logo-nine{
            flex: 1 1 auto;
            max-width: calc(100vw - 96px);
        }
        body.page-cripto .site-header .brand__logo-nine{
            width: 100%;
        }
        body.page-cripto .site-header__inner{
            gap: 14px;
        }
        body.page-cripto .main-nav{
            top: 88px;
            left: 12px;
            right: 12px;
        }
        body.page-cripto .faq-section{
            padding: 66px 0;
        }
        body.page-cripto .faq-section h2{
            font-size: 39px;
        }
        body.page-cripto .site-footer__top{
            grid-template-columns: 1fr 1fr;
            gap: 35px 22px;
        }
        body.page-cripto .footer-brand{
            grid-column: 1 / -1;
        }
        body.page-cripto .footer-logo-nine{
            width: min(100%, 360px);
        }
        body.page-cripto .site-footer__bottom{
            align-items: flex-start;
        }
    }
   /* Schede piattaforma coordinate alla index.html */
    body.page-cripto .platform-list{
        display: grid;
        gap: 24px;
    }

    body.page-cripto .platform-card{
        border: 1px solid #d8dee4;
        border-radius: 24px;
        background: #ffffff;
        padding: 24px;
        box-shadow: 0 8px 24px rgba(8, 27, 46, 0.045);
    }

    body.page-cripto .platform-top{
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    body.page-cripto .rank{
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        display: grid;
        place-items: center;
        border-radius: 15px;
        background: #eef0f2;
        color: #15191f;
        font-size: 20px;
        font-weight: 900;
    }

    body.page-cripto .platform-identity{
        min-width: 0;
        flex: 1;
    }

    body.page-cripto .platform-category{
        display: block;
        margin-bottom: 4px;
        color: #717a89;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    body.page-cripto .platform-identity h3{
        margin: 0;
        color: #101319;
        font-size: 28px;
        line-height: 1.05;
        letter-spacing: -.035em;
    }

    body.page-cripto .votes{
        display: flex;
        gap: 8px;
        flex: 0 0 auto;
    }

    body.page-cripto .vote{
        min-width: 72px;
        height: 42px;
        padding: 0 12px;
        border: 1px solid #d8dee4;
        border-radius: 999px;
        background: #ffffff;
        color: #515a68;
        font-size: 13px;
        font-weight: 900;
        cursor: pointer;
    }

    body.page-cripto .vote.active{
        border-color: #84cbb0;
        background: #eef9f4;
        color: #08704c;
    }

    body.page-cripto .badge{
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        padding: 7px 11px;
        border-radius: 9px;
        background: #e3f5ed;
        color: #147451;
        font-size: 12px;
        font-weight: 900;
    }

    body.page-cripto .description{
        margin: 22px 0 20px;
        color: #15191f;
        font-size: 16px;
        line-height: 1.65;
    }

    body.page-cripto .facts{
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 18px;
        border: 1px solid #dfe4e8;
        border-radius: 19px;
        background: #f8faf9;
    }

    body.page-cripto .facts > div:first-child{
        padding-bottom: 17px;
        border-bottom: 1px solid #dfe4e8;
    }

    body.page-cripto .facts > div:last-child{
        padding-top: 17px;
    }

    body.page-cripto .fact-label{
        display: block;
        margin-bottom: 8px;
        color: #727b89;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    body.page-cripto .rating{
        color: #11151b;
        font-size: 28px;
        font-weight: 900;
        letter-spacing: -.04em;
    }

    body.page-cripto .rating .rating-star{
        display: none;
    }

    body.page-cripto .rating small{
        color: #697282;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0;
    }

    body.page-cripto .rating-meter{
        height: 6px;
        margin-top: 12px;
        overflow: hidden;
        border-radius: 999px;
        background: #dfe5e2;
    }

    body.page-cripto .rating-meter span{
        display: block;
        height: 100%;
        border-radius: inherit;
        background: #18a26c;
    }

    body.page-cripto .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    body.page-cripto .channels span{
        padding: 7px 10px;
        border: 1px solid #d8dee4;
        border-radius: 9px;
        background: #ffffff;
        color: #333b46;
        font-size: 12px;
        font-weight: 900;
    }

    body.page-cripto .promo-box{
        margin-top: 18px;
        padding: 14px;
        border: 1px dashed #159a67;
        border-radius: 17px;
        background: #ffffff;
        text-align: center;
    }

    body.page-cripto .promo-label{
        display: block;
        text-align: center;
        color: #697282;
        font-size: 13px;
        font-weight: 900;
    }

    body.page-cripto .promo-code{
        position: relative;
        width: 100%;
        min-height: 46px;
        margin-top: 9px;
        border: 1px solid #d8dee4;
        border-radius: 11px;
        background: #ffffff;
        color: #252a31;
        font-size: 17px;
        font-weight: 900;
        cursor: pointer;
        text-align: center;
    }

    body.page-cripto .promo-code svg{
        position: absolute;
        top: 50%;
        right: 16px;
        width: 18px;
        height: 18px;
        transform: translateY(-50%);
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }

    body.page-cripto .actions{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    body.page-cripto .actions .button{
        display: flex;
        min-height: 54px;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border-radius: 14px;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        font-weight: 900;
    }

    body.page-cripto .actions .button-primary{
        border: 1px solid #18a26c;
        background: #18a26c;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(24, 162, 108, .16);
    }

    body.page-cripto .actions .button-secondary{
        border: 1px solid #cfd6dc;
        background: #ffffff;
        color: #20262e;
    }

    @media (min-width: 760px){
        body.page-cripto .facts{
            grid-template-columns: .82fr 1.18fr;
            gap: 22px;
        }

        body.page-cripto .facts > div:first-child{
            padding: 0 22px 0 0;
            border-right: 1px solid #dfe4e8;
            border-bottom: 0;
        }

        body.page-cripto .facts > div:last-child{
            padding: 0;
        }

        body.page-cripto .actions{
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 620px){
        body.page-cripto .platform-card{
            padding: 18px;
            border-radius: 20px;
        }

        body.page-cripto .platform-top{
            gap: 11px;
        }

        body.page-cripto .rank{
            flex-basis: 46px;
            width: 46px;
            height: 46px;
            border-radius: 13px;
            font-size: 18px;
        }

        body.page-cripto .platform-identity h3{
            font-size: 25px;
        }

        body.page-cripto .platform-category{
            font-size: 12px;
        }

        body.page-cripto .votes{
            gap: 6px;
        }

        body.page-cripto .vote{
            min-width: 63px;
            height: 39px;
            padding: 0 8px;
            font-size: 12px;
        }

        body.page-cripto .description{
            font-size: 15px;
        }

        body.page-cripto .facts{
            padding: 15px;
        }
    }
  
    /* Schede piattaforma: allineate al modello ufficiale della index */
    body.page-cripto .platform-list{
        display: grid;
        gap: 22px;
    }
    body.page-cripto .platform-card{
        position: relative;
        min-width: 0;
        padding: 24px;
        border: 1px solid #d8e1ea;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(8,27,46,.055);
        overflow: hidden;
    }
    body.page-cripto .platform-top{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }
    body.page-cripto .platform-identity{
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 14px;
        flex: 1;
    }
    body.page-cripto .rank{
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: #111820;
        background: #edf0f2;
        font-size: 20px;
        font-weight: 950;
        box-shadow: none;
    }
    body.page-cripto .platform-category{
        display: block;
        margin-bottom: 3px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        letter-spacing: .11em;
        text-transform: uppercase;
    }
    body.page-cripto .platform-identity h3{
        margin: 0;
        font-size: 27px;
        line-height: 1.05;
        letter-spacing: -.04em;
    }
    body.page-cripto .votes{
        display: flex;
        gap: 8px;
        flex: 0 0 auto;
    }
    body.page-cripto .vote{
        min-width: 68px;
        height: 44px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid #d8e1ea;
        border-radius: 15px;
        background: #ffffff;
        color: #343b48;
        font-size: 12px;
        font-weight: 850;
    }
    body.page-cripto .badge{
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        padding: 9px 12px;
        border-radius: 11px;
        background: #e4f5ee;
        color: #16845d;
        font-size: 12px;
        font-weight: 850;
    }
    body.page-cripto .description{
        margin: 21px 0 18px;
        font-size: 16px;
        line-height: 1.55;
    }
    body.page-cripto .facts{
        padding: 16px;
        display: grid;
        grid-template-columns: minmax(150px,.72fr) minmax(0,1.28fr);
        gap: 18px;
        border: 1px solid #e4eaf0;
        border-radius: 16px;
        background: #f8fafc;
    }
    body.page-cripto .fact-label{
        display: block;
        margin-bottom: 7px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    body.page-cripto .rating{
        font-size: 25px;
        line-height: 1;
        font-weight: 950;
    }
    body.page-cripto .rating-star{
        display: none;
    }
    body.page-cripto .rating small{
        color: #707887;
        font-size: 12px;
        font-weight: 750;
    }
    body.page-cripto .rating-meter{
        height: 5px;
        margin-top: 12px;
        border-radius: 999px;
        background: #e1e7e5;
        overflow: hidden;
    }
    body.page-cripto .rating-meter span{
        display: block;
        height: 100%;
        border-radius: inherit;
        background: #1ba36f;
    }
    body.page-cripto .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    body.page-cripto .channels span{
        padding: 7px 10px;
        border: 1px solid #d8e1ea;
        border-radius: 10px;
        background: #ffffff;
        color: #343b48;
        font-size: 11px;
        font-weight: 800;
    }
    body.page-cripto .promo-box{
        margin-top: 16px;
        padding: 13px 14px;
        border: 1.5px dashed #1a9b6d;
        border-radius: 15px;
        background: #ffffff;
        text-align: center;
    }
    body.page-cripto .promo-label{
        display: block;
        margin-bottom: 9px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        text-align: center;
    }
    body.page-cripto .promo-code{
        position: relative;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #d8e1dd;
        border-radius: 11px;
        background: #ffffff;
        color: #252b34;
        font-size: 14px;
        letter-spacing: .04em;
    }
    body.page-cripto .promo-code svg{
        position: absolute;
        right: 13px;
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }
    body.page-cripto .actions{
        display: grid;
        gap: 10px;
        margin-top: 16px;
    }
    body.page-cripto .button{
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 900;
        text-decoration: none;
    }
    body.page-cripto .button-primary{
        background: #1ba36f;
        color: #ffffff;
        box-shadow: 0 10px 24px rgba(27,163,111,.18);
    }
    body.page-cripto .button-secondary{
        border: 1px solid #cfd7df;
        background: #ffffff;
        color: #202630;
    }
    @media (max-width: 640px){
        body.page-cripto .platform-card{
            padding: 18px;
        }
        body.page-cripto .platform-top{
            gap: 10px;
        }
        body.page-cripto .platform-identity{
            gap: 10px;
        }
        body.page-cripto .rank{
            width: 44px;
            height: 44px;
            flex-basis: 44px;
            font-size: 18px;
        }
        body.page-cripto .platform-identity h3{
            font-size: 24px;
        }
        body.page-cripto .votes{
            gap: 6px;
        }
        body.page-cripto .vote{
            min-width: 54px;
            height: 42px;
            padding: 0 8px;
            font-size: 12px;
        }
        body.page-cripto .facts{
            grid-template-columns: 1fr;
            gap: 15px;
        }
        body.page-cripto .facts > div:first-child{
            padding-bottom: 15px;
            border-bottom: 1px solid #dfe6ed;
        }
    }
  

    /* Hero categoria nello stile della home ApriOnline */
    body.page-cripto .category-hero{
        position: relative;
        overflow: hidden;
        padding: 70px 0 58px;
        border-bottom: 1px solid var(--line);
        background:
            radial-gradient(circle at 92% 84%, rgba(43, 191, 145, .13), transparent 24%),
            linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
    }
    body.page-cripto .category-hero::before{
        content: "";
        position: absolute;
        inset: 0;
        opacity: .32;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(20, 154, 103, .055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(20, 154, 103, .055) 1px, transparent 1px);
        background-size: 42px 42px;
    }
    body.page-cripto .category-hero__inner{
        position: relative;
        max-width: 850px;
    }
    body.page-cripto .category-hero__eyebrow{
        display: inline-flex;
        align-items: center;
        gap: 16px;
        margin: 0 0 27px;
        color: var(--green-dark);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .17em;
        line-height: 1.45;
        text-transform: uppercase;
    }
    body.page-cripto .category-hero__eyebrow::before{
        content: "";
        width: 44px;
        height: 3px;
        flex: 0 0 auto;
        border-radius: 99px;
        background: var(--green);
    }
    body.page-cripto .category-hero h1{
        max-width: 820px;
        margin: 0;
        color: var(--ink);
        font-size: clamp(48px, 7.2vw, 82px);
        font-weight: 900;
        line-height: .98;
        letter-spacing: -.06em;
    }
    body.page-cripto .category-hero h1 span{
        display: block;
        color: var(--green);
    }
    body.page-cripto .category-hero__lead{
        max-width: 780px;
        margin: 28px 0 0;
        color: #737b88;
        font-size: clamp(18px, 2vw, 22px);
        line-height: 1.65;
    }
    body.page-cripto .category-search{
        max-width: 760px;
        margin-top: 34px;
        padding: 10px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 9px;
        border: 1px solid #d9dfe3;
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(18, 34, 29, .06);
    }
    body.page-cripto .category-search__field{
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0 15px;
    }
    body.page-cripto .category-search__field svg{
        width: 25px;
        height: 25px;
        flex: 0 0 auto;
        fill: none;
        stroke: #74808f;
        stroke-width: 2;
        stroke-linecap: round;
    }
    body.page-cripto .category-search input{
        width: 100%;
        height: 52px;
        border: 0;
        outline: 0;
        color: var(--ink);
        background: transparent;
        font-family: inherit;
        font-size: 17px;
    }
    body.page-cripto .category-search input::placeholder{
        color: #8a929f;
    }
    body.page-cripto .category-search button{
        min-width: 190px;
        min-height: 52px;
        border: 0;
        border-radius: 14px;
        background: var(--green);
        color: #ffffff;
        font-family: inherit;
        font-size: 16px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-cripto .category-search button:hover{
        background: var(--green-dark);
    }
    body.page-cripto .category-hero__quick-links{
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    body.page-cripto .category-hero__quick-links a{
        display: inline-flex;
        align-items: center;
        min-height: 41px;
        padding: 8px 14px;
        border: 1px solid #d8dee1;
        border-radius: 999px;
        background: rgba(255,255,255,.9);
        color: #262c31;
        text-decoration: none;
        font-size: 13px;
        font-weight: 850;
    }
    body.page-cripto .category-search-note{
        display: none;
        margin: 13px 0 0;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
    }
    body.page-cripto .category-search-note.is-visible{
        display: block;
    }

    @media (max-width: 640px){
        body.page-cripto .category-hero{
            padding: 54px 0 48px;
        }
        body.page-cripto .category-hero__eyebrow{
            gap: 12px;
            margin-bottom: 23px;
            font-size: 12px;
        }
        body.page-cripto .category-hero__eyebrow::before{
            width: 36px;
        }
        body.page-cripto .category-hero h1{
            font-size: clamp(47px, 13.2vw, 64px);
        }
        body.page-cripto .category-hero__lead{
            margin-top: 25px;
            font-size: 18px;
            line-height: 1.65;
        }
        body.page-cripto .category-search{
            margin-top: 30px;
            grid-template-columns: 1fr;
            padding: 8px;
            border-radius: 18px;
        }
        body.page-cripto .category-search__field{
            min-height: 54px;
            padding: 0 14px;
        }
        body.page-cripto .category-search input{
            font-size: 16px;
        }
        body.page-cripto .category-search button{
            width: 100%;
            min-height: 52px;
            font-size: 16px;
        }
        body.page-cripto .category-hero__quick-links{
            gap: 9px;
        }
        body.page-cripto .category-hero__quick-links a{
            min-height: 39px;
            padding: 7px 12px;
            font-size: 12px;
        }
    }


body.page-cripto .breadcrumb{
        min-height:46px;
        display:flex;
        align-items:center;
        gap:9px;
        color:#737c89;
        font-size:12px;
        font-weight:750;
    }
body.page-cripto .breadcrumb__current{
        color:#252b33;
        font-weight:850;
    }


   /* BOX PIATTAFORMA: copia fedele della index.html ufficiale */
body.page-cripto .ranking-section, body.page-cripto .ranking, body.page-cripto main{ --section-accent:#169d6c; --section-accent-dark:#087060; --section-soft:#e7f6ef; }
body.page-cripto .platform-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
body.page-cripto .platform-card{ position:relative; min-width:0; padding:24px; border:1px solid #d8e1ea; border-radius:22px; background:#fff; box-shadow:0 10px 26px rgba(8,27,46,.055); overflow:hidden; font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; }
body.page-cripto .platform-card::before{ content:""; position:absolute; inset:0 0 auto; height:4px; background:var(--green,#169d6c); opacity:0; }
body.page-cripto .platform-card__top{ display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
body.page-cripto .platform-card__identity{ min-width:0; display:flex; align-items:center; gap:14px; }
body.page-cripto .platform-card__rank{ width:48px; height:48px; display:grid; place-items:center; flex:0 0 auto; border-radius:14px; color:#171b21; background:#eef0f2; font-size:20px; font-weight:950; box-shadow:none; }
body.page-cripto .platform-card__category{ display:block; margin-bottom:3px; color:#69727f; font-size:12px; font-weight:850; letter-spacing:.11em; text-transform:uppercase; }
body.page-cripto .platform-card h3{ margin:0; font-size:clamp(20px,2.1vw,27px); line-height:1.05; letter-spacing:-.04em; overflow-wrap:anywhere; }
body.page-cripto .reaction-group{ display:flex; gap:6px; flex:0 0 auto; }
body.page-cripto .reaction-button{ min-height:34px; padding:0 9px; display:inline-flex; align-items:center; justify-content:center; gap:5px; border:1px solid #dde2e6; border-radius:999px; color:#526274; background:#fff; font-size:12px; font-weight:850; cursor:pointer; }
body.page-cripto .platform-card__badge-row{ margin-top:17px; }
body.page-cripto .platform-card__badge{ display:inline-flex; align-items:center; min-height:28px; padding:5px 10px; border-radius:8px; color:#087060; background:#e4f5ee; font-size:12px; font-weight:850; letter-spacing:.015em; }
body.page-cripto .platform-card__description{ min-height:78px; margin:17px 0 19px; color:#171b21; font-size:15px; line-height:1.65; }
body.page-cripto .platform-card__facts{ padding:16px; display:grid; grid-template-columns:minmax(150px,.72fr) minmax(0,1.28fr); gap:18px; border:1px solid #e1e5e8; border-radius:16px; background:#f7f8f8; }
body.page-cripto .fact-label{ display:block; margin-bottom:7px; color:#69727f; font-size:12px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
body.page-cripto .rating-block{ padding-right:17px; border-right:1px solid #dce1e5; }
body.page-cripto .rating-block__score{ display:flex; align-items:baseline; gap:4px; }
body.page-cripto .rating-block__score strong{ color:#171b21; font-size:25px; line-height:1; letter-spacing:-.045em; }
body.page-cripto .rating-block__score span{ color:#69727f; font-size:12px; font-weight:750; }
body.page-cripto .rating-meter{ height:5px; margin-top:9px; overflow:hidden; border-radius:999px; background:#dfe4e2; }
body.page-cripto .rating-meter span{ display:block; height:100%; border-radius:inherit; background:#169d6c; }
body.page-cripto .channel-list{ display:flex; flex-wrap:wrap; gap:6px; }
body.page-cripto .channel-list span{ padding:4px 7px; border:1px solid #d7dde2; border-radius:7px; color:#343b44; background:#fff; font-size:11px; font-weight:800; }
body.page-cripto .promo-box{ margin-top:15px; min-height:52px; padding:10px; display:flex; align-items:stretch; flex-direction:column; gap:7px; border:1px dashed #169d6c; border-radius:13px; background:#fbfdfc; }
body.page-cripto .promo-box__label{ display:flex; align-items:center; justify-content:center; gap:7px; width:100%; text-align:center; color:#69727f; font-size:12px; font-weight:850; }
body.page-cripto .promo-box__code{ position:relative; min-height:34px; padding:0 10px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border:1px solid #d9e2de; border-radius:9px; color:#252b33; background:#fff; cursor:pointer; text-align:center; }
body.page-cripto .promo-box__code strong{ font-size:12px; letter-spacing:.035em; }
body.page-cripto .promo-box__code svg{ width:15px; height:15px; position:absolute; right:16px; fill:none; stroke:currentColor; stroke-width:1.8; }
body.page-cripto .platform-card__actions{ margin-top:17px; display:grid; grid-template-columns:1fr 1fr; gap:9px; }
body.page-cripto .platform-card .button{ min-height:46px; padding:0 14px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:12px; text-decoration:none; text-align:center; font-size:12px; font-weight:900; }
body.page-cripto .platform-card .button--primary{ color:#fff; background:#169d6c; box-shadow:0 9px 20px rgba(22,157,108,.18); }
body.page-cripto .platform-card .button--secondary{ color:#252b33; border:1px solid #cfd5da; background:#fff; }
@media (max-width:860px){ body.page-cripto .platform-grid{ grid-template-columns:1fr; } }
@media (max-width:640px){
  body.page-cripto .platform-card{ padding:18px; border-radius:18px; }
  body.page-cripto .platform-card__top{ gap:12px; }
  body.page-cripto .platform-card__rank{ width:43px; height:43px; border-radius:12px; font-size:18px; }
  body.page-cripto .platform-card h3{ font-size:23px; }
  body.page-cripto .reaction-button{ min-width:64px; width:auto; padding:0; justify-content:center; gap:6px; font-size:12px; font-weight:900; }
  body.page-cripto .platform-card__description{ margin-top:15px; font-size:14px; }
  body.page-cripto .platform-card__facts{ grid-template-columns:1fr; gap:14px; padding:14px; }
  body.page-cripto .rating-block{ padding:0 0 13px; border-right:0; border-bottom:1px solid #dfe6ed; }
  body.page-cripto .platform-card__actions{ grid-template-columns:1fr; }
  body.page-cripto .platform-card .button{ min-height:48px; }
}
  


/* ===== WALLET ===== */

   body.page-wallet{
        --green: #159a67;
        --green-dark: #0d7650;
        --green-soft: #eaf7f1;
        --ink: #151918;
        --muted: #6c7470;
        --line: #e4e8e6;
        --soft: #f6f8f7;
        --white: #ffffff;
        --shadow: 0 10px 30px rgba(17, 24, 20, 0.07);
        --max: 1120px;
    }
    body.page-wallet *{
        box-sizing: border-box;
    }
    html{
        scroll-behavior: smooth;
    }
    body.page-wallet{
        margin: 0;
        background: var(--white);
        color: var(--ink);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.55;
    }
    body.page-wallet a{
        color: inherit;
    }
    body.page-wallet .container{
        width: min(var(--max), calc(100% - 28px));
        margin: 0 auto;
    }
    body.page-wallet .site-header{
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255,255,255,.97);
        border-bottom: 1px solid var(--line);
    }
    body.page-wallet .site-header__inner{
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    body.page-wallet .brand__logo-nine{
        display: block;
        width: 238px;
        max-width: 70vw;
        height: auto;
    }
    body.page-wallet .menu-toggle{
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 14px;
        background: #111;
        color: #fff;
        font-size: 23px;
        cursor: pointer;
    }
    body.page-wallet .site-nav{
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        padding: 10px 18px 18px;
        background: #111;
        color: #fff;
    }
    body.page-wallet .site-nav.is-open{
        display: block;
    }
    body.page-wallet .site-nav a{
        display: block;
        padding: 13px 4px;
        border-bottom: 1px solid #2b2b2b;
        text-decoration: none;
        font-weight: 700;
    }
    body.page-wallet .hero{
        padding: 52px 0 40px;
        background: linear-gradient(180deg,#f5faf8 0%,#fff 100%);
    }
    body.page-wallet .eyebrow{
        margin: 0 0 10px;
        color: var(--green-dark);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }
    body.page-wallet .hero h1{
        margin: 0;
        max-width: 780px;
        font-size: clamp(36px,7vw,64px);
        line-height: 1.02;
        letter-spacing: -.045em;
    }
    body.page-wallet .hero p{
        max-width: 760px;
        margin: 18px 0 0;
        color: var(--muted);
        font-size: 17px;
    }
    body.page-wallet .hero-meta{
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-top: 22px;
    }
    body.page-wallet .hero-meta span{
        padding: 8px 11px;
        border: 1px solid #cfe6dc;
        border-radius: 999px;
        background: #fff;
        color: #315246;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-wallet .page-tabs{
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: #fff;
    }
    body.page-wallet .page-tabs__inner{
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 11px 0;
    }
    body.page-wallet .page-tabs a{
        flex: 0 0 auto;
        padding: 9px 13px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-wallet .page-tabs a.active{
        background: #111;
        color: #fff;
    }
    body.page-wallet .ranking{
        padding: 42px 0 60px;
    }
    body.page-wallet .section-head{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }
    body.page-wallet .section-head h2{
        margin: 0;
        font-size: clamp(29px,5vw,44px);
        letter-spacing: -.035em;
    }
    body.page-wallet .section-head p{
        margin: 0;
        color: var(--muted);
        max-width: 760px;
    }
    body.page-wallet .platform-list{
        display: grid;
        gap: 16px;
    }
    body.page-wallet .platform-card{
        border: 1px solid var(--line);
        border-radius: 22px;
        background: #fff;
        padding: 18px;
        box-shadow: var(--shadow);
    }
    body.page-wallet .platform-card.is-extra{
        display: none;
    }
    body.page-wallet .platform-card.is-extra.is-visible{
        display: block;
    }
    body.page-wallet .platform-top{
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    body.page-wallet .rank{
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: #edf0ef;
        font-size: 16px;
        font-weight: 900;
    }
    body.page-wallet .platform-identity{
        min-width: 0;
        flex: 1;
    }
    body.page-wallet .platform-category{
        display: block;
        margin-bottom: 2px;
        color: #7b817e;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-wallet .platform-identity h3{
        margin: 0;
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: -.02em;
    }
    body.page-wallet .votes{
        display: flex;
        gap: 6px;
    }
    body.page-wallet .vote{
        min-width: 54px;
        height: 38px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        color: #515956;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-wallet .vote.active{
        border-color: var(--green);
        background: var(--green-soft);
        color: var(--green-dark);
    }
    body.page-wallet .badge{
        display: inline-block;
        margin-top: 14px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--green-soft);
        color: #1d6046;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-wallet .description{
        margin: 14px 0 16px;
        font-size: 15px;
    }
    body.page-wallet .facts{
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 14px;
        padding: 15px 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }
    body.page-wallet .fact-label{
        display: block;
        margin-bottom: 5px;
        color: #7a817e;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-wallet .rating{
        font-size: 20px;
        font-weight: 900;
    }
    body.page-wallet .rating span{
        color: var(--green);
    }
    body.page-wallet .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    body.page-wallet .channels span{
        padding: 5px 8px;
        border-radius: 8px;
        background: #f3f5f4;
        font-size: 11px;
        font-weight: 800;
    }
    body.page-wallet .promo-box{
        margin-top: 15px;
        padding: 12px;
        border: 1px dashed #91bea9;
        border-radius: 14px;
        background: #f4fbf8;
        text-align: center;
    }
    body.page-wallet .promo-label{
        display: block;
        text-align: center;
        color: #477565;
        font-size: 12px;
        font-weight: 900;
    }
    body.page-wallet .promo-code{
        position: relative;
        width: 100%;
        min-height: 38px;
        margin-top: 3px;
        border: 0;
        background: transparent;
        color: #111;
        font-size: 16px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-wallet .copy-icon{
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-style: normal;
        color: #5b6862;
    }
    body.page-wallet .actions{
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 14px;
    }
    body.page-wallet .button{
        display: block;
        padding: 13px 15px;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        font-size: 13px;
        font-weight: 900;
    }
    body.page-wallet .button-primary{
        background: var(--green);
        color: #fff;
        box-shadow: 0 7px 18px rgba(21,154,103,.2);
    }
    body.page-wallet .button-secondary{
        border: 1px solid var(--line);
        background: #fff;
    }
    body.page-wallet .more-wrap{
        text-align: center;
        margin-top: 24px;
    }
    body.page-wallet .more-button{
        min-height: 46px;
        padding: 0 20px;
        border: 1px solid #cfd6d2;
        border-radius: 13px;
        background: #fff;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-wallet .editorial{
        padding: 54px 0;
        background: var(--soft);
    }
    body.page-wallet .editorial-grid{
        display: grid;
        gap: 14px;
    }
    body.page-wallet .editorial-card{
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
    }
    body.page-wallet .editorial-card h3{
        margin: 0 0 7px;
        font-size: 19px;
    }
    body.page-wallet .editorial-card p{
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }
    body.page-wallet .site-footer{
        background: #0c0d0d;
        color: #d9dddb;
        padding: 44px 0 28px;
    }
    body.page-wallet .footer-logo-nine__image{
        display: block;
        width: 265px;
        max-width: 82vw;
        height: auto;
    }
    body.page-wallet .footer-note{
        max-width: 640px;
        margin: 16px 0 0;
        color: #9fa6a2;
        font-size: 12px;
    }
    body.page-wallet .footer-links{
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        margin-top: 22px;
    }
    body.page-wallet .footer-links a{
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
    }
    body.page-wallet .footer-bottom{
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid #282b2a;
        color: #858c88;
        font-size: 11px;
    }
    @media (min-width: 760px){
        body.page-wallet .menu-toggle{
            display: none;
        }
        body.page-wallet .site-nav{
            display: flex;
            position: static;
            padding: 0;
            gap: 18px;
            background: transparent;
            color: #202522;
        }
        body.page-wallet .site-nav a{
            padding: 8px 0;
            border: 0;
            font-size: 12px;
        }
        body.page-wallet .platform-list{
            grid-template-columns: repeat(2, minmax(0,1fr));
        }
        body.page-wallet .actions{
            grid-template-columns: 1fr 1fr;
        }
        body.page-wallet .editorial-grid{
            grid-template-columns: repeat(3,1fr);
        }
    }
    @media (max-width: 520px){
        body.page-wallet .brand__logo-nine{
            width: 205px;
        }
        body.page-wallet .platform-card{
            padding: 15px;
        }
        body.page-wallet .platform-identity h3{
            font-size: 21px;
        }
        body.page-wallet .votes{
            gap: 4px;
        }
        body.page-wallet .vote{
            min-width: 50px;
            padding: 0 5px;
            font-size: 12px;
        }
        body.page-wallet .facts{
            grid-template-columns: .78fr 1.22fr;
            gap: 10px;
        }
    }
    

    /* Header, FAQ e footer coordinati con la index ufficiale */
    body.page-wallet .utility-bar{
        background: #03111f;
        color: #d9e4ef;
        font-size: 12px;
        letter-spacing: .02em;
    }
    body.page-wallet .utility-bar .container{
        min-height: 34px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    body.page-wallet .utility-bar strong{
        color: #ffffff;
    }
    body.page-wallet .utility-bar__right{
        display: flex;
        align-items: center;
        gap: 18px;
        white-space: nowrap;
    }
    body.page-wallet .status-dot{
        width: 7px;
        height: 7px;
        border-radius: 50%;
        display: inline-block;
        background: #45d4aa;
        box-shadow: 0 0 0 4px rgba(69, 212, 170, .13);
        margin-right: 8px;
    }
    body.page-wallet .site-header{
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255,255,255,.94);
        border-bottom: 1px solid rgba(220,228,236,.8);
        backdrop-filter: blur(16px);
    }
    body.page-wallet .site-header__inner{
        min-height: 76px;
        display: flex;
        align-items: center;
        gap: 26px;
    }
    body.page-wallet .brand--logo-nine{
        display: inline-flex;
        align-items: center;
        flex: 0 1 310px;
        min-width: 0;
        gap: 0;
        line-height: 0;
        text-decoration: none;
    }
    body.page-wallet .site-header .brand__logo-nine{
        width: 310px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    body.page-wallet .main-nav{
        margin-left: auto;
        display: flex;
        align-items: stretch;
        gap: 6px;
    }
    body.page-wallet .main-nav a{
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 13px 12px;
        border-radius: 10px;
        color: #26384a;
        text-decoration: none;
        font-size: 14px;
        font-weight: 800;
    }
    body.page-wallet .main-nav a:hover, body.page-wallet .main-nav a.is-active{
        color: #087060;
        background: #eef8f4;
    }
    body.page-wallet .header-cta{
        margin-left: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 17px;
        border-radius: 12px;
        background: #071b2e;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 850;
        box-shadow: 0 9px 20px rgba(7,27,46,.18);
    }
    body.page-wallet .menu-toggle{
        display: none;
        width: 44px;
        height: 44px;
        border: 1px solid #dce4ec;
        border-radius: 12px;
        background: #ffffff;
        cursor: pointer;
        padding: 0;
    }
    body.page-wallet .menu-toggle span{
        display: block;
        width: 19px;
        height: 2px;
        margin: 4px auto;
        border-radius: 2px;
        background: #071b2e;
        transition: transform .2s ease, opacity .2s ease;
    }
    body.page-wallet .menu-toggle[aria-expanded="true"] span:nth-child(1){
        transform: translateY(6px) rotate(45deg);
    }
    body.page-wallet .menu-toggle[aria-expanded="true"] span:nth-child(2){
        opacity: 0;
    }
    body.page-wallet .menu-toggle[aria-expanded="true"] span:nth-child(3){
        transform: translateY(-6px) rotate(-45deg);
    }
    body.page-wallet .faq-section{
        padding: 88px 0;
        background: #ffffff;
    }
    body.page-wallet .faq-section__grid{
        display: grid;
        grid-template-columns: .68fr 1.32fr;
        gap: 74px;
        align-items: start;
    }
    body.page-wallet .faq-section .overline{
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #087060;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .16em;
        text-transform: uppercase;
    }
    body.page-wallet .faq-section .overline::before{
        content: "";
        width: 34px;
        height: 2px;
        background: #169d6c;
    }
    body.page-wallet .faq-section h2{
        margin: 14px 0 17px;
        font-size: clamp(34px, 4vw, 51px);
        line-height: 1.04;
        letter-spacing: -.052em;
    }
    body.page-wallet .faq-section__intro p{
        margin: 0;
        color: #687384;
        font-size: 16px;
        line-height: 1.7;
    }
    body.page-wallet .faq-list{
        border-top: 1px solid #dce4ec;
    }
    body.page-wallet .faq-list details{
        border-bottom: 1px solid #dce4ec;
    }
    body.page-wallet .faq-list summary{
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        list-style: none;
        cursor: pointer;
        font-size: 15px;
        font-weight: 850;
    }
    body.page-wallet .faq-list summary::-webkit-details-marker{
        display: none;
    }
    body.page-wallet .faq-list summary::after{
        content: "+";
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border-radius: 9px;
        color: #087060;
        background: #eaf7f1;
        font-size: 20px;
        transition: transform .2s ease;
    }
    body.page-wallet .faq-list details[open] summary::after{
        transform: rotate(45deg);
    }
    body.page-wallet .faq-list details p{
        margin: -4px 46px 22px 0;
        color: #687384;
        font-size: 13px;
        line-height: 1.7;
    }
    body.page-wallet .site-footer{
        color: #d0d8e1;
        background: #030a11;
        padding: 0;
    }
    body.page-wallet .site-footer__top{
        padding: 66px 0 52px;
        display: grid;
        grid-template-columns: 1.4fr repeat(3, .7fr);
        gap: 48px;
    }
    body.page-wallet .footer-logo-nine{
        display: block;
        width: min(100%, 385px);
        line-height: 0;
        text-decoration: none;
    }
    body.page-wallet .footer-logo-nine__image{
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    body.page-wallet .footer-brand p{
        max-width: 400px;
        margin: 22px 0 0;
        color: #95a3b1;
        font-size: 13px;
        line-height: 1.7;
    }
    body.page-wallet .footer-column h3{
        margin: 0 0 16px;
        color: #ffffff;
        font-size: 12px;
        letter-spacing: .12em;
        text-transform: uppercase;
    }
    body.page-wallet .footer-column a{
        display: block;
        width: fit-content;
        margin: 10px 0;
        color: #aab6c2;
        text-decoration: none;
        font-size: 12px;
    }
    body.page-wallet .site-footer__bottom{
        padding: 22px 0;
        border-top: 1px solid rgba(255,255,255,.09);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
        color: #788694;
        font-size: 12px;
        line-height: 1.6;
    }
    body.page-wallet .site-footer__bottom p{
        max-width: 850px;
        margin: 0;
    }
    body.page-wallet .back-to-top{
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 11px;
        color: #ffffff;
        background: rgba(255,255,255,.06);
        text-decoration: none;
    }
    @media (max-width: 860px){
        body.page-wallet .site-header__inner{
            min-height: 68px;
        }
        body.page-wallet .menu-toggle{
            display: block;
            margin-left: auto;
        }
        body.page-wallet .main-nav{
            position: fixed;
            top: 102px;
            left: 16px;
            right: 16px;
            z-index: 1200;
            margin: 0;
            padding: 12px;
            display: grid;
            gap: 5px;
            border: 1px solid #dce4ec;
            border-radius: 18px;
            background: #ffffff;
            box-shadow: 0 18px 48px rgba(8,27,46,.11);
            transform: translateY(-14px);
            opacity: 0;
            visibility: hidden;
            transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
        }
        body.page-wallet .main-nav.is-open{
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        body.page-wallet .main-nav a{
            min-height: 46px;
            padding: 0 13px;
        }
        body.page-wallet .header-cta{
            display: none;
        }
        body.page-wallet .faq-section__grid{
            grid-template-columns: 1fr;
            gap: 38px;
        }
        body.page-wallet .site-footer__top{
            grid-template-columns: 1.2fr 1fr 1fr;
        }
        body.page-wallet .footer-brand{
            grid-column: 1 / -1;
        }
    }
    @media (max-width: 640px){
        body.page-wallet .utility-bar .container{
            min-height: 30px;
        }
        body.page-wallet .utility-bar__right{
            display: none;
        }
        body.page-wallet .site-header .brand--logo-nine{
            flex: 1 1 auto;
            max-width: calc(100vw - 96px);
        }
        body.page-wallet .site-header .brand__logo-nine{
            width: 100%;
        }
        body.page-wallet .site-header__inner{
            gap: 14px;
        }
        body.page-wallet .main-nav{
            top: 88px;
            left: 12px;
            right: 12px;
        }
        body.page-wallet .faq-section{
            padding: 66px 0;
        }
        body.page-wallet .faq-section h2{
            font-size: 39px;
        }
        body.page-wallet .site-footer__top{
            grid-template-columns: 1fr 1fr;
            gap: 35px 22px;
        }
        body.page-wallet .footer-brand{
            grid-column: 1 / -1;
        }
        body.page-wallet .footer-logo-nine{
            width: min(100%, 360px);
        }
        body.page-wallet .site-footer__bottom{
            align-items: flex-start;
        }
    }
   /* Schede piattaforma coordinate alla index.html */
    body.page-wallet .platform-list{
        display: grid;
        gap: 24px;
    }

    body.page-wallet .platform-card{
        border: 1px solid #d8dee4;
        border-radius: 24px;
        background: #ffffff;
        padding: 24px;
        box-shadow: 0 8px 24px rgba(8, 27, 46, 0.045);
    }

    body.page-wallet .platform-top{
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    body.page-wallet .rank{
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        display: grid;
        place-items: center;
        border-radius: 15px;
        background: #eef0f2;
        color: #15191f;
        font-size: 20px;
        font-weight: 900;
    }

    body.page-wallet .platform-identity{
        min-width: 0;
        flex: 1;
    }

    body.page-wallet .platform-category{
        display: block;
        margin-bottom: 4px;
        color: #717a89;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    body.page-wallet .platform-identity h3{
        margin: 0;
        color: #101319;
        font-size: 28px;
        line-height: 1.05;
        letter-spacing: -.035em;
    }

    body.page-wallet .votes{
        display: flex;
        gap: 8px;
        flex: 0 0 auto;
    }

    body.page-wallet .vote{
        min-width: 72px;
        height: 42px;
        padding: 0 12px;
        border: 1px solid #d8dee4;
        border-radius: 999px;
        background: #ffffff;
        color: #515a68;
        font-size: 13px;
        font-weight: 900;
        cursor: pointer;
    }

    body.page-wallet .vote.active{
        border-color: #84cbb0;
        background: #eef9f4;
        color: #08704c;
    }

    body.page-wallet .badge{
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        padding: 7px 11px;
        border-radius: 9px;
        background: #e3f5ed;
        color: #147451;
        font-size: 12px;
        font-weight: 900;
    }

    body.page-wallet .description{
        margin: 22px 0 20px;
        color: #15191f;
        font-size: 16px;
        line-height: 1.65;
    }

    body.page-wallet .facts{
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 18px;
        border: 1px solid #dfe4e8;
        border-radius: 19px;
        background: #f8faf9;
    }

    body.page-wallet .facts > div:first-child{
        padding-bottom: 17px;
        border-bottom: 1px solid #dfe4e8;
    }

    body.page-wallet .facts > div:last-child{
        padding-top: 17px;
    }

    body.page-wallet .fact-label{
        display: block;
        margin-bottom: 8px;
        color: #727b89;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    body.page-wallet .rating{
        color: #11151b;
        font-size: 28px;
        font-weight: 900;
        letter-spacing: -.04em;
    }

    body.page-wallet .rating .rating-star{
        display: none;
    }

    body.page-wallet .rating small{
        color: #697282;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0;
    }

    body.page-wallet .rating-meter{
        height: 6px;
        margin-top: 12px;
        overflow: hidden;
        border-radius: 999px;
        background: #dfe5e2;
    }

    body.page-wallet .rating-meter span{
        display: block;
        height: 100%;
        border-radius: inherit;
        background: #18a26c;
    }

    body.page-wallet .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    body.page-wallet .channels span{
        padding: 7px 10px;
        border: 1px solid #d8dee4;
        border-radius: 9px;
        background: #ffffff;
        color: #333b46;
        font-size: 12px;
        font-weight: 900;
    }

    body.page-wallet .promo-box{
        margin-top: 18px;
        padding: 14px;
        border: 1px dashed #159a67;
        border-radius: 17px;
        background: #ffffff;
        text-align: center;
    }

    body.page-wallet .promo-label{
        display: block;
        text-align: center;
        color: #697282;
        font-size: 13px;
        font-weight: 900;
    }

    body.page-wallet .promo-code{
        position: relative;
        width: 100%;
        min-height: 46px;
        margin-top: 9px;
        border: 1px solid #d8dee4;
        border-radius: 11px;
        background: #ffffff;
        color: #252a31;
        font-size: 17px;
        font-weight: 900;
        cursor: pointer;
        text-align: center;
    }

    body.page-wallet .promo-code svg{
        position: absolute;
        top: 50%;
        right: 16px;
        width: 18px;
        height: 18px;
        transform: translateY(-50%);
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }

    body.page-wallet .actions{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    body.page-wallet .actions .button{
        display: flex;
        min-height: 54px;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border-radius: 14px;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        font-weight: 900;
    }

    body.page-wallet .actions .button-primary{
        border: 1px solid #18a26c;
        background: #18a26c;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(24, 162, 108, .16);
    }

    body.page-wallet .actions .button-secondary{
        border: 1px solid #cfd6dc;
        background: #ffffff;
        color: #20262e;
    }

    @media (min-width: 760px){
        body.page-wallet .facts{
            grid-template-columns: .82fr 1.18fr;
            gap: 22px;
        }

        body.page-wallet .facts > div:first-child{
            padding: 0 22px 0 0;
            border-right: 1px solid #dfe4e8;
            border-bottom: 0;
        }

        body.page-wallet .facts > div:last-child{
            padding: 0;
        }

        body.page-wallet .actions{
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 620px){
        body.page-wallet .platform-card{
            padding: 18px;
            border-radius: 20px;
        }

        body.page-wallet .platform-top{
            gap: 11px;
        }

        body.page-wallet .rank{
            flex-basis: 46px;
            width: 46px;
            height: 46px;
            border-radius: 13px;
            font-size: 18px;
        }

        body.page-wallet .platform-identity h3{
            font-size: 25px;
        }

        body.page-wallet .platform-category{
            font-size: 12px;
        }

        body.page-wallet .votes{
            gap: 6px;
        }

        body.page-wallet .vote{
            min-width: 63px;
            height: 39px;
            padding: 0 8px;
            font-size: 12px;
        }

        body.page-wallet .description{
            font-size: 15px;
        }

        body.page-wallet .facts{
            padding: 15px;
        }
    }
  
    /* Schede piattaforma: allineate al modello ufficiale della index */
    body.page-wallet .platform-list{
        display: grid;
        gap: 22px;
    }
    body.page-wallet .platform-card{
        position: relative;
        min-width: 0;
        padding: 24px;
        border: 1px solid #d8e1ea;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(8,27,46,.055);
        overflow: hidden;
    }
    body.page-wallet .platform-top{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }
    body.page-wallet .platform-identity{
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 14px;
        flex: 1;
    }
    body.page-wallet .rank{
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: #111820;
        background: #edf0f2;
        font-size: 20px;
        font-weight: 950;
        box-shadow: none;
    }
    body.page-wallet .platform-category{
        display: block;
        margin-bottom: 3px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        letter-spacing: .11em;
        text-transform: uppercase;
    }
    body.page-wallet .platform-identity h3{
        margin: 0;
        font-size: 27px;
        line-height: 1.05;
        letter-spacing: -.04em;
    }
    body.page-wallet .votes{
        display: flex;
        gap: 8px;
        flex: 0 0 auto;
    }
    body.page-wallet .vote{
        min-width: 68px;
        height: 44px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid #d8e1ea;
        border-radius: 15px;
        background: #ffffff;
        color: #343b48;
        font-size: 12px;
        font-weight: 850;
    }
    body.page-wallet .badge{
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        padding: 9px 12px;
        border-radius: 11px;
        background: #e4f5ee;
        color: #16845d;
        font-size: 12px;
        font-weight: 850;
    }
    body.page-wallet .description{
        margin: 21px 0 18px;
        font-size: 16px;
        line-height: 1.55;
    }
    body.page-wallet .facts{
        padding: 16px;
        display: grid;
        grid-template-columns: minmax(150px,.72fr) minmax(0,1.28fr);
        gap: 18px;
        border: 1px solid #e4eaf0;
        border-radius: 16px;
        background: #f8fafc;
    }
    body.page-wallet .fact-label{
        display: block;
        margin-bottom: 7px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    body.page-wallet .rating{
        font-size: 25px;
        line-height: 1;
        font-weight: 950;
    }
    body.page-wallet .rating-star{
        display: none;
    }
    body.page-wallet .rating small{
        color: #707887;
        font-size: 12px;
        font-weight: 750;
    }
    body.page-wallet .rating-meter{
        height: 5px;
        margin-top: 12px;
        border-radius: 999px;
        background: #e1e7e5;
        overflow: hidden;
    }
    body.page-wallet .rating-meter span{
        display: block;
        height: 100%;
        border-radius: inherit;
        background: #1ba36f;
    }
    body.page-wallet .channels{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    body.page-wallet .channels span{
        padding: 7px 10px;
        border: 1px solid #d8e1ea;
        border-radius: 10px;
        background: #ffffff;
        color: #343b48;
        font-size: 11px;
        font-weight: 800;
    }
    body.page-wallet .promo-box{
        margin-top: 16px;
        padding: 13px 14px;
        border: 1.5px dashed #1a9b6d;
        border-radius: 15px;
        background: #ffffff;
        text-align: center;
    }
    body.page-wallet .promo-label{
        display: block;
        margin-bottom: 9px;
        color: #707887;
        font-size: 12px;
        font-weight: 850;
        text-align: center;
    }
    body.page-wallet .promo-code{
        position: relative;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #d8e1dd;
        border-radius: 11px;
        background: #ffffff;
        color: #252b34;
        font-size: 14px;
        letter-spacing: .04em;
    }
    body.page-wallet .promo-code svg{
        position: absolute;
        right: 13px;
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }
    body.page-wallet .actions{
        display: grid;
        gap: 10px;
        margin-top: 16px;
    }
    body.page-wallet .button{
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 900;
        text-decoration: none;
    }
    body.page-wallet .button-primary{
        background: #1ba36f;
        color: #ffffff;
        box-shadow: 0 10px 24px rgba(27,163,111,.18);
    }
    body.page-wallet .button-secondary{
        border: 1px solid #cfd7df;
        background: #ffffff;
        color: #202630;
    }
    @media (max-width: 640px){
        body.page-wallet .platform-card{
            padding: 18px;
        }
        body.page-wallet .platform-top{
            gap: 10px;
        }
        body.page-wallet .platform-identity{
            gap: 10px;
        }
        body.page-wallet .rank{
            width: 44px;
            height: 44px;
            flex-basis: 44px;
            font-size: 18px;
        }
        body.page-wallet .platform-identity h3{
            font-size: 24px;
        }
        body.page-wallet .votes{
            gap: 6px;
        }
        body.page-wallet .vote{
            min-width: 54px;
            height: 42px;
            padding: 0 8px;
            font-size: 12px;
        }
        body.page-wallet .facts{
            grid-template-columns: 1fr;
            gap: 15px;
        }
        body.page-wallet .facts > div:first-child{
            padding-bottom: 15px;
            border-bottom: 1px solid #dfe6ed;
        }
    }
  

    /* Hero categoria nello stile della home ApriOnline */
    body.page-wallet .category-hero{
        position: relative;
        overflow: hidden;
        padding: 70px 0 58px;
        border-bottom: 1px solid var(--line);
        background:
            radial-gradient(circle at 92% 84%, rgba(43, 191, 145, .13), transparent 24%),
            linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
    }
    body.page-wallet .category-hero::before{
        content: "";
        position: absolute;
        inset: 0;
        opacity: .32;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(20, 154, 103, .055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(20, 154, 103, .055) 1px, transparent 1px);
        background-size: 42px 42px;
    }
    body.page-wallet .category-hero__inner{
        position: relative;
        max-width: 850px;
    }
    body.page-wallet .category-hero__eyebrow{
        display: inline-flex;
        align-items: center;
        gap: 16px;
        margin: 0 0 27px;
        color: var(--green-dark);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .17em;
        line-height: 1.45;
        text-transform: uppercase;
    }
    body.page-wallet .category-hero__eyebrow::before{
        content: "";
        width: 44px;
        height: 3px;
        flex: 0 0 auto;
        border-radius: 99px;
        background: var(--green);
    }
    body.page-wallet .category-hero h1{
        max-width: 820px;
        margin: 0;
        color: var(--ink);
        font-size: clamp(48px, 7.2vw, 82px);
        font-weight: 900;
        line-height: .98;
        letter-spacing: -.06em;
    }
    body.page-wallet .category-hero h1 span{
        display: block;
        color: var(--green);
    }
    body.page-wallet .category-hero__lead{
        max-width: 780px;
        margin: 28px 0 0;
        color: #737b88;
        font-size: clamp(18px, 2vw, 22px);
        line-height: 1.65;
    }
    body.page-wallet .category-search{
        max-width: 760px;
        margin-top: 34px;
        padding: 10px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 9px;
        border: 1px solid #d9dfe3;
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(18, 34, 29, .06);
    }
    body.page-wallet .category-search__field{
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0 15px;
    }
    body.page-wallet .category-search__field svg{
        width: 25px;
        height: 25px;
        flex: 0 0 auto;
        fill: none;
        stroke: #74808f;
        stroke-width: 2;
        stroke-linecap: round;
    }
    body.page-wallet .category-search input{
        width: 100%;
        height: 52px;
        border: 0;
        outline: 0;
        color: var(--ink);
        background: transparent;
        font-family: inherit;
        font-size: 17px;
    }
    body.page-wallet .category-search input::placeholder{
        color: #8a929f;
    }
    body.page-wallet .category-search button{
        min-width: 190px;
        min-height: 52px;
        border: 0;
        border-radius: 14px;
        background: var(--green);
        color: #ffffff;
        font-family: inherit;
        font-size: 16px;
        font-weight: 900;
        cursor: pointer;
    }
    body.page-wallet .category-search button:hover{
        background: var(--green-dark);
    }
    body.page-wallet .category-hero__quick-links{
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    body.page-wallet .category-hero__quick-links a{
        display: inline-flex;
        align-items: center;
        min-height: 41px;
        padding: 8px 14px;
        border: 1px solid #d8dee1;
        border-radius: 999px;
        background: rgba(255,255,255,.9);
        color: #262c31;
        text-decoration: none;
        font-size: 13px;
        font-weight: 850;
    }
    body.page-wallet .category-search-note{
        display: none;
        margin: 13px 0 0;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
    }
    body.page-wallet .category-search-note.is-visible{
        display: block;
    }

    @media (max-width: 640px){
        body.page-wallet .category-hero{
            padding: 54px 0 48px;
        }
        body.page-wallet .category-hero__eyebrow{
            gap: 12px;
            margin-bottom: 23px;
            font-size: 12px;
        }
        body.page-wallet .category-hero__eyebrow::before{
            width: 36px;
        }
        body.page-wallet .category-hero h1{
            font-size: clamp(47px, 13.2vw, 64px);
        }
        body.page-wallet .category-hero__lead{
            margin-top: 25px;
            font-size: 18px;
            line-height: 1.65;
        }
        body.page-wallet .category-search{
            margin-top: 30px;
            grid-template-columns: 1fr;
            padding: 8px;
            border-radius: 18px;
        }
        body.page-wallet .category-search__field{
            min-height: 54px;
            padding: 0 14px;
        }
        body.page-wallet .category-search input{
            font-size: 16px;
        }
        body.page-wallet .category-search button{
            width: 100%;
            min-height: 52px;
            font-size: 16px;
        }
        body.page-wallet .category-hero__quick-links{
            gap: 9px;
        }
        body.page-wallet .category-hero__quick-links a{
            min-height: 39px;
            padding: 7px 12px;
            font-size: 12px;
        }
    }


body.page-wallet .breadcrumb{
        min-height:46px;
        display:flex;
        align-items:center;
        gap:9px;
        color:#737c89;
        font-size:12px;
        font-weight:750;
    }
body.page-wallet .breadcrumb__current{
        color:#252b33;
        font-weight:850;
    }


   /* BOX PIATTAFORMA: copia fedele della index.html ufficiale */
body.page-wallet .ranking-section, body.page-wallet .ranking, body.page-wallet main{ --section-accent:#169d6c; --section-accent-dark:#087060; --section-soft:#e7f6ef; }
body.page-wallet .platform-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
body.page-wallet .platform-card{ position:relative; min-width:0; padding:24px; border:1px solid #d8e1ea; border-radius:22px; background:#fff; box-shadow:0 10px 26px rgba(8,27,46,.055); overflow:hidden; font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; }
body.page-wallet .platform-card::before{ content:""; position:absolute; inset:0 0 auto; height:4px; background:var(--green,#169d6c); opacity:0; }
body.page-wallet .platform-card__top{ display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
body.page-wallet .platform-card__identity{ min-width:0; display:flex; align-items:center; gap:14px; }
body.page-wallet .platform-card__rank{ width:48px; height:48px; display:grid; place-items:center; flex:0 0 auto; border-radius:14px; color:#171b21; background:#eef0f2; font-size:20px; font-weight:950; box-shadow:none; }
body.page-wallet .platform-card__category{ display:block; margin-bottom:3px; color:#69727f; font-size:12px; font-weight:850; letter-spacing:.11em; text-transform:uppercase; }
body.page-wallet .platform-card h3{ margin:0; font-size:clamp(20px,2.1vw,27px); line-height:1.05; letter-spacing:-.04em; overflow-wrap:anywhere; }
body.page-wallet .reaction-group{ display:flex; gap:6px; flex:0 0 auto; }
body.page-wallet .reaction-button{ min-height:34px; padding:0 9px; display:inline-flex; align-items:center; justify-content:center; gap:5px; border:1px solid #dde2e6; border-radius:999px; color:#526274; background:#fff; font-size:12px; font-weight:850; cursor:pointer; }
body.page-wallet .platform-card__badge-row{ margin-top:17px; }
body.page-wallet .platform-card__badge{ display:inline-flex; align-items:center; min-height:28px; padding:5px 10px; border-radius:8px; color:#087060; background:#e4f5ee; font-size:12px; font-weight:850; letter-spacing:.015em; }
body.page-wallet .platform-card__description{ min-height:78px; margin:17px 0 19px; color:#171b21; font-size:15px; line-height:1.65; }
body.page-wallet .platform-card__facts{ padding:16px; display:grid; grid-template-columns:minmax(150px,.72fr) minmax(0,1.28fr); gap:18px; border:1px solid #e1e5e8; border-radius:16px; background:#f7f8f8; }
body.page-wallet .fact-label{ display:block; margin-bottom:7px; color:#69727f; font-size:12px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
body.page-wallet .rating-block{ padding-right:17px; border-right:1px solid #dce1e5; }
body.page-wallet .rating-block__score{ display:flex; align-items:baseline; gap:4px; }
body.page-wallet .rating-block__score strong{ color:#171b21; font-size:25px; line-height:1; letter-spacing:-.045em; }
body.page-wallet .rating-block__score span{ color:#69727f; font-size:12px; font-weight:750; }
body.page-wallet .rating-meter{ height:5px; margin-top:9px; overflow:hidden; border-radius:999px; background:#dfe4e2; }
body.page-wallet .rating-meter span{ display:block; height:100%; border-radius:inherit; background:#169d6c; }
body.page-wallet .channel-list{ display:flex; flex-wrap:wrap; gap:6px; }
body.page-wallet .channel-list span{ padding:4px 7px; border:1px solid #d7dde2; border-radius:7px; color:#343b44; background:#fff; font-size:11px; font-weight:800; }
body.page-wallet .promo-box{ margin-top:15px; min-height:52px; padding:10px; display:flex; align-items:stretch; flex-direction:column; gap:7px; border:1px dashed #169d6c; border-radius:13px; background:#fbfdfc; }
body.page-wallet .promo-box__label{ display:flex; align-items:center; justify-content:center; gap:7px; width:100%; text-align:center; color:#69727f; font-size:12px; font-weight:850; }
body.page-wallet .promo-box__code{ position:relative; min-height:34px; padding:0 10px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border:1px solid #d9e2de; border-radius:9px; color:#252b33; background:#fff; cursor:pointer; text-align:center; }
body.page-wallet .promo-box__code strong{ font-size:12px; letter-spacing:.035em; }
body.page-wallet .promo-box__code svg{ width:15px; height:15px; position:absolute; right:16px; fill:none; stroke:currentColor; stroke-width:1.8; }
body.page-wallet .platform-card__actions{ margin-top:17px; display:grid; grid-template-columns:1fr 1fr; gap:9px; }
body.page-wallet .platform-card .button{ min-height:46px; padding:0 14px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:12px; text-decoration:none; text-align:center; font-size:12px; font-weight:900; }
body.page-wallet .platform-card .button--primary{ color:#fff; background:#169d6c; box-shadow:0 9px 20px rgba(22,157,108,.18); }
body.page-wallet .platform-card .button--secondary{ color:#252b33; border:1px solid #cfd5da; background:#fff; }
@media (max-width:860px){ body.page-wallet .platform-grid{ grid-template-columns:1fr; } }
@media (max-width:640px){
  body.page-wallet .platform-card{ padding:18px; border-radius:18px; }
  body.page-wallet .platform-card__top{ gap:12px; }
  body.page-wallet .platform-card__rank{ width:43px; height:43px; border-radius:12px; font-size:18px; }
  body.page-wallet .platform-card h3{ font-size:23px; }
  body.page-wallet .reaction-button{ min-width:64px; width:auto; padding:0; justify-content:center; gap:6px; font-size:12px; font-weight:900; }
  body.page-wallet .platform-card__description{ margin-top:15px; font-size:14px; }
  body.page-wallet .platform-card__facts{ grid-template-columns:1fr; gap:14px; padding:14px; }
  body.page-wallet .rating-block{ padding:0 0 13px; border-right:0; border-bottom:1px solid #dfe6ed; }
  body.page-wallet .platform-card__actions{ grid-template-columns:1fr; }
  body.page-wallet .platform-card .button{ min-height:48px; }
}
  

/* Shared platform, subpage, static, redirect and error pages */
body.page-platform,
body.page-subpage,
body.page-static,
body.page-go,
body.page-error {
    --green: #159a67;
    --green-dark: #087060;
    --green-soft: #eaf7f1;
    --ink: #151918;
    --navy: #071b2e;
    --muted: #687384;
    --line: #dce4ec;
    --soft: #f5f8f7;
    --white: #ffffff;
    --shadow: 0 16px 44px rgba(8, 27, 46, .08);
    --max: 1120px;
    margin: 0;
    background: #ffffff;
    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.65;
    -webkit-font-smoothing: antialiased;
}
body.page-platform *,
body.page-subpage *,
body.page-static *,
body.page-go *,
body.page-error * {
    box-sizing: border-box;
}
body.page-platform a,
body.page-subpage a,
body.page-static a,
body.page-go a,
body.page-error a {
    color: inherit;
}
body.page-platform img,
body.page-subpage img,
body.page-static img,
body.page-go img,
body.page-error img,
body.page-platform svg,
body.page-subpage svg {
    display: block;
    max-width: 100%;
    height: auto;
}
body.page-platform button,
body.page-subpage button,
body.page-static button,
body.page-go button,
body.page-error button {
    font: inherit;
}
body.page-platform .container,
body.page-subpage .container,
body.page-static .container,
body.page-go .container,
body.page-error .container {
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
}
body.page-platform .skip-link,
body.page-subpage .skip-link,
body.page-static .skip-link,
body.page-go .skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    transform: translateY(-150%);
    padding: 10px 14px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--navy);
    font-weight: 900;
    text-decoration: none;
    box-shadow: var(--shadow);
}
body.page-platform .skip-link:focus,
body.page-subpage .skip-link:focus,
body.page-static .skip-link:focus,
body.page-go .skip-link:focus {
    transform: translateY(0);
}
body.page-platform .utility-bar,
body.page-subpage .utility-bar,
body.page-static .utility-bar,
body.page-go .utility-bar {
    background: #03111f;
    color: #d9e4ef;
    font-size: 12px;
    letter-spacing: .02em;
}
body.page-platform .utility-bar .container,
body.page-subpage .utility-bar .container,
body.page-static .utility-bar .container,
body.page-go .utility-bar .container {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
body.page-platform .utility-bar strong,
body.page-subpage .utility-bar strong,
body.page-static .utility-bar strong,
body.page-go .utility-bar strong {
    color: #ffffff;
}
body.page-platform .utility-bar__right,
body.page-subpage .utility-bar__right,
body.page-static .utility-bar__right,
body.page-go .utility-bar__right {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}
body.page-platform .status-dot,
body.page-subpage .status-dot,
body.page-static .status-dot,
body.page-go .status-dot {
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 50%;
    background: #45d4aa;
    box-shadow: 0 0 0 4px rgba(69, 212, 170, .13);
}
body.page-platform .site-header,
body.page-subpage .site-header,
body.page-static .site-header,
body.page-go .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(220, 228, 236, .9);
    backdrop-filter: blur(16px);
}
body.page-platform .site-header__inner,
body.page-subpage .site-header__inner,
body.page-static .site-header__inner,
body.page-go .site-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 26px;
}
body.page-platform .brand--logo-nine,
body.page-subpage .brand--logo-nine,
body.page-static .brand--logo-nine,
body.page-go .brand--logo-nine {
    display: inline-flex;
    align-items: center;
    flex: 0 1 310px;
    min-width: 0;
    line-height: 0;
    text-decoration: none;
}
body.page-platform .brand__logo-nine,
body.page-subpage .brand__logo-nine,
body.page-static .brand__logo-nine,
body.page-go .brand__logo-nine {
    width: 310px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
body.page-platform .main-nav,
body.page-subpage .main-nav,
body.page-static .main-nav,
body.page-go .main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}
body.page-platform .main-nav a,
body.page-subpage .main-nav a,
body.page-static .main-nav a,
body.page-go .main-nav a {
    padding: 12px 11px;
    border-radius: 10px;
    color: #26384a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
}
body.page-platform .main-nav a:hover,
body.page-platform .main-nav a.is-active,
body.page-subpage .main-nav a:hover,
body.page-subpage .main-nav a.is-active,
body.page-static .main-nav a:hover,
body.page-go .main-nav a:hover {
    color: var(--green-dark);
    background: #eef8f4;
}
body.page-platform .menu-toggle,
body.page-subpage .menu-toggle,
body.page-static .menu-toggle,
body.page-go .menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
}
body.page-platform .menu-toggle span,
body.page-subpage .menu-toggle span,
body.page-static .menu-toggle span,
body.page-go .menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 4px auto;
    border-radius: 3px;
    background: var(--navy);
}
body.page-platform .breadcrumb,
body.page-subpage .breadcrumb,
body.page-static .breadcrumb {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #737c89;
    font-size: 12px;
    font-weight: 750;
}
body.page-platform .breadcrumb a,
body.page-subpage .breadcrumb a,
body.page-static .breadcrumb a {
    color: var(--green-dark);
    text-decoration: none;
}
body.page-platform .breadcrumb__current,
body.page-subpage .breadcrumb__current,
body.page-static .breadcrumb__current {
    color: #252b33;
    font-weight: 850;
}
body.page-platform .platform-tabs,
body.page-subpage .platform-tabs {
    position: sticky;
    top: 76px;
    z-index: 900;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(12px);
}
body.page-platform .platform-tabs__inner,
body.page-subpage .platform-tabs__inner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}
body.page-platform .platform-tabs__inner::-webkit-scrollbar,
body.page-subpage .platform-tabs__inner::-webkit-scrollbar {
    display: none;
}
body.page-platform .platform-tabs a,
body.page-subpage .platform-tabs a {
    flex: 0 0 auto;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid #d5dde5;
    border-radius: 999px;
    background: #ffffff;
    color: #3e4857;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
}
body.page-platform .platform-tabs a.active,
body.page-subpage .platform-tabs a.active {
    border-color: #10151d;
    background: #10151d;
    color: #ffffff;
}
body.page-platform .overline,
body.page-subpage .overline,
body.page-static .overline {
    display: block;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}
body.page-platform .platform-hero,
body.page-subpage .subpage-hero {
    padding: 48px 0;
    background: linear-gradient(180deg, #f4faf7 0%, #ffffff 100%);
}
body.page-platform .platform-hero__grid,
body.page-subpage .subpage-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: 42px;
}
body.page-platform .platform-hero h1,
body.page-subpage .subpage-hero h1,
body.page-static .static-hero h1 {
    margin: 14px 0 0;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -.055em;
}
body.page-platform .platform-hero__copy > p,
body.page-subpage .subpage-hero__copy > p,
body.page-static .static-hero p {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
}
body.page-platform .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}
body.page-platform .hero-badges span {
    padding: 8px 11px;
    border: 1px solid #cfe6dc;
    border-radius: 999px;
    background: #ffffff;
    color: #315246;
    font-size: 12px;
    font-weight: 850;
}
body.page-platform .hero-actions,
body.page-subpage .hero-actions,
body.page-go .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px;
}
body.page-platform .button,
body.page-subpage .button,
body.page-static .button,
body.page-go .button,
body.page-error .button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
}
body.page-platform .button--primary,
body.page-subpage .button--primary,
body.page-static .button--primary,
body.page-go .button--primary,
body.page-error .button--primary {
    border: 1px solid var(--green);
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(21, 154, 103, .22);
}
body.page-platform .button--secondary,
body.page-subpage .button--secondary,
body.page-static .button--secondary,
body.page-go .button--secondary {
    border: 1px solid var(--line);
    background: #ffffff;
    color: #20262d;
}
body.page-platform .button--wide,
body.page-subpage .button--wide {
    width: 100%;
}
body.page-platform .platform-hero__visual,
body.page-subpage .subpage-hero__visual {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}
body.page-platform .platform-hero__image,
body.page-subpage .subpage-hero__visual > img:first-child {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
body.page-platform .platform-wordmark,
body.page-subpage .platform-wordmark {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: min(1px, calc(100% - 48px));
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(8, 27, 46, .16);
}
body.page-platform .rating-panel {
    position: absolute;
    right: 24px;
    top: 24px;
    min-width: 185px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 26px rgba(8, 27, 46, .12);
    backdrop-filter: blur(10px);
}
body.page-platform .rating-panel > span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
body.page-platform .rating-panel > strong {
    display: block;
    margin-top: 4px;
    font-size: 35px;
    line-height: 1;
}
body.page-platform .rating-panel small {
    color: var(--muted);
    font-size: 15px;
}
body.page-platform .reaction-group {
    display: flex;
    gap: 8px;
    margin-top: 13px;
}
body.page-platform .reaction-group button {
    min-width: 68px;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    font-weight: 900;
    cursor: pointer;
}
body.page-platform .reaction-group button.active {
    border-color: var(--green);
    background: var(--green-soft);
    color: var(--green-dark);
}
body.page-platform .quick-facts {
    padding: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}
body.page-platform .quick-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
body.page-platform .quick-facts article,
body.page-subpage .device-support article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfcfc;
}
body.page-platform .quick-facts article span,
body.page-subpage .device-support article span:not(.device-icon) {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
body.page-platform .quick-facts article strong,
body.page-subpage .device-support article strong {
    display: block;
    margin-top: 7px;
    font-size: 18px;
    line-height: 1.3;
}
body.page-platform .content-section,
body.page-subpage .content-section,
body.page-static .static-main {
    padding: 56px 0;
}
body.page-platform .content-section--soft,
body.page-subpage .content-section--soft {
    background: var(--soft);
}
body.page-platform .content-card,
body.page-subpage .content-card,
body.page-static .content-card,
body.page-go .content-card,
body.page-error .content-card {
    padding: clamp(26px, 5vw, 48px);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow);
}
body.page-platform .content-card h2,
body.page-subpage .content-card h2,
body.page-static .content-card h2,
body.page-platform .content-section > .container > h2,
body.page-subpage .content-section > .container > h2,
body.page-platform .faq-section h2,
body.page-subpage .faq-section h2,
body.page-platform .promo-section h2,
body.page-subpage .promo-section h2 {
    margin: 12px 0 0;
    font-size: clamp(30px, 4.5vw, 52px);
    line-height: 1.08;
    letter-spacing: -.045em;
}
body.page-platform .content-card p,
body.page-subpage .content-card p,
body.page-static .content-card p,
body.page-platform .promo-section > p,
body.page-subpage .promo-section > p {
    color: var(--muted);
    font-size: 17px;
}
body.page-platform .section-kicker,
body.page-subpage .section-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}
body.page-platform .section-kicker > span,
body.page-subpage .section-kicker > span {
    width: 68px;
    height: 3px;
    border-radius: 3px;
    background: var(--green);
}
body.page-platform .feature-grid,
body.page-subpage .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}
body.page-platform .feature-card,
body.page-subpage .feature-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(8, 27, 46, .05);
}
body.page-platform .feature-card__head,
body.page-subpage .feature-card__head {
    display: flex;
    align-items: center;
    gap: 15px;
}
body.page-platform .feature-icon,
body.page-subpage .feature-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--green-soft);
    font-size: 27px;
}
body.page-platform .feature-card h3,
body.page-subpage .feature-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.025em;
}
body.page-platform .feature-card p,
body.page-subpage .feature-card p {
    margin: 15px 0 0 73px;
    color: var(--muted);
    font-size: 15px;
}
body.page-platform .split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
body.page-platform .check-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}
body.page-platform .check-list li {
    position: relative;
    margin: 14px 0;
    padding-left: 32px;
    color: var(--muted);
}
body.page-platform .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 900;
}
body.page-platform .promo-section,
body.page-subpage .promo-section {
    max-width: 1195px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 46px);
    border: 1px solid #cfe6dc;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}
body.page-platform .promo-box--large,
body.page-subpage .promo-box--large {
    margin-top: 30px;
    padding: 22px;
    border: 2px dashed #159a67;
    border-radius: 22px;
    background: #ffffff;
    text-align: center;
}
body.page-platform .promo-box__label,
body.page-subpage .promo-box__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 900;
}
body.page-platform .promo-box__code,
body.page-subpage .promo-box__code {
    position: relative;
    width: 100%;
    min-height: 68px;
    margin-top: 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    color: #20252b;
    font-size: 24px;
    cursor: pointer;
}
body.page-platform .promo-box__code .copy-symbol,
body.page-subpage .promo-box__code .copy-symbol {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-style: normal;
}
body.page-platform .promo-box--large .button,
body.page-subpage .promo-box--large .button {
    margin-top: 18px;
}
body.page-platform .faq-section,
body.page-subpage .faq-section {
    padding: 70px 0;
    background: #ffffff;
}
body.page-platform .section-lead,
body.page-subpage .section-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
}
body.page-platform .faq-list,
body.page-subpage .faq-list {
    margin-top: 28px;
    border-top: 1px solid var(--line);
}
body.page-platform .faq-list details,
body.page-subpage .faq-list details {
    border-bottom: 1px solid var(--line);
}
body.page-platform .faq-list summary,
body.page-subpage .faq-list summary {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    font-size: 20px;
    font-weight: 900;
}
body.page-platform .faq-list summary::-webkit-details-marker,
body.page-subpage .faq-list summary::-webkit-details-marker {
    display: none;
}
body.page-platform .faq-symbol,
body.page-subpage .faq-symbol {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 28px;
}
body.page-platform .faq-answer,
body.page-subpage .faq-answer {
    padding: 0 70px 25px 0;
    color: var(--muted);
}
body.page-platform .sources-section,
body.page-subpage .sources-section {
    padding: 60px 0;
    background: var(--soft);
}
body.page-platform .review-date,
body.page-subpage .review-date {
    font-size: 13px !important;
    font-weight: 800;
}
body.page-subpage .device-support {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}
body.page-subpage .device-support__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
body.page-subpage .device-support article {
    display: flex;
    align-items: center;
    gap: 16px;
}
body.page-subpage .device-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--green-soft);
    color: var(--green-dark);
}
body.page-subpage .device-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
body.page-subpage .number-steps {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}
body.page-subpage .number-step {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(8, 27, 46, .05);
}
body.page-subpage .number-step__head {
    display: flex;
    align-items: center;
    gap: 20px;
}
body.page-subpage .number-step__head > span {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--navy);
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}
body.page-subpage .number-step h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}
body.page-subpage .number-step p {
    margin: 15px 0 0 84px;
    color: var(--muted);
    font-size: 16px;
}
body.page-subpage .phone-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}
body.page-subpage .phone-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
}
body.page-subpage .phone-grid article > span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
body.page-subpage .phone-grid article > strong {
    display: block;
    margin-top: 9px;
    font-size: 23px;
}
body.page-subpage .phone-grid article p {
    margin: 12px 0 0;
    color: var(--muted);
}
body.page-static .static-hero {
    padding: 62px 0 44px;
    background: linear-gradient(180deg, #f4faf7, #ffffff);
}
body.page-static .static-grid {
    display: grid;
    gap: 20px;
    padding-bottom: 70px;
}
body.page-go .go-page,
body.page-error .go-page {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 70px 0;
    background: var(--soft);
}
body.page-go .go-page .content-card,
body.page-error .go-page .content-card {
    max-width: 720px;
    text-align: center;
}
body.page-go .go-logo {
    width: min(560px, 100%);
    margin: 0 auto 22px;
}
body.page-platform .site-footer,
body.page-subpage .site-footer,
body.page-static .site-footer,
body.page-go .site-footer {
    padding: 58px 0 30px;
    background: #050b12;
    color: #d7dde4;
}
body.page-platform .footer-logo-nine__image,
body.page-subpage .footer-logo-nine__image,
body.page-static .footer-logo-nine__image,
body.page-go .footer-logo-nine__image {
    width: 360px;
    max-width: 90vw;
}
body.page-platform .footer-brand-wrap p,
body.page-subpage .footer-brand-wrap p,
body.page-static .footer-brand-wrap p,
body.page-go .footer-brand-wrap p {
    max-width: 740px;
    margin: 20px 0 0;
    color: #9da8b6;
}
body.page-platform .footer-grid,
body.page-subpage .footer-grid,
body.page-static .footer-grid,
body.page-go .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    margin-top: 42px;
}
body.page-platform .footer-grid h2,
body.page-subpage .footer-grid h2,
body.page-static .footer-grid h2,
body.page-go .footer-grid h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
}
body.page-platform .footer-grid a,
body.page-subpage .footer-grid a,
body.page-static .footer-grid a,
body.page-go .footer-grid a {
    display: block;
    margin: 10px 0;
    color: #aeb8c5;
    text-decoration: none;
}
body.page-platform .footer-bottom,
body.page-subpage .footer-bottom,
body.page-static .footer-bottom,
body.page-go .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #1b2631;
    color: #7f8b98;
    font-size: 12px;
}
body.category-broker {
    --green: #159a67;
    --green-dark: #0d7650;
    --green-soft: #eaf7f1;
}
body.category-cripto {
    --green: #159a67;
    --green-dark: #0d7650;
    --green-soft: #eaf7f1;
}
body.category-wallet {
    --green: #159a67;
    --green-dark: #0d7650;
    --green-soft: #eaf7f1;
}
@media (max-width: 920px) {
    body.page-platform .main-nav,
    body.page-subpage .main-nav,
    body.page-static .main-nav,
    body.page-go .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        display: none;
        padding: 14px 20px 20px;
        background: #ffffff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    body.page-platform .main-nav.is-open,
    body.page-subpage .main-nav.is-open,
    body.page-static .main-nav.is-open,
    body.page-go .main-nav.is-open {
        display: block;
    }
    body.page-platform .main-nav a,
    body.page-subpage .main-nav a,
    body.page-static .main-nav a,
    body.page-go .main-nav a {
        display: block;
        padding: 13px 8px;
        border-bottom: 1px solid var(--line);
    }
    body.page-platform .menu-toggle,
    body.page-subpage .menu-toggle,
    body.page-static .menu-toggle,
    body.page-go .menu-toggle {
        display: block;
        margin-left: auto;
    }
    body.page-platform .platform-hero__grid,
    body.page-subpage .subpage-hero__grid {
        grid-template-columns: 1fr;
    }
    body.page-platform .platform-hero__visual,
    body.page-subpage .subpage-hero__visual {
        max-width: 760px;
    }
    body.page-platform .quick-facts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    body.page-platform,
    body.page-subpage,
    body.page-static,
    body.page-go {
        font-size: 16px;
    }
    body.page-platform .utility-bar,
    body.page-subpage .utility-bar,
    body.page-static .utility-bar,
    body.page-go .utility-bar {
        display: none;
    }
    body.page-platform .site-header__inner,
    body.page-subpage .site-header__inner,
    body.page-static .site-header__inner,
    body.page-go .site-header__inner {
        min-height: 72px;
    }
    body.page-platform .brand--logo-nine,
    body.page-subpage .brand--logo-nine,
    body.page-static .brand--logo-nine,
    body.page-go .brand--logo-nine {
        flex-basis: 250px;
    }
    body.page-platform .brand__logo-nine,
    body.page-subpage .brand__logo-nine,
    body.page-static .brand__logo-nine,
    body.page-go .brand__logo-nine {
        width: 250px;
    }
    body.page-platform .platform-tabs,
    body.page-subpage .platform-tabs {
        top: 72px;
    }
    body.page-platform .platform-tabs a,
    body.page-subpage .platform-tabs a {
        min-height: 48px;
        padding: 0 20px;
        font-size: 15px;
    }
    body.page-platform .platform-hero,
    body.page-subpage .subpage-hero {
        padding: 34px 0;
    }
    body.page-platform .platform-hero h1,
    body.page-subpage .subpage-hero h1,
    body.page-static .static-hero h1 {
        font-size: 43px;
    }
    body.page-platform .platform-hero__copy > p,
    body.page-subpage .subpage-hero__copy > p,
    body.page-static .static-hero p {
        font-size: 17px;
    }
    body.page-platform .platform-wordmark,
    body.page-subpage .platform-wordmark {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    body.page-platform .rating-panel {
        position: static;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
    body.page-platform .quick-facts__grid,
    body.page-subpage .device-support__grid,
    body.page-platform .feature-grid,
    body.page-subpage .feature-grid,
    body.page-platform .split-grid,
    body.page-subpage .phone-grid,
    body.page-platform .footer-grid,
    body.page-subpage .footer-grid,
    body.page-static .footer-grid,
    body.page-go .footer-grid {
        grid-template-columns: 1fr;
    }
    body.page-platform .feature-card,
    body.page-subpage .feature-card,
    body.page-subpage .number-step {
        padding: 22px;
    }
    body.page-platform .feature-card__head,
    body.page-subpage .feature-card__head,
    body.page-subpage .number-step__head {
        align-items: center;
    }
    body.page-platform .feature-card p,
    body.page-subpage .feature-card p {
        margin-left: 73px;
    }
    body.page-subpage .number-step p {
        margin-left: 84px;
    }
    body.page-platform .promo-box--large,
    body.page-subpage .promo-box--large {
        padding: 18px;
    }
    body.page-platform .promo-box__code,
    body.page-subpage .promo-box__code {
        font-size: 22px;
    }
    body.page-platform .faq-list summary,
    body.page-subpage .faq-list summary {
        font-size: 18px;
    }
    body.page-platform .faq-answer,
    body.page-subpage .faq-answer {
        padding-right: 0;
    }
    body.page-platform .footer-bottom,
    body.page-subpage .footer-bottom,
    body.page-static .footer-bottom,
    body.page-go .footer-bottom {
        flex-direction: column;
    }
}
@media (max-width: 440px) {
    body.page-platform .brand--logo-nine,
    body.page-subpage .brand--logo-nine,
    body.page-static .brand--logo-nine,
    body.page-go .brand--logo-nine {
        flex-basis: 215px;
    }
    body.page-platform .brand__logo-nine,
    body.page-subpage .brand__logo-nine,
    body.page-static .brand__logo-nine,
    body.page-go .brand__logo-nine {
        width: 215px;
    }
    body.page-platform .menu-toggle,
    body.page-subpage .menu-toggle,
    body.page-static .menu-toggle,
    body.page-go .menu-toggle {
        width: 44px;
        height: 44px;
    }
    body.page-platform .feature-icon,
    body.page-subpage .feature-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
    }
    body.page-platform .feature-card p,
    body.page-subpage .feature-card p {
        margin-left: 67px;
    }
    body.page-subpage .number-step__head > span {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
    }
    body.page-subpage .number-step p {
        margin-left: 78px;
    }
}

body.page-static .sitemap-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;padding-bottom:70px}body.page-static .sitemap-grid a{padding:11px 13px;border:1px solid #dce4ec;border-radius:10px;background:#fff;text-decoration:none;font-size:13px}@media(max-width:760px){body.page-static .sitemap-grid{grid-template-columns:1fr}}

/* Correzioni 01/09/2026: box promo home e pulsante copia nelle pagine interne. */
body.page-home .promo-box {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    padding: 10px;
}
body.page-home .promo-box__label {
    width: 100%;
}
body.page-home .promo-box__code {
    width: 100%;
    justify-content: center;
}

body.page-platform .promo-box__code .copy-symbol,
body.page-subpage .promo-box__code .copy-symbol {
    right: 20px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #46515c;
    font-size: 0;
}
body.page-platform .promo-box__code .copy-symbol svg,
body.page-subpage .promo-box__code .copy-symbol svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
body.page-platform .promo-box__code.is-copied,
body.page-subpage .promo-box__code.is-copied {
    border-color: var(--green);
    background: var(--green-soft);
}
body.page-platform .promo-box__code.is-copied .copy-symbol,
body.page-subpage .promo-box__code.is-copied .copy-symbol {
    color: var(--green-dark);
}


/* ===== MODIFICHE DEFINITIVE 01-09-2026 ===== */
/* Unica palette verde per Conti, Broker, Cripto e Wallet. */
body.page-home{
    --blue:#159a67;
    --blue-dark:#0d7650;
    --amber:#159a67;
    --amber-dark:#0d7650;
    --violet:#159a67;
    --violet-dark:#0d7650;
}
body.page-home .ranking-section--blue,
body.page-home .ranking-section--amber,
body.page-home .ranking-section--violet,
body.page-home .ranking-section--green{
    --section-accent:#159a67;
    --section-accent-dark:#0d7650;
    --section-soft:#eaf7f1;
}
body.category-broker,
body.category-cripto,
body.category-wallet,
body.category-conti{
    --green:#159a67;
    --green-dark:#0d7650;
    --green-soft:#eaf7f1;
}

/* Like e Unlike sotto la fotografia, sempre allineati a destra. */
body.page-platform .platform-hero__visual-stack{
    min-width:0;
    display:flex;
    flex-direction:column;
}
body.page-platform .platform-vote-row{
    display:flex;
    justify-content:flex-end;
    width:100%;
    margin-top:11px;
}
body.page-platform .platform-vote-row .reaction-group{
    display:flex;
    justify-content:flex-end;
    gap:8px;
    margin:0;
}
body.page-platform .platform-vote-row .reaction-group button{
    min-width:68px;
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    border:1px solid var(--line);
    border-radius:12px;
    background:#fff;
    color:#20262d;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(8,27,46,.05);
}
body.page-platform .platform-vote-row .reaction-group button:hover{
    border-color:#9dcfba;
    transform:translateY(-1px);
}
body.page-platform .platform-vote-row .reaction-group button.active{
    border-color:var(--green);
    background:var(--green-soft);
    color:var(--green-dark);
}
@media(max-width:640px){
    body.page-platform .platform-vote-row{
        justify-content:flex-end;
        padding-right:0;
    }
}

/* Testi SEO approfonditi. */
body.page-platform .seo-deep-dive h3,
body.page-subpage .seo-deep-dive h3,
body.page-platform .content-card h3{
    margin:28px 0 10px;
    font-size:clamp(21px,2.4vw,29px);
    line-height:1.2;
    letter-spacing:-.025em;
}
body.page-platform .content-card p + p,
body.page-platform .content-card h3 + p,
body.page-subpage .seo-deep-dive p + p,
body.page-subpage .seo-deep-dive h3 + p{
    margin-top:14px;
}
body.page-platform .content-card a,
body.page-subpage .seo-deep-dive a{
    color:var(--green-dark);
    text-decoration-thickness:1px;
    text-underline-offset:3px;
}

/* Pagine go con collegamento ufficiale. */
body.page-go .go-official-card{
    max-width:780px;
    text-align:center;
}
body.page-go .go-official-badge{
    display:inline-flex;
    min-height:32px;
    align-items:center;
    margin-top:24px;
    padding:0 13px;
    border:1px solid #bfe2d2;
    border-radius:999px;
    background:#eaf7f1;
    color:#0d7650;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}
body.page-go .official-visit{
    width:min(100%,430px);
    min-height:60px;
    margin-top:24px;
    font-size:17px;
}
body.page-go .go-domain{
    margin:13px 0 0;
    color:var(--muted);
    font-size:13px;
}
body.page-go .go-secondary-actions{
    justify-content:center;
    margin-top:28px;
}