/* runkarobar — shared marketing styles */
/* Brand palette matches the runkarobar admin dashboard (indigo #4F46E5). */
:root{
  --brand:#4F46E5; --brand-dark:#4338CA; --ink:#0f172a; --muted:#475569;
  --bg:#ffffff; --soft:#eef2ff; --line:#e0e7ff; --line-2:#e2e8f0;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--ink);background:var(--bg);line-height:1.55;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:1120px;margin:0 auto;padding:0 20px}

/* buttons */
.btn{display:inline-flex;align-items:center;gap:8px;padding:13px 22px;border-radius:12px;font-weight:700;font-size:15px;transition:.15s;cursor:pointer;border:none}
.btn-primary{background:var(--brand);color:#fff}
.btn-primary:hover{background:var(--brand-dark);transform:translateY(-1px)}
.btn-ghost{border:1.5px solid var(--line);color:var(--ink);background:#fff}
.btn-ghost:hover{border-color:var(--brand);color:var(--brand)}
.btn-lg{padding:16px 30px;font-size:17px;border-radius:14px}

/* header / nav */
header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.85);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;height:66px}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:20px}
.mark{width:34px;height:34px;border-radius:9px;background:var(--brand);color:#fff;display:grid;place-items:center;font-weight:900;font-size:20px;flex:none}
.nav-links{display:flex;align-items:center;gap:8px}
.nav-links a.small{font-weight:600;color:var(--muted);padding:8px 12px;border-radius:9px}
.nav-links a.small:hover{color:var(--brand);background:var(--soft)}
.nav-links a.small.active{color:var(--brand)}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;line-height:1;color:var(--ink)}
.nav-toggle .i{width:24px;height:24px}

/* hero */
.hero{background:linear-gradient(180deg,var(--soft),#fff);padding:70px 0 60px;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center}
.pill{display:inline-block;background:#fff;border:1px solid var(--line);color:var(--brand);font-weight:700;font-size:13px;padding:6px 14px;border-radius:999px;margin-bottom:20px}
.hero h1{font-size:clamp(34px,5vw,56px);line-height:1.05;letter-spacing:-.02em;margin-bottom:18px}
.hero h1 span{color:var(--brand)}
.hero .sub{font-size:clamp(16px,2.2vw,20px);color:var(--muted);max-width:560px;margin-bottom:28px}
.cta{display:flex;gap:12px;flex-wrap:wrap}
.hero-note{margin-top:16px;color:var(--muted);font-size:13px}

/* page hero (inner pages) */
.pagehead{background:linear-gradient(180deg,var(--soft),#fff);padding:64px 0 48px;text-align:center}
.pagehead h1{font-size:clamp(30px,4.5vw,48px);letter-spacing:-.02em;line-height:1.08;margin-bottom:14px}
.pagehead h1 span{color:var(--brand)}
.pagehead p{font-size:clamp(16px,2.2vw,19px);color:var(--muted);max-width:620px;margin:0 auto}

/* sections */
.section{padding:64px 0}
.section.tint{background:linear-gradient(180deg,#fff,var(--soft))}
.section .eyebrow{text-align:center;color:var(--brand);font-weight:800;font-size:13px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px}
.section h2{font-size:clamp(26px,4vw,38px);text-align:center;letter-spacing:-.02em;margin-bottom:12px}
.section .lead{text-align:center;color:var(--muted);max-width:600px;margin:0 auto 46px}
.section h2.left,.section .lead.left{text-align:left;margin-left:0}

/* cards / grids */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:18px}
.grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px}
.card{border:1px solid var(--line);border-radius:16px;padding:26px;background:#fff;transition:.15s}
.card:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(79,70,229,.09)}
.ic{width:46px;height:46px;border-radius:12px;background:var(--soft);color:var(--brand);display:grid;place-items:center;margin-bottom:14px}
.ic .i{width:24px;height:24px}

/* SVG icons (CSS mask, coloured by currentColor) */
.i{display:inline-block;width:24px;height:24px;background:currentColor;flex:none;vertical-align:middle;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;
  -webkit-mask-size:contain;mask-size:contain}
.card h3{font-size:19px;margin-bottom:6px}
.card p{color:var(--muted);font-size:15px}
.card ul{list-style:none;margin-top:10px;display:grid;gap:6px}
.card ul li{color:var(--muted);font-size:14px;padding-left:22px;position:relative}
.card ul li::before{content:"✓";position:absolute;left:0;color:var(--brand);font-weight:800}

/* CTA band */
.band{background:var(--ink);color:#fff;text-align:center;padding:60px 24px;border-radius:24px;margin:0 20px}
.band h2{color:#fff;font-size:clamp(24px,3.6vw,34px);letter-spacing:-.02em}
.band p{color:#cbd5e1;max-width:520px;margin:10px auto 26px}

/* footer */
footer{border-top:1px solid var(--line);margin-top:20px;padding:48px 0 36px;color:var(--muted);font-size:14px}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:28px;margin-bottom:32px}
.foot-grid .logo{color:var(--ink);margin-bottom:12px}
.foot-grid p{max-width:280px}
.foot-col h4{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink);margin-bottom:12px;font-weight:800}
.foot-col a{display:block;color:var(--muted);padding:5px 0}
.foot-col a:hover{color:var(--brand)}
.foot-bottom{border-top:1px solid var(--line);padding-top:22px;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;align-items:center}
.foot-bottom .zt{color:var(--ink);font-weight:700}

/* ===== phone mockup (notched, interactive) ===== */
.phone-stage{display:grid;place-items:center;min-height:600px}
.phone{position:relative;width:286px;height:588px;border-radius:42px;background:#0f172a;padding:9px;
  box-shadow:0 30px 70px -24px rgba(15,23,42,.5),0 0 0 1.5px #1e293b inset;
  transform:perspective(1600px) rotateY(-19deg) rotateX(4deg) rotateZ(1deg);
  transition:transform .6s cubic-bezier(.2,.7,.2,1);will-change:transform}
.phone-stage:hover .phone{transform:perspective(1600px) rotateY(0deg) rotateX(0deg) rotateZ(0deg)}
.phone::after{content:"";position:absolute;right:-3px;top:138px;width:3px;height:56px;background:#1e293b;border-radius:3px}
.phone-notch{position:absolute;top:9px;left:50%;transform:translateX(-50%);width:100px;height:23px;background:#0f172a;border-radius:0 0 15px 15px;z-index:6}
.phone-notch::before{content:"";position:absolute;top:9px;left:50%;transform:translateX(-50%);width:36px;height:4px;border-radius:3px;background:#1e293b}
.phone-notch::after{content:"";position:absolute;top:7px;right:20px;width:7px;height:7px;border-radius:50%;background:#111827;box-shadow:inset 0 0 0 1.5px #334155}
.phone-screen{position:relative;width:100%;height:100%;border-radius:34px;overflow:hidden;background:#f4f6fb;display:flex;flex-direction:column}
@media (prefers-reduced-motion:reduce){.phone{transition:none}}

.statusbar{display:flex;justify-content:space-between;align-items:center;padding:11px 22px 4px;font-size:12px;font-weight:700;color:#0f172a}
.statusbar .sb-right{display:flex;align-items:center;gap:5px}
.statusbar .sb-sig,.statusbar .sb-wifi,.statusbar .sb-batt{display:inline-block;background:#0f172a;border-radius:2px}
.statusbar .sb-sig{width:15px;height:10px;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='1' y='14' width='4' height='8'/%3E%3Crect x='7' y='9' width='4' height='13'/%3E%3Crect x='13' y='5' width='4' height='17'/%3E%3Crect x='19' y='1' width='4' height='21'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='1' y='14' width='4' height='8'/%3E%3Crect x='7' y='9' width='4' height='13'/%3E%3Crect x='13' y='5' width='4' height='17'/%3E%3Crect x='19' y='1' width='4' height='21'/%3E%3C/svg%3E") center/contain no-repeat}
.statusbar .sb-wifi{width:14px;height:11px;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 8.8a16 16 0 0 1 20 0'/%3E%3Cpath d='M5 12.5a11 11 0 0 1 14 0'/%3E%3Cpath d='M8.5 16a6 6 0 0 1 7 0'/%3E%3Cline x1='12' y1='20' x2='12' y2='20'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 8.8a16 16 0 0 1 20 0'/%3E%3Cpath d='M5 12.5a11 11 0 0 1 14 0'/%3E%3Cpath d='M8.5 16a6 6 0 0 1 7 0'/%3E%3Cline x1='12' y1='20' x2='12' y2='20'/%3E%3C/svg%3E") center/contain no-repeat}
.statusbar .sb-batt{width:22px;height:11px;border-radius:3px;position:relative}
.statusbar .sb-batt::after{content:"";position:absolute;right:-3px;top:3px;width:2px;height:5px;background:#0f172a;border-radius:0 2px 2px 0}

.papp{flex:1;display:flex;flex-direction:column;min-height:0;background:#f4f6fb}
.papp-top{background:var(--brand);color:#fff;padding:8px 16px 12px;display:flex;align-items:center;justify-content:space-between}
.papp-top .t{font-weight:800;font-size:15px;display:flex;align-items:center;gap:7px}
.papp-top .t .m{width:22px;height:22px;border-radius:6px;background:#fff;color:var(--brand);display:grid;place-items:center;font-weight:900;font-size:14px}
.papp-top .i{width:18px;height:18px;color:#fff}
.papp-views{flex:1;min-height:0;overflow-y:auto;-webkit-overflow-scrolling:touch;padding:14px;display:flex;flex-direction:column;gap:12px}
.papp-views::-webkit-scrollbar{width:0}
.pview{display:flex;flex-direction:column;gap:12px}
.pdot{width:7px;height:7px;border-radius:50%;background:#22c55e;display:inline-block;margin-right:5px;animation:pulse 1.8s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(34,197,94,.5)}50%{opacity:.6;box-shadow:0 0 0 4px rgba(34,197,94,0)}}
.psales,.pcart,.pclock,.psum,.plist{background:#fff;border:1px solid var(--line-2);border-radius:16px}
.psales{padding:12px 14px}
.psales h4,.pcart h4{font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:8px}
.psales .sr{display:flex;justify-content:space-between;align-items:center;font-size:13px;padding:6px 0;border-bottom:1px solid #f1f5f9}
.psales .sr:last-child{border-bottom:none}
.psales .sr .amt{font-weight:700;color:#15803d;font-variant-numeric:tabular-nums}
.pclock{padding:14px}
.pclock .row{display:flex;align-items:center;justify-content:space-between}
.pclock .lbl{font-size:11px;color:var(--muted);font-weight:700;letter-spacing:.04em;display:flex;align-items:center}
.pclock .badge{font-size:10px;font-weight:800;background:#dcfce7;color:#166534;padding:3px 8px;border-radius:999px}
.pclock .time{font-size:26px;font-weight:800;margin:6px 0 10px;letter-spacing:-.01em}
.cbtn{background:var(--brand);color:#fff;text-align:center;font-weight:800;font-size:14px;padding:12px;border-radius:12px;cursor:pointer;transition:.12s}
.cbtn:active{transform:scale(.98)}
.pcart{padding:12px 14px}
.pcart .li{display:flex;justify-content:space-between;font-size:13px;padding:5px 0;border-bottom:1px dashed var(--line-2)}
.pcart .li span:last-child{font-weight:700;font-variant-numeric:tabular-nums}
.pcart .tot{display:flex;justify-content:space-between;font-weight:800;font-size:15px;margin-top:8px}
.pcart .tot .amt{color:var(--brand);font-variant-numeric:tabular-nums}
.ptiles{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.ptiles button{display:flex;align-items:center;gap:5px;justify-content:center;background:#fff;border:1px solid var(--line-2);border-radius:11px;padding:9px 6px;font:inherit;font-size:12px;font-weight:700;color:#0f172a;cursor:pointer}
.ptiles button:active{background:var(--soft)}
.ptiles .i{width:13px;height:13px;color:var(--brand)}
.pgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.pgrid .qa{background:#fff;border:1px solid var(--line-2);border-radius:12px;padding:11px 4px;display:flex;flex-direction:column;align-items:center;gap:5px;font:inherit;cursor:pointer}
.pgrid .qa:active{background:var(--soft)}
.pgrid .qa .i{width:18px;height:18px;color:var(--brand)}
.pgrid .qa .l{font-size:9px;color:var(--muted);font-weight:700}
.psum{display:grid;grid-template-columns:repeat(3,1fr);padding:12px;text-align:center}
.psum .ps+.ps{border-left:1px solid #f1f5f9}
.psum .k{font-size:9px;font-weight:800;letter-spacing:.08em;color:var(--muted)}
.psum .v{font-size:22px;font-weight:800;margin-top:2px}
.plist{padding:6px 12px}
.plist .pl-row{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:9px 0;border-bottom:1px solid #f1f5f9}
.plist .pl-row:last-child{border-bottom:none}
.plist .nm{font-size:13px;font-weight:600}
.plist .sub{font-size:11px;color:#94a3b8}
.plist .qty{font-size:11px;font-weight:800;padding:2px 9px;border-radius:6px}
.plist .qty.ok{background:#dcfce7;color:#166534}
.plist .qty.low{background:#fee2e2;color:#991b1b}
.papp-tabs{display:grid;grid-template-columns:repeat(4,1fr);background:#fff;border-top:1px solid var(--line-2);padding:7px 6px}
.papp-tabs button{display:flex;flex-direction:column;align-items:center;gap:3px;background:none;border:none;cursor:pointer;font:inherit;color:#94a3b8;padding:4px}
.papp-tabs button .i{width:20px;height:20px}
.papp-tabs button span:last-child{font-size:9px;font-weight:700}
.papp-tabs button.active{color:var(--brand)}

/* ===== phone storefront preview — a live online shop on runkarobar =====
   Indigo theme: keyed to the site's brand indigo but a touch brighter/cleaner
   (accent #6366F1 vs the site's #4F46E5) so the shop reads as its own product.
   Real fashion imagery lives in assets/shop/. */
.shopapp{--sc-bg:#ffffff;--sc-fg:#1e1b3a;--sc-muted:#7c7a90;--sc-accent:#6366F1;--sc-accent-d:#4338CA;--sc-soft:#eef2ff;--sc-line:#e7e6f2;
  --sc-sans:'Segoe UI',system-ui,-apple-system,Roboto,Helvetica,Arial,sans-serif;
  flex:1;display:flex;flex-direction:column;min-height:0;background:var(--sc-bg);color:var(--sc-fg);font-family:var(--sc-sans)}
.shop-top{display:flex;align-items:center;justify-content:space-between;padding:11px 15px 10px;background:var(--sc-bg);border-bottom:1px solid var(--sc-line)}
.shop-top .i{width:17px;height:17px;color:var(--sc-fg)}
.shop-brand{font-weight:800;font-size:17px;letter-spacing:.26em;padding-left:14px;color:var(--sc-accent-d)}
.shop-top-ic{display:flex;align-items:center;gap:13px}
.shop-bag{position:relative;display:inline-flex}
.shop-bag-n{position:absolute;top:-6px;right:-7px;background:var(--sc-accent);color:#fff;font-size:8px;font-weight:800;min-width:13px;height:13px;border-radius:999px;display:grid;place-items:center;padding:0 3px}
.shop-scroll{flex:1;min-height:0;overflow-y:auto;-webkit-overflow-scrolling:touch}
.shop-scroll::-webkit-scrollbar{width:0}

.shop-hero{position:relative;margin:0;padding:24px 18px 22px;min-height:230px;display:flex;flex-direction:column;justify-content:flex-end;color:#fff;overflow:hidden;
  background:linear-gradient(180deg,rgba(49,46,129,.12),rgba(49,46,129,.68)),url("shop/hero.jpg") center/cover no-repeat}
.shop-eyebrow{font-size:9px;font-weight:800;letter-spacing:.22em;text-transform:uppercase;opacity:.95;margin-bottom:9px}
.shop-hero-h{font-size:32px;line-height:1.02;font-weight:800;letter-spacing:-.01em;text-shadow:0 2px 14px rgba(27,20,58,.35)}
.shop-hero-sub{font-size:11px;opacity:.94;margin-top:8px;max-width:180px}
.shop-btn{margin-top:15px;align-self:flex-start;background:var(--sc-accent);color:#fff;font-size:11px;font-weight:800;letter-spacing:.03em;padding:10px 18px;border-radius:9px;box-shadow:0 8px 20px -8px rgba(99,102,241,.7)}

.shop-strip{display:flex;align-items:center;gap:7px;justify-content:center;font-size:9.5px;font-weight:700;color:var(--sc-accent-d);
  background:var(--sc-soft);padding:8px 10px;border-bottom:1px solid var(--sc-line)}
.shop-strip .pdot{margin:0;width:6px;height:6px}

.shop-sec-h{display:flex;align-items:baseline;justify-content:space-between;padding:18px 16px 10px}
.shop-sec-h span{font-size:15px;font-weight:800;letter-spacing:-.01em}
.shop-sec-h a{font-size:10px;font-weight:700;color:var(--sc-accent);letter-spacing:.02em}

.shop-cats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding:0 14px}
.shop-cat{display:flex;flex-direction:column;gap:6px;align-items:center}
.shop-cat-img{width:100%;aspect-ratio:1;border-radius:12px;background-size:cover;background-position:center;box-shadow:0 4px 12px -6px rgba(27,20,58,.3)}
.shop-cat span{font-size:10px;font-weight:700;letter-spacing:.02em}
.shop-cat-img.c1{background-image:url("shop/c1.jpg")}
.shop-cat-img.c2{background-image:url("shop/c2.jpg")}
.shop-cat-img.c3{background-image:url("shop/c3.jpg")}

.shop-prods{display:grid;grid-template-columns:1fr 1fr;gap:12px 10px;padding:4px 14px 16px}
.shop-prod-img{position:relative;width:100%;aspect-ratio:3/4;border-radius:12px;background-size:cover;background-position:center top;margin-bottom:7px;box-shadow:0 6px 16px -8px rgba(27,20,58,.35)}
.shop-prod-img.p1{background-image:url("shop/p1.jpg")}
.shop-prod-img.p2{background-image:url("shop/p2.jpg")}
.shop-prod-img.p3{background-image:url("shop/p3.jpg")}
.shop-prod-img.p4{background-image:url("shop/p4.jpg")}
.shop-tag{position:absolute;top:7px;left:7px;background:#fff;color:var(--sc-accent-d);font-size:8px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;padding:3px 7px;border-radius:6px}
.shop-tag.sale{background:var(--sc-accent);color:#fff}
.shop-prod-nm{font-size:11.5px;font-weight:600}
.shop-prod-pr{font-size:11.5px;font-weight:800;color:var(--sc-accent-d);margin-top:2px}

.shop-tabs{display:grid;grid-template-columns:repeat(4,1fr);background:var(--sc-bg);border-top:1px solid var(--sc-line);padding:7px 6px}
.shop-tabs button{display:flex;flex-direction:column;align-items:center;gap:3px;background:none;border:none;cursor:pointer;font:inherit;color:var(--sc-muted);padding:4px}
.shop-tabs button .i{width:19px;height:19px}
.shop-tabs button span:last-child{font-size:9px;font-weight:700}
.shop-tabs button.active{color:var(--sc-accent)}

/* ===== slanted dashboard window (schoolhq-style tilt, straightens on hover) ===== */
.dash-wrap{position:relative;max-width:1080px;margin:24px auto 0;perspective:2200px}
.macbook{max-width:1040px;margin:0 auto;position:relative;background:#0b0b0d;border-radius:22px;padding:14px 14px 20px;
  box-shadow:0 44px 90px -36px rgba(0,0,0,.6),0 0 0 1px #2a2a2e,inset 0 0 0 1.5px #050506;
  transform:rotateX(6deg) rotateY(-14deg) rotateZ(.5deg);transform-origin:center;
  transition:transform .6s cubic-bezier(.2,.7,.2,1);will-change:transform}
.macbook::before{content:"";position:absolute;top:6px;left:50%;transform:translateX(-50%);width:6px;height:6px;border-radius:50%;background:#3a3a40;box-shadow:inset 0 0 0 1px #000}
.macbook::after{content:"";position:absolute;bottom:7px;left:50%;transform:translateX(-50%);width:60px;height:4px;border-radius:3px;background:#2a2a2e}
.dash-wrap:hover .macbook{transform:rotateX(0deg) rotateY(0deg) rotateZ(0deg)}
@media (prefers-reduced-motion:reduce){.macbook{transition:none}}
.dwindow{border-radius:8px;overflow:hidden;background:#fff}
.dchrome{display:flex;align-items:center;gap:10px;padding:9px 14px;background:#f8fafc;border-bottom:1px solid var(--line-2)}
.dchrome .dots{display:flex;gap:6px}
.dchrome .dots i{width:10px;height:10px;border-radius:50%;background:#e2e8f0}
.dchrome .dots i:nth-child(1){background:#fca5a5}.dchrome .dots i:nth-child(2){background:#fde68a}.dchrome .dots i:nth-child(3){background:#86efac}
.durl{flex:1;background:#fff;border:1px solid var(--line-2);border-radius:7px;padding:5px 11px;font-size:11.5px;color:#94a3b8;display:flex;align-items:center;gap:6px}
.durl .i{width:12px;height:12px;color:#94a3b8}
.dapp{display:flex;background:#fff;height:472px}

/* --- faithful runkarobar sidebar --- */
.dside{width:182px;flex:none;background:#fff;border-right:1px solid var(--line-2);display:flex;flex-direction:column}
.dside-head{padding:14px 16px 12px;border-bottom:1px solid var(--line-2)}
.dside-head .brandname{font-size:15px;font-weight:800}
.dside-head .sub{font-size:11px;color:#94a3b8}
.dside-nav{flex:1;overflow-y:auto;padding:8px 8px 10px}
.dside-nav::-webkit-scrollbar{width:7px}.dside-nav::-webkit-scrollbar-thumb{background:#e2e8f0;border-radius:7px}
.dnav{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:9px;cursor:pointer;font-size:13px;color:#374151;transition:.12s}
.dnav .i{width:17px;height:17px;flex:none}
.dnav .lb{flex:1}
.dnav:hover{background:#f3f4f6}
.dnav.active{background:#0f172a;color:#fff;font-weight:600}
.dnav.soon{color:#9ca3af;cursor:default}
.dnav .nbadge{font-size:10px;font-weight:800;background:#facc15;color:#0f172a;padding:1px 7px;border-radius:999px}
.dnav.active .nbadge{background:#fff;color:#0f172a}
.dnav .nbadge.live{background:#dcfce7;color:#166534}
.dnav.active .nbadge.live{background:#fff;color:#166534}
.dh-sub .pdot{margin-right:6px}
.dnav .soon-b{font-size:9px;font-weight:800;background:#fef3c7;color:#b45309;padding:1px 6px;border-radius:999px}
.dgroup{padding-top:6px}
.dgroup-h{width:100%;display:flex;align-items:center;justify-content:space-between;gap:6px;background:none;border:none;cursor:pointer;
  padding:5px 10px;font:inherit;font-size:10.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#9ca3af}
.dgroup-h:hover{color:#6b7280}
.dgroup-h .chev{width:13px;height:13px;color:#9ca3af;transition:transform .18s}
.dgroup:not(.open) .chev{transform:rotate(-90deg)}
.dgroup-items{display:none;flex-direction:column;gap:2px;margin-top:2px}
.dgroup.open .dgroup-items{display:flex}
.dside-div{margin-top:8px;padding-top:8px;border-top:1px solid #f1f5f9}
.dside-foot{border-top:1px solid var(--line-2);padding:12px 16px}
.dside-foot .nm{font-size:12px;font-weight:700}
.dside-foot .em{font-size:11px;color:#94a3b8;margin-bottom:8px;overflow:hidden;text-overflow:ellipsis}
.dside-foot .signout{border:1px solid #0f172a;border-radius:7px;text-align:center;font-size:12px;font-weight:600;padding:5px;cursor:pointer}
.dside-foot .signout:hover{background:#0f172a;color:#fff}

.dmain{flex:1;display:flex;flex-direction:column;min-width:0;background:#fff}
.dtop{display:flex;align-items:center;justify-content:space-between;padding:11px 18px;border-bottom:1px solid var(--line-2);flex:none}
.dtop-title{font-size:15px;font-weight:800}
.dtop-right{display:flex;align-items:center;gap:12px}
.dtop-right .i{width:17px;height:17px;color:#94a3b8}
.ava{width:28px;height:28px;border-radius:8px;background:var(--brand);color:#fff;display:grid;place-items:center;font-weight:800;font-size:12px;flex:none}
.ava.sm{width:26px;height:26px;font-size:11px;border-radius:7px}
.dsearch{display:flex;align-items:center;gap:6px;font-size:12px;color:#94a3b8;background:#f1f5f9;border-radius:8px;padding:6px 12px}
.dsearch .i{width:13px;height:13px}
.dscroll{flex:1;overflow-y:auto;padding:20px;scroll-behavior:smooth}
.dgen{display:grid;place-items:center;min-height:280px;text-align:center;color:var(--muted)}
.dgen .i{width:40px;height:40px;color:var(--brand);margin-bottom:14px}
.dgen h3{font-size:18px;color:var(--ink);margin-bottom:4px}
.dscroll::-webkit-scrollbar{width:9px}
.dscroll::-webkit-scrollbar-thumb{background:#e2e8f0;border-radius:9px}
.mini-btn{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:var(--brand);background:var(--soft);padding:5px 11px;border-radius:8px}
.mini-btn .i{width:12px;height:12px}
.bars{display:flex;align-items:flex-end;gap:12px;height:170px;padding:20px 18px 8px}
.bar-col{flex:1;display:flex;flex-direction:column;align-items:center;gap:8px;height:100%;justify-content:flex-end}
.bar{width:100%;max-width:42px;background:linear-gradient(var(--brand),#818cf8);border-radius:7px 7px 0 0;min-height:6px;transition:height .4s ease}
.bar-col .bl{font-size:11px;color:#94a3b8;font-weight:600}
.pos-wrap{display:grid;grid-template-columns:1.3fr 1fr;gap:16px;align-items:start}
.pos-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.pos-tile{background:#fff;border:1px solid var(--line-2);border-radius:12px;padding:14px 10px;text-align:left;font:inherit;cursor:pointer;transition:.12s}
.pos-tile:hover{border-color:var(--brand);box-shadow:0 8px 18px -10px rgba(79,70,229,.4)}
.pos-tile .nm{font-size:13px;font-weight:700}
.pos-tile .pr{font-size:13px;color:var(--brand);font-weight:800;margin-top:4px}
.pos-cart{margin-bottom:0}
.pos-total{display:flex;justify-content:space-between;font-weight:800;padding:12px 18px;border-top:1px solid var(--line-2)}
.pos-pay{background:var(--brand);color:#fff;text-align:center;font-weight:800;padding:12px;margin:0 14px 14px;border-radius:10px;cursor:pointer}
.set-list{padding:6px 18px 14px}
.set-row{display:flex;justify-content:space-between;padding:11px 0;border-bottom:1px solid #f1f5f9;font-size:14px;color:var(--muted)}
.set-row:last-child{border-bottom:none}
.set-row b{color:#0f172a}
.set-row b.on{color:#15803d}
.dash-hint{position:absolute;right:20px;bottom:34px;font-size:11px;color:var(--muted);background:#fff;border:1px solid var(--line-2);border-radius:999px;padding:6px 13px;box-shadow:0 6px 16px rgba(15,23,42,.12);display:flex;align-items:center;gap:5px}
.dash-hint .i{width:13px;height:13px;color:var(--brand)}

.dh1{font-size:22px;font-weight:800}
.dh-sub{font-size:13px;color:var(--muted);margin-bottom:18px}
.stat-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-bottom:18px}
.stat{border:1px solid var(--line-2);border-radius:12px;padding:14px}
.stat.accent{border-color:#facc15;background:#fefce8}
.stat .k{font-size:10px;font-weight:800;letter-spacing:.12em;color:var(--muted)}
.stat .v{font-size:26px;font-weight:800;margin-top:4px;font-variant-numeric:tabular-nums}
.stat .s{font-size:11px;color:var(--muted);margin-top:3px}
.panel{border:1px solid var(--line-2);border-radius:12px;overflow:hidden;margin-bottom:18px}
.panel-h{padding:14px 18px;border-bottom:1px solid var(--line-2);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px}
.panel-h .ttl{font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.panel-h .msub{font-size:11px;color:var(--muted);margin-top:2px}
.net .np-l{font-size:10px;font-weight:800;letter-spacing:.14em;color:#94a3b8;text-align:right}
.net .np-v{font-size:24px;font-weight:800;color:#15803d;text-align:right;font-variant-numeric:tabular-nums}
.pl-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;padding:16px 18px}
.pl .k{font-size:10px;font-weight:800;letter-spacing:.1em;color:#64748b}
.pl .v{font-size:18px;font-weight:800;margin-top:4px;font-variant-numeric:tabular-nums}
.pl .v.muted{color:#64748b}
table.dash-tbl{width:100%;border-collapse:collapse;font-size:13px}
table.dash-tbl th{background:#f8fafc;text-align:left;padding:9px 14px;font-weight:600;color:#475569;font-size:12px}
table.dash-tbl td{padding:11px 14px;border-top:1px solid #f1f5f9;font-variant-numeric:tabular-nums}
table.dash-tbl td .nm{font-weight:600;font-variant-numeric:normal}
table.dash-tbl td .id{font-size:11px;color:#94a3b8;font-variant-numeric:normal}
.sbadge{font-size:10px;font-weight:800;letter-spacing:.08em;padding:2px 8px;border-radius:5px}
.sbadge.present{background:#dcfce7;color:#166534}
.sbadge.late{background:#fef9c3;color:#854d0e}
.sbadge.half{background:#dbeafe;color:#1e40af}

/* pricing */
/* ₹1 trial banner */
.trial-banner{display:flex;align-items:center;gap:14px;max-width:760px;margin:0 auto 26px;padding:16px 20px;
  background:var(--soft);border:1px solid var(--line);border-radius:16px;color:var(--ink);font-size:15px}
.trial-banner .i{width:26px;height:26px;color:var(--brand);flex:none}
.trial-banner b{color:var(--brand)}

/* monthly / yearly billing toggle */
.bill-toggle{display:flex;width:fit-content;gap:4px;margin:0 auto 34px;padding:5px;background:var(--soft);border:1px solid var(--line);border-radius:999px}
.bt-opt{display:inline-flex;align-items:center;gap:8px;border:none;background:transparent;cursor:pointer;font:inherit;font-weight:700;font-size:15px;color:var(--muted);padding:9px 20px;border-radius:999px;transition:.15s}
.bt-opt.active{background:var(--brand);color:#fff}
.bt-save{font-size:11px;font-weight:800;letter-spacing:.02em;background:#dcfce7;color:#166534;padding:2px 8px;border-radius:999px}
.bt-opt.active .bt-save{background:rgba(255,255,255,.22);color:#fff}

.price-alt{color:var(--muted);font-size:13px;font-weight:600;margin-top:6px}

.price-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;align-items:start}
.plan{border:1px solid var(--line);border-radius:20px;padding:30px;background:#fff;position:relative}
.plan.pop{border:2px solid var(--brand);box-shadow:0 20px 50px -20px rgba(79,70,229,.30)}
.plan .tag{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--brand);color:#fff;font-size:12px;font-weight:800;padding:5px 14px;border-radius:999px}
.plan h3{font-size:20px}
.plan .desc{color:var(--muted);font-size:14px;margin:4px 0 16px}
.plan .price{font-size:40px;font-weight:800;letter-spacing:-.02em}
.plan .price small{font-size:15px;font-weight:600;color:var(--muted)}
.plan ul{list-style:none;margin:20px 0;display:grid;gap:10px}
.plan ul li{padding-left:26px;position:relative;color:var(--muted);font-size:15px}
.plan ul li::before{content:"✓";position:absolute;left:0;color:var(--brand);font-weight:800}
.plan .btn{width:100%;justify-content:center;margin-top:6px}

/* faq / prose */
.faq{max-width:760px;margin:0 auto;display:grid;gap:14px}
.faq details{border:1px solid var(--line);border-radius:14px;padding:0 20px;background:#fff}
.faq summary{padding:18px 0;font-weight:700;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:var(--brand);font-size:22px;font-weight:400}
.faq details[open] summary::after{content:"–"}
.faq details p{padding:0 0 18px;color:var(--muted)}
.prose{max-width:760px;margin:0 auto}
.prose h2{text-align:left;font-size:22px;margin:32px 0 10px}
.prose p,.prose li{color:var(--muted);margin-bottom:12px}
.prose ul{padding-left:22px;margin-bottom:12px}
.prose a{color:var(--brand);font-weight:600}

/* contact + about */
.split{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:start}
.cbox{border:1px solid var(--line);border-radius:16px;padding:24px;background:#fff}
.cbox h3{font-size:17px;margin-bottom:12px}
.field{display:block;margin-bottom:14px}
.field span{display:block;font-size:13px;font-weight:700;margin-bottom:6px}
.field input,.field textarea{width:100%;border:1px solid var(--line-2);border-radius:10px;padding:11px 13px;font:inherit;font-size:15px}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--brand)}
.clist{display:grid;gap:16px}
.clist a,.clist div{display:flex;gap:14px;align-items:flex-start}
.clist .ic{margin-bottom:0}
.clist .lb{font-size:12px;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.05em}
.clist .vv{font-weight:700}
.stats-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:18px;text-align:center}
.stats-row .n{font-size:36px;font-weight:800;color:var(--brand);letter-spacing:-.02em}
.stats-row .l{color:var(--muted);font-size:14px}

/* download page */
.install{display:inline-flex;align-items:center;gap:12px;background:var(--brand);color:#fff;font-weight:800;
  font-size:20px;padding:20px 40px;border-radius:16px;box-shadow:0 14px 34px rgba(79,70,229,.30);transition:.15s}
.install:hover{background:var(--brand-dark);transform:translateY(-2px);box-shadow:0 18px 40px rgba(79,70,229,.38)}
.install .i{width:24px;height:24px;color:#fff}
.btn .i{width:18px;height:18px}
.dl-meta{margin-top:16px;color:var(--muted);font-size:14px}
.dl-meta a{color:var(--brand);font-weight:700}
.dl-meta .dot{margin:0 8px;color:#cbd5e1}
.steps{max-width:720px;margin:0 auto;display:grid;gap:16px}
.step{display:flex;gap:16px;align-items:flex-start;border:1px solid var(--line);border-radius:16px;padding:20px 22px;background:#fff}
.step .n{flex:none;width:36px;height:36px;border-radius:50%;background:var(--soft);color:var(--brand);font-weight:800;display:grid;place-items:center}
.step h3{font-size:17px;margin-bottom:3px}
.step p{color:var(--muted);font-size:15px}
.note{max-width:720px;margin:26px auto 0;background:var(--soft);border:1px solid var(--line);border-radius:14px;padding:16px 18px;color:#3730a3;font-size:14px}
.note b{color:#3730a3}
.feat{max-width:720px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:14px}
.fc{border:1px solid var(--line);border-radius:14px;padding:18px;background:#fff}
.fc .ic{width:44px;height:44px;background:var(--soft);color:var(--brand);margin-bottom:10px}
.fc .ic .i{width:22px;height:22px}
.fc h4{font-size:15px;margin-bottom:3px}
.fc p{color:var(--muted);font-size:14px}

/* responsive */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;text-align:center}
  .hero .sub{margin-left:auto;margin-right:auto}
  .cta{justify-content:center}
  .phone-stage{min-height:0;margin-top:30px}
  .split{grid-template-columns:1fr}
  .stat-grid{grid-template-columns:repeat(2,1fr)}
  .foot-grid{grid-template-columns:1fr 1fr}
  .pos-wrap{grid-template-columns:1fr}
}
/* Tablet (768–900px): keep the dashboard demo but tighten it so it fits. */
@media (min-width:768px) and (max-width:900px){
  .dapp{height:452px}
  .dside{width:168px}
  .dnav{font-size:12.5px;padding:7px 9px}
  .dscroll{padding:16px}
}
@media (max-width:680px){
  .nav-links{position:fixed;inset:66px 0 auto 0;flex-direction:column;align-items:stretch;background:#fff;
    border-bottom:1px solid var(--line);padding:12px 16px 18px;gap:4px;display:none;box-shadow:0 20px 40px -20px rgba(15,23,42,.2)}
  .nav-links.open{display:flex}
  .nav-links a.small{padding:12px}
  .nav-links .btn{margin-top:6px;justify-content:center}
  .nav-toggle{display:block}
  .pl-grid{grid-template-columns:repeat(2,1fr)}
  .foot-grid{grid-template-columns:1fr}
  .pos-grid{grid-template-columns:repeat(2,1fr)}
}
/* The interactive dashboard mockup is desktop/tablet only.
   Below 768px (phones) it's hidden — the phone storefront tells the mobile story. */
@media (max-width:767px){
  .dash-demo{display:none}
}
/* Touch devices can't hover to straighten — show the mockups flat & usable. */
@media (hover:none){
  .phone{transform:none!important}
  .macbook{transform:none!important}
}

/* ---- icon set (feather/lucide style, as CSS masks) ---- */
.i-bill{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M14%202H6a2%202%200%200%200-2%202v16a2%202%200%200%200%202%202h12a2%202%200%200%200%202-2V8z%27%2F%3E%3Cpolyline%20points%3D%2714%202%2014%208%2020%208%27%2F%3E%3Cline%20x1%3D%2716%27%20y1%3D%2713%27%20x2%3D%278%27%20y2%3D%2713%27%2F%3E%3Cline%20x1%3D%2716%27%20y1%3D%2717%27%20x2%3D%278%27%20y2%3D%2717%27%2F%3E%3Cline%20x1%3D%2710%27%20y1%3D%279%27%20x2%3D%278%27%20y2%3D%279%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M14%202H6a2%202%200%200%200-2%202v16a2%202%200%200%200%202%202h12a2%202%200%200%200%202-2V8z%27%2F%3E%3Cpolyline%20points%3D%2714%202%2014%208%2020%208%27%2F%3E%3Cline%20x1%3D%2716%27%20y1%3D%2713%27%20x2%3D%278%27%20y2%3D%2713%27%2F%3E%3Cline%20x1%3D%2716%27%20y1%3D%2717%27%20x2%3D%278%27%20y2%3D%2717%27%2F%3E%3Cline%20x1%3D%2710%27%20y1%3D%279%27%20x2%3D%278%27%20y2%3D%279%27%2F%3E%3C%2Fsvg%3E")}
.i-package{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2716.5%27%20y1%3D%279.4%27%20x2%3D%277.5%27%20y2%3D%274.21%27%2F%3E%3Cpath%20d%3D%27M21%2016V8a2%202%200%200%200-1-1.73l-7-4a2%202%200%200%200-2%200l-7%204A2%202%200%200%200%203%208v8a2%202%200%200%200%201%201.73l7%204a2%202%200%200%200%202%200l7-4A2%202%200%200%200%2021%2016z%27%2F%3E%3Cpolyline%20points%3D%273.27%206.96%2012%2012.01%2020.73%206.96%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2722.08%27%20x2%3D%2712%27%20y2%3D%2712%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2716.5%27%20y1%3D%279.4%27%20x2%3D%277.5%27%20y2%3D%274.21%27%2F%3E%3Cpath%20d%3D%27M21%2016V8a2%202%200%200%200-1-1.73l-7-4a2%202%200%200%200-2%200l-7%204A2%202%200%200%200%203%208v8a2%202%200%200%200%201%201.73l7%204a2%202%200%200%200%202%200l7-4A2%202%200%200%200%2021%2016z%27%2F%3E%3Cpolyline%20points%3D%273.27%206.96%2012%2012.01%2020.73%206.96%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2722.08%27%20x2%3D%2712%27%20y2%3D%2712%27%2F%3E%3C%2Fsvg%3E")}
.i-users{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M17%2021v-2a4%204%200%200%200-4-4H5a4%204%200%200%200-4%204v2%27%2F%3E%3Ccircle%20cx%3D%279%27%20cy%3D%277%27%20r%3D%274%27%2F%3E%3Cpath%20d%3D%27M23%2021v-2a4%204%200%200%200-3-3.87%27%2F%3E%3Cpath%20d%3D%27M16%203.13a4%204%200%200%201%200%207.75%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M17%2021v-2a4%204%200%200%200-4-4H5a4%204%200%200%200-4%204v2%27%2F%3E%3Ccircle%20cx%3D%279%27%20cy%3D%277%27%20r%3D%274%27%2F%3E%3Cpath%20d%3D%27M23%2021v-2a4%204%200%200%200-3-3.87%27%2F%3E%3Cpath%20d%3D%27M16%203.13a4%204%200%200%201%200%207.75%27%2F%3E%3C%2Fsvg%3E")}
.i-chart{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2718%27%20y1%3D%2720%27%20x2%3D%2718%27%20y2%3D%2710%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2720%27%20x2%3D%2712%27%20y2%3D%274%27%2F%3E%3Cline%20x1%3D%276%27%20y1%3D%2720%27%20x2%3D%276%27%20y2%3D%2714%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2718%27%20y1%3D%2720%27%20x2%3D%2718%27%20y2%3D%2710%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2720%27%20x2%3D%2712%27%20y2%3D%274%27%2F%3E%3Cline%20x1%3D%276%27%20y1%3D%2720%27%20x2%3D%276%27%20y2%3D%2714%27%2F%3E%3C%2Fsvg%3E")}
.i-branch{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%276%27%20y1%3D%273%27%20x2%3D%276%27%20y2%3D%2715%27%2F%3E%3Ccircle%20cx%3D%2718%27%20cy%3D%276%27%20r%3D%273%27%2F%3E%3Ccircle%20cx%3D%276%27%20cy%3D%2718%27%20r%3D%273%27%2F%3E%3Cpath%20d%3D%27M18%209a9%209%200%200%201-9%209%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%276%27%20y1%3D%273%27%20x2%3D%276%27%20y2%3D%2715%27%2F%3E%3Ccircle%20cx%3D%2718%27%20cy%3D%276%27%20r%3D%273%27%2F%3E%3Ccircle%20cx%3D%276%27%20cy%3D%2718%27%20r%3D%273%27%2F%3E%3Cpath%20d%3D%27M18%209a9%209%200%200%201-9%209%27%2F%3E%3C%2Fsvg%3E")}
.i-tag{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M20.59%2013.41l-7.17%207.17a2%202%200%200%201-2.83%200L2%2012V2h10l8.59%208.59a2%202%200%200%201%200%202.82z%27%2F%3E%3Cline%20x1%3D%277%27%20y1%3D%277%27%20x2%3D%277.01%27%20y2%3D%277%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M20.59%2013.41l-7.17%207.17a2%202%200%200%201-2.83%200L2%2012V2h10l8.59%208.59a2%202%200%200%201%200%202.82z%27%2F%3E%3Cline%20x1%3D%277%27%20y1%3D%277%27%20x2%3D%277.01%27%20y2%3D%277%27%2F%3E%3C%2Fsvg%3E")}
.i-bag{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M6%202%203%206v14a2%202%200%200%200%202%202h14a2%202%200%200%200%202-2V6l-3-4z%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%276%27%20x2%3D%2721%27%20y2%3D%276%27%2F%3E%3Cpath%20d%3D%27M16%2010a4%204%200%200%201-8%200%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M6%202%203%206v14a2%202%200%200%200%202%202h14a2%202%200%200%200%202-2V6l-3-4z%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%276%27%20x2%3D%2721%27%20y2%3D%276%27%2F%3E%3Cpath%20d%3D%27M16%2010a4%204%200%200%201-8%200%27%2F%3E%3C%2Fsvg%3E")}
.i-cart{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%279%27%20cy%3D%2721%27%20r%3D%271%27%2F%3E%3Ccircle%20cx%3D%2720%27%20cy%3D%2721%27%20r%3D%271%27%2F%3E%3Cpath%20d%3D%27M1%201h4l2.68%2013.39a2%202%200%200%200%202%201.61h9.72a2%202%200%200%200%202-1.61L23%206H6%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%279%27%20cy%3D%2721%27%20r%3D%271%27%2F%3E%3Ccircle%20cx%3D%2720%27%20cy%3D%2721%27%20r%3D%271%27%2F%3E%3Cpath%20d%3D%27M1%201h4l2.68%2013.39a2%202%200%200%200%202%201.61h9.72a2%202%200%200%200%202-1.61L23%206H6%27%2F%3E%3C%2Fsvg%3E")}
.i-shirt{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M20.38%203.46%2016%202a4%204%200%200%201-8%200L3.62%203.46a2%202%200%200%200-1.34%202.23l.58%203.47a1%201%200%200%200%20.99.84H6v10a2%202%200%200%200%202%202h8a2%202%200%200%200%202-2V10h2.15a1%201%200%200%200%20.99-.84l.58-3.47a2%202%200%200%200-1.34-2.23z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M20.38%203.46%2016%202a4%204%200%200%201-8%200L3.62%203.46a2%202%200%200%200-1.34%202.23l.58%203.47a1%201%200%200%200%20.99.84H6v10a2%202%200%200%200%202%202h8a2%202%200%200%200%202-2V10h2.15a1%201%200%200%200%20.99-.84l.58-3.47a2%202%200%200%200-1.34-2.23z%27%2F%3E%3C%2Fsvg%3E")}
.i-phone{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%275%27%20y%3D%272%27%20width%3D%2714%27%20height%3D%2720%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2718%27%20x2%3D%2712.01%27%20y2%3D%2718%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%275%27%20y%3D%272%27%20width%3D%2714%27%20height%3D%2720%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2718%27%20x2%3D%2712.01%27%20y2%3D%2718%27%2F%3E%3C%2Fsvg%3E")}
.i-printer{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%276%209%206%202%2018%202%2018%209%27%2F%3E%3Cpath%20d%3D%27M6%2018H4a2%202%200%200%201-2-2v-5a2%202%200%200%201%202-2h16a2%202%200%200%201%202%202v5a2%202%200%200%201-2%202h-2%27%2F%3E%3Crect%20x%3D%276%27%20y%3D%2714%27%20width%3D%2712%27%20height%3D%278%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%276%209%206%202%2018%202%2018%209%27%2F%3E%3Cpath%20d%3D%27M6%2018H4a2%202%200%200%201-2-2v-5a2%202%200%200%201%202-2h16a2%202%200%200%201%202%202v5a2%202%200%200%201-2%202h-2%27%2F%3E%3Crect%20x%3D%276%27%20y%3D%2714%27%20width%3D%2712%27%20height%3D%278%27%2F%3E%3C%2Fsvg%3E")}
.i-cloud{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M18%2010h-1.26A8%208%200%201%200%209%2020h9a5%205%200%200%200%200-10z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M18%2010h-1.26A8%208%200%201%200%209%2020h9a5%205%200%200%200%200-10z%27%2F%3E%3C%2Fsvg%3E")}
.i-refresh{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%2723%204%2023%2010%2017%2010%27%2F%3E%3Cpolyline%20points%3D%271%2020%201%2014%207%2014%27%2F%3E%3Cpath%20d%3D%27M3.51%209a9%209%200%200%201%2014.85-3.36L23%2010M1%2014l4.64%204.36A9%209%200%200%200%2020.49%2015%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%2723%204%2023%2010%2017%2010%27%2F%3E%3Cpolyline%20points%3D%271%2020%201%2014%207%2014%27%2F%3E%3Cpath%20d%3D%27M3.51%209a9%209%200%200%201%2014.85-3.36L23%2010M1%2014l4.64%204.36A9%209%200%200%200%2020.49%2015%27%2F%3E%3C%2Fsvg%3E")}
.i-monitor{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%272%27%20y%3D%273%27%20width%3D%2720%27%20height%3D%2714%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3Cline%20x1%3D%278%27%20y1%3D%2721%27%20x2%3D%2716%27%20y2%3D%2721%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2717%27%20x2%3D%2712%27%20y2%3D%2721%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%272%27%20y%3D%273%27%20width%3D%2720%27%20height%3D%2714%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3Cline%20x1%3D%278%27%20y1%3D%2721%27%20x2%3D%2716%27%20y2%3D%2721%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2717%27%20x2%3D%2712%27%20y2%3D%2721%27%2F%3E%3C%2Fsvg%3E")}
.i-zap{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolygon%20points%3D%2713%202%203%2014%2012%2014%2011%2022%2021%2010%2012%2010%2013%202%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolygon%20points%3D%2713%202%203%2014%2012%2014%2011%2022%2021%2010%2012%2010%2013%202%27%2F%3E%3C%2Fsvg%3E")}
.i-support{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%2710%27%2F%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%274%27%2F%3E%3Cline%20x1%3D%274.93%27%20y1%3D%274.93%27%20x2%3D%279.17%27%20y2%3D%279.17%27%2F%3E%3Cline%20x1%3D%2714.83%27%20y1%3D%2714.83%27%20x2%3D%2719.07%27%20y2%3D%2719.07%27%2F%3E%3Cline%20x1%3D%2714.83%27%20y1%3D%279.17%27%20x2%3D%2719.07%27%20y2%3D%274.93%27%2F%3E%3Cline%20x1%3D%274.93%27%20y1%3D%2719.07%27%20x2%3D%279.17%27%20y2%3D%2714.83%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%2710%27%2F%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%274%27%2F%3E%3Cline%20x1%3D%274.93%27%20y1%3D%274.93%27%20x2%3D%279.17%27%20y2%3D%279.17%27%2F%3E%3Cline%20x1%3D%2714.83%27%20y1%3D%2714.83%27%20x2%3D%2719.07%27%20y2%3D%2719.07%27%2F%3E%3Cline%20x1%3D%2714.83%27%20y1%3D%279.17%27%20x2%3D%2719.07%27%20y2%3D%274.93%27%2F%3E%3Cline%20x1%3D%274.93%27%20y1%3D%2719.07%27%20x2%3D%279.17%27%20y2%3D%2714.83%27%2F%3E%3C%2Fsvg%3E")}
.i-lock{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%2711%27%20width%3D%2718%27%20height%3D%2711%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3Cpath%20d%3D%27M7%2011V7a5%205%200%200%201%2010%200v4%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%2711%27%20width%3D%2718%27%20height%3D%2711%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3Cpath%20d%3D%27M7%2011V7a5%205%200%200%201%2010%200v4%27%2F%3E%3C%2Fsvg%3E")}
.i-chat{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2011.5a8.38%208.38%200%200%201-.9%203.8%208.5%208.5%200%200%201-7.6%204.7%208.38%208.38%200%200%201-3.8-.9L3%2021l1.9-5.7a8.38%208.38%200%200%201-.9-3.8%208.5%208.5%200%200%201%204.7-7.6%208.38%208.38%200%200%201%203.8-.9h.5a8.48%208.48%200%200%201%208%208v.5z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2011.5a8.38%208.38%200%200%201-.9%203.8%208.5%208.5%200%200%201-7.6%204.7%208.38%208.38%200%200%201-3.8-.9L3%2021l1.9-5.7a8.38%208.38%200%200%201-.9-3.8%208.5%208.5%200%200%201%204.7-7.6%208.38%208.38%200%200%201%203.8-.9h.5a8.48%208.48%200%200%201%208%208v.5z%27%2F%3E%3C%2Fsvg%3E")}
.i-mail{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M4%204h16c1.1%200%202%20.9%202%202v12c0%201.1-.9%202-2%202H4c-1.1%200-2-.9-2-2V6c0-1.1.9-2%202-2z%27%2F%3E%3Cpolyline%20points%3D%2722%2C6%2012%2C13%202%2C6%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M4%204h16c1.1%200%202%20.9%202%202v12c0%201.1-.9%202-2%202H4c-1.1%200-2-.9-2-2V6c0-1.1.9-2%202-2z%27%2F%3E%3Cpolyline%20points%3D%2722%2C6%2012%2C13%202%2C6%27%2F%3E%3C%2Fsvg%3E")}
.i-call{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72%2012.84%2012.84%200%200%200%20.7%202.81%202%202%200%200%201-.45%202.11L8.09%209.91a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45%2012.84%2012.84%200%200%200%202.81.7A2%202%200%200%201%2022%2016.92z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72%2012.84%2012.84%200%200%200%20.7%202.81%202%202%200%200%201-.45%202.11L8.09%209.91a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45%2012.84%2012.84%200%200%200%202.81.7A2%202%200%200%201%2022%2016.92z%27%2F%3E%3C%2Fsvg%3E")}
.i-search{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2711%27%20cy%3D%2711%27%20r%3D%278%27%2F%3E%3Cline%20x1%3D%2721%27%20y1%3D%2721%27%20x2%3D%2716.65%27%20y2%3D%2716.65%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2711%27%20cy%3D%2711%27%20r%3D%278%27%2F%3E%3Cline%20x1%3D%2721%27%20y1%3D%2721%27%20x2%3D%2716.65%27%20y2%3D%2716.65%27%2F%3E%3C%2Fsvg%3E")}
.i-download{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2015v4a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2v-4%27%2F%3E%3Cpolyline%20points%3D%277%2010%2012%2015%2017%2010%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2715%27%20x2%3D%2712%27%20y2%3D%273%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2015v4a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2v-4%27%2F%3E%3Cpolyline%20points%3D%277%2010%2012%2015%2017%2010%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2715%27%20x2%3D%2712%27%20y2%3D%273%27%2F%3E%3C%2Fsvg%3E")}
.i-chevron{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%276%209%2012%2015%2018%209%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%276%209%2012%2015%2018%209%27%2F%3E%3C%2Fsvg%3E")}
.i-windows{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%273%27%20width%3D%277.5%27%20height%3D%277.5%27%2F%3E%3Crect%20x%3D%2713.5%27%20y%3D%273%27%20width%3D%277.5%27%20height%3D%277.5%27%2F%3E%3Crect%20x%3D%273%27%20y%3D%2713.5%27%20width%3D%277.5%27%20height%3D%277.5%27%2F%3E%3Crect%20x%3D%2713.5%27%20y%3D%2713.5%27%20width%3D%277.5%27%20height%3D%277.5%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%273%27%20width%3D%277.5%27%20height%3D%277.5%27%2F%3E%3Crect%20x%3D%2713.5%27%20y%3D%273%27%20width%3D%277.5%27%20height%3D%277.5%27%2F%3E%3Crect%20x%3D%273%27%20y%3D%2713.5%27%20width%3D%277.5%27%20height%3D%277.5%27%2F%3E%3Crect%20x%3D%2713.5%27%20y%3D%2713.5%27%20width%3D%277.5%27%20height%3D%277.5%27%2F%3E%3C%2Fsvg%3E")}
.i-menu{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%273%27%20y1%3D%276%27%20x2%3D%2721%27%20y2%3D%276%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%2712%27%20x2%3D%2721%27%20y2%3D%2712%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%2718%27%20x2%3D%2721%27%20y2%3D%2718%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%273%27%20y1%3D%276%27%20x2%3D%2721%27%20y2%3D%276%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%2712%27%20x2%3D%2721%27%20y2%3D%2712%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%2718%27%20x2%3D%2721%27%20y2%3D%2718%27%2F%3E%3C%2Fsvg%3E")}
.i-close{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2718%27%20y1%3D%276%27%20x2%3D%276%27%20y2%3D%2718%27%2F%3E%3Cline%20x1%3D%276%27%20y1%3D%276%27%20x2%3D%2718%27%20y2%3D%2718%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2718%27%20y1%3D%276%27%20x2%3D%276%27%20y2%3D%2718%27%2F%3E%3Cline%20x1%3D%276%27%20y1%3D%276%27%20x2%3D%2718%27%20y2%3D%2718%27%2F%3E%3C%2Fsvg%3E")}
.i-home{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%209l9-7%209%207v11a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2z%27%2F%3E%3Cpolyline%20points%3D%279%2022%209%2012%2015%2012%2015%2022%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%209l9-7%209%207v11a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2z%27%2F%3E%3Cpolyline%20points%3D%279%2022%209%2012%2015%2012%2015%2022%27%2F%3E%3C%2Fsvg%3E")}
.i-grid{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%273%27%20width%3D%277%27%20height%3D%277%27%2F%3E%3Crect%20x%3D%2714%27%20y%3D%273%27%20width%3D%277%27%20height%3D%277%27%2F%3E%3Crect%20x%3D%2714%27%20y%3D%2714%27%20width%3D%277%27%20height%3D%277%27%2F%3E%3Crect%20x%3D%273%27%20y%3D%2714%27%20width%3D%277%27%20height%3D%277%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%273%27%20width%3D%277%27%20height%3D%277%27%2F%3E%3Crect%20x%3D%2714%27%20y%3D%273%27%20width%3D%277%27%20height%3D%277%27%2F%3E%3Crect%20x%3D%2714%27%20y%3D%2714%27%20width%3D%277%27%20height%3D%277%27%2F%3E%3Crect%20x%3D%273%27%20y%3D%2714%27%20width%3D%277%27%20height%3D%277%27%2F%3E%3C%2Fsvg%3E")}
.i-clock{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%2710%27%2F%3E%3Cpolyline%20points%3D%2712%206%2012%2012%2016%2014%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%2710%27%2F%3E%3Cpolyline%20points%3D%2712%206%2012%2012%2016%2014%27%2F%3E%3C%2Fsvg%3E")}
.i-settings{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%273%27%2F%3E%3Cpath%20d%3D%27M19.4%2015a1.65%201.65%200%200%200%20.33%201.82l.06.06a2%202%200%201%201-2.83%202.83l-.06-.06a1.65%201.65%200%200%200-1.82-.33%201.65%201.65%200%200%200-1%201.51V21a2%202%200%200%201-4%200v-.09A1.65%201.65%200%200%200%209%2019.4a1.65%201.65%200%200%200-1.82.33l-.06.06a2%202%200%201%201-2.83-2.83l.06-.06a1.65%201.65%200%200%200%20.33-1.82%201.65%201.65%200%200%200-1.51-1H3a2%202%200%200%201%200-4h.09A1.65%201.65%200%200%200%204.6%209a1.65%201.65%200%200%200-.33-1.82l-.06-.06a2%202%200%201%201%202.83-2.83l.06.06a1.65%201.65%200%200%200%201.82.33H9a1.65%201.65%200%200%200%201-1.51V3a2%202%200%200%201%204%200v.09a1.65%201.65%200%200%200%201%201.51%201.65%201.65%200%200%200%201.82-.33l.06-.06a2%202%200%201%201%202.83%202.83l-.06.06a1.65%201.65%200%200%200-.33%201.82V9a1.65%201.65%200%200%200%201.51%201H21a2%202%200%200%201%200%204h-.09a1.65%201.65%200%200%200-1.51%201z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%273%27%2F%3E%3Cpath%20d%3D%27M19.4%2015a1.65%201.65%200%200%200%20.33%201.82l.06.06a2%202%200%201%201-2.83%202.83l-.06-.06a1.65%201.65%200%200%200-1.82-.33%201.65%201.65%200%200%200-1%201.51V21a2%202%200%200%201-4%200v-.09A1.65%201.65%200%200%200%209%2019.4a1.65%201.65%200%200%200-1.82.33l-.06.06a2%202%200%201%201-2.83-2.83l.06-.06a1.65%201.65%200%200%200%20.33-1.82%201.65%201.65%200%200%200-1.51-1H3a2%202%200%200%201%200-4h.09A1.65%201.65%200%200%200%204.6%209a1.65%201.65%200%200%200-.33-1.82l-.06-.06a2%202%200%201%201%202.83-2.83l.06.06a1.65%201.65%200%200%200%201.82.33H9a1.65%201.65%200%200%200%201-1.51V3a2%202%200%200%201%204%200v.09a1.65%201.65%200%200%200%201%201.51%201.65%201.65%200%200%200%201.82-.33l.06-.06a2%202%200%201%201%202.83%202.83l-.06.06a1.65%201.65%200%200%200-.33%201.82V9a1.65%201.65%200%200%200%201.51%201H21a2%202%200%200%201%200%204h-.09a1.65%201.65%200%200%200-1.51%201z%27%2F%3E%3C%2Fsvg%3E")}
.i-plus{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2712%27%20y1%3D%275%27%20x2%3D%2712%27%20y2%3D%2719%27%2F%3E%3Cline%20x1%3D%275%27%20y1%3D%2712%27%20x2%3D%2719%27%20y2%3D%2712%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2712%27%20y1%3D%275%27%20x2%3D%2712%27%20y2%3D%2719%27%2F%3E%3Cline%20x1%3D%275%27%20y1%3D%2712%27%20x2%3D%2719%27%20y2%3D%2712%27%2F%3E%3C%2Fsvg%3E")}
.i-bell{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M18%208a6%206%200%200%200-12%200c0%207-3%209-3%209h18s-3-2-3-9%27%2F%3E%3Cpath%20d%3D%27M13.73%2021a2%202%200%200%201-3.46%200%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M18%208a6%206%200%200%200-12%200c0%207-3%209-3%209h18s-3-2-3-9%27%2F%3E%3Cpath%20d%3D%27M13.73%2021a2%202%200%200%201-3.46%200%27%2F%3E%3C%2Fsvg%3E")}
.i-approve{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M16%204h2a2%202%200%200%201%202%202v14a2%202%200%200%201-2%202H6a2%202%200%200%201-2-2V6a2%202%200%200%201%202-2h2%27%2F%3E%3Crect%20x%3D%278%27%20y%3D%272%27%20width%3D%278%27%20height%3D%274%27%20rx%3D%271%27%2F%3E%3Cpath%20d%3D%27m9%2014%202%202%204-4%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M16%204h2a2%202%200%200%201%202%202v14a2%202%200%200%201-2%202H6a2%202%200%200%201-2-2V6a2%202%200%200%201%202-2h2%27%2F%3E%3Crect%20x%3D%278%27%20y%3D%272%27%20width%3D%278%27%20height%3D%274%27%20rx%3D%271%27%2F%3E%3Cpath%20d%3D%27m9%2014%202%202%204-4%27%2F%3E%3C%2Fsvg%3E")}
.i-calendar{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%274%27%20width%3D%2718%27%20height%3D%2718%27%20rx%3D%272%27%2F%3E%3Cline%20x1%3D%2716%27%20y1%3D%272%27%20x2%3D%2716%27%20y2%3D%276%27%2F%3E%3Cline%20x1%3D%278%27%20y1%3D%272%27%20x2%3D%278%27%20y2%3D%276%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%2710%27%20x2%3D%2721%27%20y2%3D%2710%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%274%27%20width%3D%2718%27%20height%3D%2718%27%20rx%3D%272%27%2F%3E%3Cline%20x1%3D%2716%27%20y1%3D%272%27%20x2%3D%2716%27%20y2%3D%276%27%2F%3E%3Cline%20x1%3D%278%27%20y1%3D%272%27%20x2%3D%278%27%20y2%3D%276%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%2710%27%20x2%3D%2721%27%20y2%3D%2710%27%2F%3E%3C%2Fsvg%3E")}
.i-star{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolygon%20points%3D%2712%202%2015%209%2022%209%2017%2014%2019%2021%2012%2017%205%2021%207%2014%202%209%209%209%2012%202%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolygon%20points%3D%2712%202%2015%209%2022%209%2017%2014%2019%2021%2012%2017%205%2021%207%2014%202%209%209%209%2012%202%27%2F%3E%3C%2Fsvg%3E")}
.i-list{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2710%27%20y1%3D%276%27%20x2%3D%2721%27%20y2%3D%276%27%2F%3E%3Cline%20x1%3D%2710%27%20y1%3D%2712%27%20x2%3D%2721%27%20y2%3D%2712%27%2F%3E%3Cline%20x1%3D%2710%27%20y1%3D%2718%27%20x2%3D%2721%27%20y2%3D%2718%27%2F%3E%3Cpolyline%20points%3D%273%206%204%207%206%205%27%2F%3E%3Cpolyline%20points%3D%273%2012%204%2013%206%2011%27%2F%3E%3Cpolyline%20points%3D%273%2018%204%2019%206%2017%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2710%27%20y1%3D%276%27%20x2%3D%2721%27%20y2%3D%276%27%2F%3E%3Cline%20x1%3D%2710%27%20y1%3D%2712%27%20x2%3D%2721%27%20y2%3D%2712%27%2F%3E%3Cline%20x1%3D%2710%27%20y1%3D%2718%27%20x2%3D%2721%27%20y2%3D%2718%27%2F%3E%3Cpolyline%20points%3D%273%206%204%207%206%205%27%2F%3E%3Cpolyline%20points%3D%273%2012%204%2013%206%2011%27%2F%3E%3Cpolyline%20points%3D%273%2018%204%2019%206%2017%27%2F%3E%3C%2Fsvg%3E")}
.i-wallet{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2012V7H5a2%202%200%200%201%200-4h14v4%27%2F%3E%3Cpath%20d%3D%27M3%205v14a2%202%200%200%200%202%202h16v-5%27%2F%3E%3Cpath%20d%3D%27M18%2012a2%202%200%200%200%200%204h4v-4z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2012V7H5a2%202%200%200%201%200-4h14v4%27%2F%3E%3Cpath%20d%3D%27M3%205v14a2%202%200%200%200%202%202h16v-5%27%2F%3E%3Cpath%20d%3D%27M18%2012a2%202%200%200%200%200%204h4v-4z%27%2F%3E%3C%2Fsvg%3E")}
.i-store{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%209l1.5-5h15L21%209%27%2F%3E%3Cpath%20d%3D%27M4.5%209V20a1%201%200%200%200%201%201h13a1%201%200%200%200%201-1V9%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%279%27%20x2%3D%2721%27%20y2%3D%279%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%209l1.5-5h15L21%209%27%2F%3E%3Cpath%20d%3D%27M4.5%209V20a1%201%200%200%200%201%201h13a1%201%200%200%200%201-1V9%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%279%27%20x2%3D%2721%27%20y2%3D%279%27%2F%3E%3C%2Fsvg%3E")}
.i-layers{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolygon%20points%3D%2712%202%202%207%2012%2012%2022%207%2012%202%27%2F%3E%3Cpolyline%20points%3D%272%2017%2012%2022%2022%2017%27%2F%3E%3Cpolyline%20points%3D%272%2012%2012%2017%2022%2012%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolygon%20points%3D%2712%202%202%207%2012%2012%2022%207%2012%202%27%2F%3E%3Cpolyline%20points%3D%272%2017%2012%2022%2022%2017%27%2F%3E%3Cpolyline%20points%3D%272%2012%2012%2017%2022%2012%27%2F%3E%3C%2Fsvg%3E")}
.i-inbox{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%2722%2012%2016%2012%2014%2015%2010%2015%208%2012%202%2012%27%2F%3E%3Cpath%20d%3D%27M5.45%205.11%202%2012v6a2%202%200%200%200%202%202h16a2%202%200%200%200%202-2v-6l-3.45-6.89A2%202%200%200%200%2016.76%204H7.24a2%202%200%200%200-1.79%201.11z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%2722%2012%2016%2012%2014%2015%2010%2015%208%2012%202%2012%27%2F%3E%3Cpath%20d%3D%27M5.45%205.11%202%2012v6a2%202%200%200%200%202%202h16a2%202%200%200%200%202-2v-6l-3.45-6.89A2%202%200%200%200%2016.76%204H7.24a2%202%200%200%200-1.79%201.11z%27%2F%3E%3C%2Fsvg%3E")}
.i-truck{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%271%27%20y%3D%273%27%20width%3D%2715%27%20height%3D%2713%27%2F%3E%3Cpolygon%20points%3D%2716%208%2020%208%2023%2011%2023%2016%2016%2016%2016%208%27%2F%3E%3Ccircle%20cx%3D%275.5%27%20cy%3D%2718.5%27%20r%3D%272.5%27%2F%3E%3Ccircle%20cx%3D%2718.5%27%20cy%3D%2718.5%27%20r%3D%272.5%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%271%27%20y%3D%273%27%20width%3D%2715%27%20height%3D%2713%27%2F%3E%3Cpolygon%20points%3D%2716%208%2020%208%2023%2011%2023%2016%2016%2016%2016%208%27%2F%3E%3Ccircle%20cx%3D%275.5%27%20cy%3D%2718.5%27%20r%3D%272.5%27%2F%3E%3Ccircle%20cx%3D%2718.5%27%20cy%3D%2718.5%27%20r%3D%272.5%27%2F%3E%3C%2Fsvg%3E")}
.i-scan{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%207V5a2%202%200%200%201%202-2h2%27%2F%3E%3Cpath%20d%3D%27M17%203h2a2%202%200%200%201%202%202v2%27%2F%3E%3Cpath%20d%3D%27M21%2017v2a2%202%200%200%201-2%202h-2%27%2F%3E%3Cpath%20d%3D%27M7%2021H5a2%202%200%200%201-2-2v-2%27%2F%3E%3Cline%20x1%3D%277%27%20y1%3D%2712%27%20x2%3D%2717%27%20y2%3D%2712%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%207V5a2%202%200%200%201%202-2h2%27%2F%3E%3Cpath%20d%3D%27M17%203h2a2%202%200%200%201%202%202v2%27%2F%3E%3Cpath%20d%3D%27M21%2017v2a2%202%200%200%201-2%202h-2%27%2F%3E%3Cpath%20d%3D%27M7%2021H5a2%202%200%200%201-2-2v-2%27%2F%3E%3Cline%20x1%3D%277%27%20y1%3D%2712%27%20x2%3D%2717%27%20y2%3D%2712%27%2F%3E%3C%2Fsvg%3E")}
.i-percent{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2719%27%20y1%3D%275%27%20x2%3D%275%27%20y2%3D%2719%27%2F%3E%3Ccircle%20cx%3D%276.5%27%20cy%3D%276.5%27%20r%3D%272.5%27%2F%3E%3Ccircle%20cx%3D%2717.5%27%20cy%3D%2717.5%27%20r%3D%272.5%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2719%27%20y1%3D%275%27%20x2%3D%275%27%20y2%3D%2719%27%2F%3E%3Ccircle%20cx%3D%276.5%27%20cy%3D%276.5%27%20r%3D%272.5%27%2F%3E%3Ccircle%20cx%3D%2717.5%27%20cy%3D%2717.5%27%20r%3D%272.5%27%2F%3E%3C%2Fsvg%3E")}
.i-user{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%278%27%20r%3D%275%27%2F%3E%3Cpath%20d%3D%27M20%2021a8%208%200%200%200-16%200%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%278%27%20r%3D%275%27%2F%3E%3Cpath%20d%3D%27M20%2021a8%208%200%200%200-16%200%27%2F%3E%3C%2Fsvg%3E")}
.i-card{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%271%27%20y%3D%274%27%20width%3D%2722%27%20height%3D%2716%27%20rx%3D%272%27%2F%3E%3Cline%20x1%3D%271%27%20y1%3D%2710%27%20x2%3D%2723%27%20y2%3D%2710%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%271%27%20y%3D%274%27%20width%3D%2722%27%20height%3D%2716%27%20rx%3D%272%27%2F%3E%3Cline%20x1%3D%271%27%20y1%3D%2710%27%20x2%3D%2723%27%20y2%3D%2710%27%2F%3E%3C%2Fsvg%3E")}
.i-sparkle{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%203l1.9%205.1L19%2010l-5.1%201.9L12%2017l-1.9-5.1L5%2010l5.1-1.9z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%203l1.9%205.1L19%2010l-5.1%201.9L12%2017l-1.9-5.1L5%2010l5.1-1.9z%27%2F%3E%3C%2Fsvg%3E")}
.i-globe{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%2710%27%2F%3E%3Cline%20x1%3D%272%27%20y1%3D%2712%27%20x2%3D%2722%27%20y2%3D%2712%27%2F%3E%3Cpath%20d%3D%27M12%202a15.3%2015.3%200%200%201%204%2010%2015.3%2015.3%200%200%201-4%2010%2015.3%2015.3%200%200%201-4-10%2015.3%2015.3%200%200%201%204-10z%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%2710%27%2F%3E%3Cline%20x1%3D%272%27%20y1%3D%2712%27%20x2%3D%2722%27%20y2%3D%2712%27%2F%3E%3Cpath%20d%3D%27M12%202a15.3%2015.3%200%200%201%204%2010%2015.3%2015.3%200%200%201-4%2010%2015.3%2015.3%200%200%201-4-10%2015.3%2015.3%200%200%201%204-10z%27%2F%3E%3C%2Fsvg%3E")}
.i-logout{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M9%2021H5a2%202%200%200%201-2-2V5a2%202%200%200%201%202-2h4%27%2F%3E%3Cpolyline%20points%3D%2716%2017%2021%2012%2016%207%27%2F%3E%3Cline%20x1%3D%2721%27%20y1%3D%2712%27%20x2%3D%279%27%20y2%3D%2712%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M9%2021H5a2%202%200%200%201-2-2V5a2%202%200%200%201%202-2h4%27%2F%3E%3Cpolyline%20points%3D%2716%2017%2021%2012%2016%207%27%2F%3E%3Cline%20x1%3D%2721%27%20y1%3D%2712%27%20x2%3D%279%27%20y2%3D%2712%27%2F%3E%3C%2Fsvg%3E")}

.i-camera{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M23%2019a2%202%200%200%201-2%202H3a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h4l2-3h6l2%203h4a2%202%200%200%201%202%202z%27%2F%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2713%27%20r%3D%274%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M23%2019a2%202%200%200%201-2%202H3a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h4l2-3h6l2%203h4a2%202%200%200%201%202%202z%27%2F%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2713%27%20r%3D%274%27%2F%3E%3C%2Fsvg%3E")}
.i-video{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M23%207l-7%205%207%205V7z%27%2F%3E%3Crect%20x%3D%271%27%20y%3D%275%27%20width%3D%2715%27%20height%3D%2714%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M23%207l-7%205%207%205V7z%27%2F%3E%3Crect%20x%3D%271%27%20y%3D%275%27%20width%3D%2715%27%20height%3D%2714%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3C%2Fsvg%3E")}
.i-image{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%273%27%20width%3D%2718%27%20height%3D%2718%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3Ccircle%20cx%3D%278.5%27%20cy%3D%278.5%27%20r%3D%271.5%27%2F%3E%3Cpolyline%20points%3D%2721%2015%2016%2010%205%2021%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%273%27%20width%3D%2718%27%20height%3D%2718%27%20rx%3D%272%27%20ry%3D%272%27%2F%3E%3Ccircle%20cx%3D%278.5%27%20cy%3D%278.5%27%20r%3D%271.5%27%2F%3E%3Cpolyline%20points%3D%2721%2015%2016%2010%205%2021%27%2F%3E%3C%2Fsvg%3E")}
.i-mic{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%201a3%203%200%200%200-3%203v8a3%203%200%200%200%206%200V4a3%203%200%200%200-3-3z%27%2F%3E%3Cpath%20d%3D%27M19%2010v2a7%207%200%200%201-14%200v-2%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2719%27%20x2%3D%2712%27%20y2%3D%2723%27%2F%3E%3Cline%20x1%3D%278%27%20y1%3D%2723%27%20x2%3D%2716%27%20y2%3D%2723%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%201a3%203%200%200%200-3%203v8a3%203%200%200%200%206%200V4a3%203%200%200%200-3-3z%27%2F%3E%3Cpath%20d%3D%27M19%2010v2a7%207%200%200%201-14%200v-2%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2719%27%20x2%3D%2712%27%20y2%3D%2723%27%2F%3E%3Cline%20x1%3D%278%27%20y1%3D%2723%27%20x2%3D%2716%27%20y2%3D%2723%27%2F%3E%3C%2Fsvg%3E")}

/* ---- flagship USP two-up (AI Studio + Online Store) ---- */
.flagships{display:grid;grid-template-columns:repeat(auto-fit,minmax(330px,1fr));gap:20px;margin-top:6px}
.flag{position:relative;border:1px solid var(--line);border-radius:20px;padding:30px;background:linear-gradient(180deg,#fff,var(--soft));transition:.15s;display:flex;flex-direction:column}
.flag:hover{transform:translateY(-3px);box-shadow:0 18px 40px rgba(79,70,229,.12)}
.flag .ic{width:52px;height:52px;border-radius:14px}
.flag .ic .i{width:27px;height:27px}
.flag .tag{position:absolute;top:22px;right:22px;font-size:11px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:var(--brand);background:#fff;border:1px solid var(--line);padding:4px 10px;border-radius:999px}
.flag h3{font-size:22px;letter-spacing:-.01em;margin:4px 0 8px}
.flag>p{color:var(--muted);margin-bottom:14px}
.flag ul{list-style:none;margin:0 0 18px;display:grid;gap:8px}
.flag ul li{color:var(--muted);font-size:14.5px;padding-left:24px;position:relative}
.flag ul li::before{content:"✓";position:absolute;left:0;color:var(--brand);font-weight:800}
.flag .flink{margin-top:auto;font-weight:700;color:var(--brand);font-size:15px;display:inline-flex;align-items:center;gap:6px}
.flag .flink .i{width:16px;height:16px}
.flag:hover .flink{gap:9px}

/* ---- AI Studio demo view (gallery of AI generations) ---- */
.gen-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;padding:14px 18px 18px}
.gen{aspect-ratio:3/4;border-radius:10px;background:linear-gradient(135deg,#e0e7ff,#c7d2fe);position:relative;overflow:hidden;border:1px solid var(--line)}
.gen.v{aspect-ratio:9/16;background:linear-gradient(160deg,#4338ca,#6d5efc)}
.gen .gbadge{position:absolute;left:6px;top:6px;font-size:9px;font-weight:800;background:rgba(255,255,255,.92);color:#4338ca;padding:1px 6px;border-radius:999px}
.gen .gplay{position:absolute;inset:0;display:grid;place-items:center}
.gen .gplay .i{width:26px;height:26px;color:#fff}
.i-play{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolygon%20points%3D%275%203%2019%2012%205%2021%205%203%27%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolygon%20points%3D%275%203%2019%2012%205%2021%205%203%27%2F%3E%3C%2Fsvg%3E")}

/* ---- pricing: AI Studio pay-as-you-go starter card + coming-soon plan ---- */
.starter{display:flex;flex-wrap:wrap;align-items:center;gap:24px;justify-content:space-between;border:2px solid var(--brand);border-radius:20px;padding:28px 30px;background:linear-gradient(180deg,#fff,var(--soft));box-shadow:0 20px 50px -24px rgba(79,70,229,.30);margin-bottom:26px}
.starter-main{display:flex;gap:18px;align-items:flex-start;flex:1 1 440px}
.starter .ic{flex:none}
.starter h3{font-size:21px;letter-spacing:-.01em;margin-bottom:6px}
.starter h3 .stag{font-size:11px;font-weight:800;color:var(--brand);background:#fff;border:1px solid var(--line);padding:3px 9px;border-radius:999px;margin-left:8px;vertical-align:middle;text-transform:uppercase;letter-spacing:.04em}
.starter p{color:var(--muted);font-size:15px;max-width:640px}
.starter-cta{flex:1 1 210px;text-align:center;border-left:1px solid var(--line);padding-left:24px}
.starter-price{font-size:40px;font-weight:800;letter-spacing:-.02em}
.starter-price small{font-size:15px;font-weight:600;color:var(--muted)}
.starter-sub{color:var(--muted);font-size:13px;margin:2px 0 14px}
.starter-cta .btn{width:100%;justify-content:center}
@media (max-width:640px){.starter-cta{border-left:none;border-top:1px solid var(--line);padding-left:0;padding-top:20px;text-align:left}}
.plan.soon{border-style:dashed}
.plan.soon .price{color:var(--muted);font-size:24px}
.plan.soon .btn{pointer-events:none;opacity:.5}
.plan .tag.tag-soon{background:#64748b}
