/*! tailwindcss v4.1.10 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-zinc-900: oklch(21% 0.006 285.885);
    --color-white: #fff;
    --radius-2xl: 1rem;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --font-body: Inter, Arial, sans-serif;
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .grid {
    display: grid;
  }
  .w-full {
    width: 100%;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .items-center {
    align-items: center;
  }
  .rounded-2xl {
    border-radius: var(--radius-2xl);
  }
  .bg-white {
    background-color: var(--color-white);
  }
  .font-body {
    font-family: var(--font-body);
  }
  .text-zinc-900 {
    color: var(--color-zinc-900);
  }
  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .md\:grid-cols-3 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .lg\:grid-cols-2 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
}

/* BitMaxWallet.com — template adaptation */
:root{--orange:#ff6a00;--green:#39ff14;--purple:#bc13fe;--ink:#19151f;--muted:#625b6b;--line:#e8e2ec;--paper:#faf8fd;--font-body:Inter,Arial,sans-serif;--font-heading:'Space Grotesk',Inter,Arial,sans-serif}html{scroll-behavior:smooth;scroll-padding-top:105px}body{font-family:var(--font-body);color:var(--ink);background:#fff;line-height:1.6;margin:0}h1,h2,h3,h4,.font-heading{font-family:var(--font-heading)}h1,h2,h3,h4{line-height:1.15;letter-spacing:-.035em}h1{font-weight:700}p{overflow-wrap:break-word}a{color:inherit}img,svg{max-width:100%}img{height:auto;display:block}button,summary,a{-webkit-tap-highlight-color:transparent}a:focus-visible,summary:focus-visible,[tabindex]:focus-visible{outline:3px solid #8a13bb;outline-offset:5px;border-radius:5px}::selection{background:#ddc0ff;color:#19151f}[id]{scroll-margin-top:105px}.skip-link{position:fixed;top:-100px;left:18px;z-index:100;background:#19151f;color:white;padding:12px 18px;border-radius:10px}.skip-link:focus{top:12px}.wrap,.max-w-7xl{width:100%;max-width:1280px;margin-inline:auto}.wrap{padding-inline:28px}.site-header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.97);border-bottom:1px solid var(--line);backdrop-filter:blur(12px)}.nav-shell{display:flex;align-items:center;justify-content:space-between;gap:26px;min-height:86px;position:relative}.brand{display:flex;align-items:center;gap:11px;text-decoration:none;flex-shrink:0}.brand img{width:39px;height:39px}.brand-name{font-family:var(--font-heading);font-size:23px;letter-spacing:-1px;font-weight:700}.brand-small{display:block;font-size:9px;letter-spacing:2.2px;color:#736777;font-weight:600;margin-top:0;line-height:1.3}.desktop-nav{display:flex;align-items:center;gap:23px}.nav-link{font-size:13px;font-weight:600;text-decoration:none;min-height:44px;display:inline-flex;align-items:center;gap:6px;white-space:nowrap}.nav-link:hover,.nav-link[aria-current=page]{color:#8420ad}.dot{width:6px;height:6px;border-radius:50%;display:inline-block;background:var(--purple);flex-shrink:0}.dot.orange{background:var(--orange)}.dot.green{background:#29c80d}.dot.purple{background:var(--purple)}.btn{display:inline-flex;align-items:center;justify-content:center;gap:13px;border:1px solid transparent;border-radius:10px;min-height:49px;padding:12px 21px;font-size:14px;font-weight:700;text-decoration:none;line-height:1.4;transition:transform .18s,box-shadow .18s,background .18s;text-align:center}.btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px #6a34731c}.btn-orange{background:linear-gradient(105deg,#ff6a00,#ff8b27);color:#201208}.btn-purple{background:white;border:1.5px solid #bc13fe;color:#70228e}.btn-dark{background:var(--ink);color:white}.btn-green{background:var(--green);color:#173011}.btn-small{min-height:42px;padding:10px 15px;font-size:12px}.mobile-nav{display:none}.mobile-nav>summary{list-style:none;min-height:46px;min-width:71px;border:1px solid var(--line);border-radius:9px;display:flex;align-items:center;justify-content:center;gap:8px;font-size:12px;font-weight:700;cursor:pointer}.mobile-nav>summary::-webkit-details-marker{display:none}.mobile-nav[open]>summary{background:#f4e8ff;border-color:#bc13fe}.mobile-panel{position:absolute;top:calc(100% + 9px);right:0;left:0;background:white;border:1px solid var(--line);padding:18px 22px;border-radius:15px;box-shadow:0 16px 35px #33143d25;max-height:calc(100vh - 110px);overflow:auto}.mobile-panel .nav-link{display:flex;border-bottom:1px solid #f2edf5;min-height:47px;font-size:15px}.mobile-panel .btn{margin-top:12px;width:100%}.kicker{display:flex;align-items:center;flex-wrap:wrap;gap:10px;color:#6c5b74;font-size:10px;font-weight:700;letter-spacing:2.05px;line-height:1.6;text-transform:uppercase;margin:0 0 19px}.kicker:before{content:'';width:20px;height:2px;background:var(--purple);display:inline-block}.hero{position:relative;background:radial-gradient(ellipse at 91% 25%,#efe0ff8c,transparent 45%),linear-gradient(125deg,#fff 24%,#fcf9ff 70%,#f6fff2);padding:62px 0 52px}.hero-grid{display:grid;grid-template-columns:1fr 1.03fr;gap:42px;align-items:center}.hero h1{font-size:clamp(42px,4.7vw,64px);line-height:1.07;letter-spacing:-.058em;margin:0 0 23px}.hero h1 span{display:block}.hero p.lead{font-size:17px;line-height:1.85;max-width:540px;color:var(--muted);margin:0 0 24px}.hero .actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}.hero-badges{display:flex;align-items:center;gap:15px;flex-wrap:wrap;margin-top:26px;font-size:10px;color:#645a6d;font-weight:500}.hero-badges span{display:flex;gap:5px;align-items:center}.hero-visual img{width:100%;height:auto}.hero-visual{min-width:0}.accent-text{background:linear-gradient(100deg,#a14308,#7522a0);background-clip:text;-webkit-background-clip:text;color:transparent}.hero-foot{display:flex;gap:27px;align-items:center;margin-top:28px;padding-top:21px;border-top:1px solid var(--line);max-width:500px}.hero-foot strong{font-family:var(--font-heading);font-size:27px;line-height:1}.hero-foot span{display:block;font-size:10px;letter-spacing:.5px;color:var(--muted)}.network-strip{border-block:1px solid var(--line);padding:17px 0;background:white}.strip-inner{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap}.strip-label{color:#7d7386;font-size:9px;font-weight:700;letter-spacing:2px}.strip-coins,.strip-os{display:flex;align-items:center;gap:24px;font-size:13px;font-weight:600}.strip-coins span{display:flex;align-items:center;gap:7px}.strip-os{font-size:12px;color:#6b6270;gap:21px}.section-pad{padding-block:83px}.section-top{display:flex;gap:26px;justify-content:space-between;align-items:flex-end;margin-bottom:35px}.section-top h2,.section-heading{font-size:clamp(28px,3.5vw,39px);font-weight:700;letter-spacing:-.045em;margin:0 0 12px}.section-top p{max-width:640px;font-size:15px;line-height:1.8;color:var(--muted);margin:0}.section-top .kicker{margin-bottom:12px}.text-link{display:inline-flex;align-items:center;gap:13px;min-height:44px;font-size:13px;font-weight:700;text-decoration:none;white-space:nowrap}.text-link:hover{text-decoration:underline;text-underline-offset:4px}.coin-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:23px}.crypto-card{border:1.5px solid var(--line);border-radius:22px;padding:28px;background:white;position:relative;transition:box-shadow .2s,transform .2s;min-width:0}.crypto-card:hover{transform:translateY(-3px);box-shadow:0 16px 27px #37244212}.crypto-card.orange{background:linear-gradient(145deg,#fff0e5,#fff 74%);border-color:#ff9e63}.crypto-card.green{background:linear-gradient(145deg,#ebffe5,#fff 74%);border-color:#82eb68}.crypto-card.purple{background:linear-gradient(145deg,#f5e7ff,#fff 74%);border-color:#d4a6ec}.coin-icon{display:inline-flex;width:58px;height:58px;align-items:center;justify-content:center;border-radius:16px;font-size:35px;line-height:1;font-family:Arial,sans-serif;font-weight:700}.orange .coin-icon,.chip.orange{background:#ff6a00;color:#2b1709}.green .coin-icon,.chip.green{background:#39ff14;color:#173511}.purple .coin-icon,.chip.purple{background:#bc13fe;color:#260136}.crypto-card .coin-label{display:flex;align-items:center;justify-content:space-between;margin-bottom:25px}.ticker{font-size:10px;letter-spacing:1.5px;font-weight:700;color:#736878}.crypto-card h3{font-size:25px;font-weight:700;margin:0 0 12px;letter-spacing:-.045em}.crypto-card>p{font-size:14px;line-height:1.85;color:#685b6d;min-height:77px;margin:0 0 19px}.topic-checks{display:grid;gap:7px;margin-bottom:22px;font-size:12px;color:#554b5c;list-style:none;padding:0}.topic-checks li:before{content:'↗';font-size:13px;margin-right:9px;color:#773491}.crypto-card .text-link{border-top:1px solid #5b456814;padding-top:20px;width:100%;justify-content:space-between}.soft-section{background:#faf9fc;border-block:1px solid #f0ecf4}.platform-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}.platform-card{background:#fff;border:1px solid var(--line);border-radius:19px;padding:26px 23px;transition:border-color .2s,box-shadow .2s}.platform-card:hover{border-color:#bc13fe;box-shadow:0 12px 24px #5631760c}.platform-emoji{font-size:39px;line-height:1.3;margin-bottom:17px;display:block}.eyebrow{font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:1.8px;color:#7a6b82}.platform-card h3{font-size:23px;margin:5px 0 13px;font-weight:700}.platform-card p{font-size:12px;line-height:1.85;color:var(--muted);margin-bottom:16px;min-height:68px}.platform-card .text-link{font-size:12px;white-space:normal;justify-content:space-between;width:100%}.feature-band{display:grid;grid-template-columns:1.1fr 1fr;gap:65px;padding:40px 44px;background:#f4eafa;border:1px solid #e6d7f0;border-radius:22px;margin-top:34px;align-items:center}.feature-band h3{font-size:29px;margin:0 0 11px;font-weight:700}.feature-band p{font-size:13px;color:#67536f;line-height:1.8;margin:0 0 13px}.feature-steps{display:grid;gap:11px}.feature-step{display:flex;align-items:center;gap:15px;font-size:12px;color:#65536f;padding:11px 14px;border-radius:11px;background:#ffffffb5}.feature-step b{font-size:16px;color:#6b2689}.feature-step strong{color:#2e173a}.post-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:27px}.post-card{border:1px solid var(--line);border-radius:19px;overflow:hidden;background:white;transition:transform .2s,box-shadow .2s;display:flex;flex-direction:column;min-width:0}.post-card:hover{transform:translateY(-3px);box-shadow:0 12px 24px #38124913}.post-cover{display:block;overflow:hidden;background:#f4edf8}.post-cover img{width:100%;height:auto;aspect-ratio:1;object-fit:contain}.post-copy{padding:21px 24px;display:flex;flex-direction:column;flex:1}.post-meta{font-size:10px;color:#786b82;display:flex;gap:9px;align-items:center;flex-wrap:wrap;line-height:1.7;margin-bottom:10px}.post-meta a{text-decoration:none;color:#7c278e;font-weight:700}.post-copy h3{font-size:20px;line-height:1.32;letter-spacing:-.025em;font-weight:700;margin:0 0 11px}.post-copy h3 a{text-decoration:none}.post-copy p{font-size:12px;line-height:1.8;color:#74657c;margin:0 0 16px}.post-copy .text-link{font-size:11px;justify-content:space-between;border-top:1px solid #eee5f4;padding-top:12px;margin-top:auto}.security-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}.security-card{background:white;border:1px solid var(--line);border-radius:18px;padding:25px}.security-card .emoji{font-size:29px;display:block;margin-bottom:18px}.security-card h3{font-size:19px;line-height:1.25;margin:0 0 11px;font-weight:700}.security-card p{font-size:12px;line-height:1.85;color:#6b5e73;margin:0}.faq-layout{display:grid;grid-template-columns:.65fr 1.1fr;gap:70px}.faq-intro h2{font-size:39px;margin:0 0 18px;line-height:1.12;font-weight:700}.faq-intro p{font-size:14px;line-height:1.9;color:var(--muted)}.faq-stack{display:grid;gap:12px}.faq-item{border:1px solid var(--line);border-radius:13px;background:white}.faq-item:hover{border-color:#caa1e1}.faq-item summary{display:flex;justify-content:space-between;align-items:center;gap:20px;padding:19px 21px;font-size:13px;font-weight:600;cursor:pointer;list-style:none;line-height:1.65}.faq-item summary::-webkit-details-marker{display:none}.faq-item summary:after{content:'+';font-family:Arial,sans-serif;font-size:24px;line-height:1;flex-shrink:0;color:#865296;font-weight:400}.faq-item[open] summary:after{content:'−'}.faq-item[open]{background:#fcf9ff;border-color:#bc13fe}.faq-item p{font-size:13px;line-height:1.95;margin:0;padding:0 22px 22px;color:#68566f}.cta-section{padding:0 0 76px}.cta-panel{padding:43px 48px;border-radius:23px;background:linear-gradient(108deg,#ffead8,#f4e7ff 58%,#e3ffd8);display:flex;justify-content:space-between;align-items:center;gap:34px;position:relative;overflow:hidden}.cta-panel h2{font-size:36px;font-weight:700;margin:0 0 10px}.cta-panel p{font-size:14px;color:#725877;max-width:650px;margin:0}.site-footer{background:#19151f;color:white;padding:60px 0 24px}.footer-grid{display:grid;grid-template-columns:1.7fr repeat(4,1fr);gap:36px}.site-footer .brand-name{font-size:24px}.site-footer .brand-small{color:#b8aebf}.footer-note{font-size:12px;line-height:1.9;color:#b9b0c1;max-width:270px;margin:21px 0 13px}.footer-email{font-size:12px;text-decoration:none;color:#d5ccde;word-break:break-word}.footer-column h2{font-family:var(--font-body);font-size:10px;text-transform:uppercase;letter-spacing:1.2px;font-weight:600;margin:0 0 18px;color:#f1e8f7}.footer-column a{display:block;font-size:11px;color:#beb3c8;text-decoration:none;line-height:2.5;min-height:30px}.footer-column a:hover,.footer-email:hover{color:#39ff14}.footer-bottom{margin-top:42px;padding-top:21px;border-top:1px solid #34283f;display:flex;gap:20px;justify-content:space-between;align-items:flex-start;color:#a899b2;font-size:10px;line-height:1.8}.footer-bottom p{max-width:730px;margin:0}.breadcrumbs{display:flex;flex-wrap:wrap;gap:9px;font-size:11px;color:#796a85;padding-top:28px;padding-bottom:20px;line-height:1.8}.breadcrumbs a{text-decoration:none}.breadcrumbs a:hover{text-decoration:underline}.breadcrumbs span.sep{color:#bdacc8}.page-top{background:linear-gradient(115deg,#fff 18%,#f8f1fd 75%,#f1ffed);padding-bottom:48px;border-bottom:1px solid var(--line)}.page-heading-grid{display:grid;grid-template-columns:1fr 286px;align-items:center;gap:55px;padding-top:21px}.page-heading-grid h1,.simple-heading h1{font-size:clamp(33px,4vw,53px);font-weight:700;line-height:1.11;letter-spacing:-.05em;margin:0 0 23px}.page-heading-grid .lead,.simple-heading .lead{font-size:17px;line-height:1.9;color:var(--muted);max-width:840px;margin:0}.page-heading-grid .kicker{margin-bottom:15px}.page-heading-art{border-radius:24px;overflow:hidden;max-width:286px}.page-heading-art img{width:100%}.big-symbol{height:220px;display:flex;align-items:center;justify-content:center;border:1px solid #e4d4f0;border-radius:26px;background:linear-gradient(140deg,#fff0e5,#f3e5ff 60%,#ecffe5);font-size:108px;line-height:1}.simple-heading{padding-top:20px;max-width:960px}.content-section{padding-block:60px}.content-grid{display:grid;grid-template-columns:minmax(0,1fr) 275px;gap:68px;align-items:start}.prose{max-width:790px;font-size:16px;line-height:1.95;color:#54465e;overflow-wrap:break-word}.prose p{margin:0 0 22px}.prose h2{font-size:28px;line-height:1.22;margin:43px 0 19px;font-weight:700;color:#23142e}.prose h2:first-child{margin-top:0}.prose h3{font-size:21px;line-height:1.3;margin:29px 0 15px;color:#291735;font-weight:700}.prose ul,.prose ol{padding-left:24px;margin:16px 0 25px}.prose li{margin:10px 0}.prose a{color:#782795;text-decoration:underline;text-underline-offset:4px;text-decoration-color:#cfb6dd}.prose a:hover{text-decoration-color:#782795}.prose strong{color:#291735}.prose .source-note{background:#f8f3fc;padding:22px;border-left:3px solid #bc13fe;border-radius:0 12px 12px 0;margin-top:31px;font-size:13px}.prose .source-note p{margin:0}.aside-box{background:#faf7fd;border:1px solid #e9dced;border-radius:17px;padding:25px;margin-bottom:21px}.sticky-aside{position:sticky;top:113px}.aside-box h2,.aside-box h3{font-size:15px;margin:0 0 17px;font-weight:700}.aside-box p{font-size:12px;color:#75637e;line-height:1.9;margin:0 0 16px}.aside-box a:not(.btn){display:block;font-size:12px;line-height:1.65;color:#6f3a82;text-decoration:none;padding:7px 0}.aside-box a:hover{text-decoration:underline}.aside-box .btn{width:100%;font-size:12px}.toc-box{padding:20px 23px}.toc-box ol{padding-left:17px;margin:0}.toc-box li{font-size:11px;color:#9f82ac;padding:2px 0}.toc-box a:not(.btn){font-size:11px;padding:5px 0;color:#715a7d}.info-notice{display:flex;gap:13px;align-items:flex-start;background:#f1ffe9;border:1px solid #d1eec4;border-radius:15px;padding:21px 23px;margin-bottom:30px}.info-notice .emoji{font-size:25px;line-height:1.4}.info-notice p{font-size:12px;line-height:1.9;margin:0;color:#4b6441}.subsection{margin-top:45px}.subsection h2{font-size:30px;font-weight:700;margin:0 0 18px}.path-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:17px}.path-card{padding:25px;border:1px solid var(--line);border-radius:16px;background:white;text-decoration:none;display:block;transition:border-color .2s}.path-card:hover{border-color:#bc13fe}.path-card h3{font-size:21px;margin:10px 0;font-weight:700}.path-card p{font-size:13px;line-height:1.9;color:#74647d;margin:0}.path-card .emoji{font-size:28px}.path-card .arrow{display:block;margin-top:13px;color:#8a389e;font-size:13px;font-weight:700}.chips{display:flex;gap:9px;flex-wrap:wrap;margin-top:24px}.chip,.tag{display:inline-flex;align-items:center;min-height:35px;border-radius:999px;padding:7px 13px;text-decoration:none;font-size:11px;line-height:1.5;font-weight:600;border:1px solid #e4d9ea;background:white;color:#6e457f}.chip:hover,.tag:hover,.chip.active{border-color:#bc13fe;background:#f2e5ff}.tag{font-size:10px;min-height:31px;padding:5px 11px}.archive-intro{max-width:790px;font-size:15px;line-height:1.95;color:#695773}.archive-help{background:#f8f3fb;border-radius:17px;padding:27px;margin-top:35px}.archive-help h2{font-size:24px;font-weight:700;margin-bottom:12px}.archive-help p{font-size:13px;color:#705d7a;line-height:1.95}.article-top .page-heading-grid{grid-template-columns:1fr 290px}.article-top h1{font-size:clamp(31px,3.5vw,48px);max-width:830px}.article-meta{display:flex;align-items:center;gap:12px;flex-wrap:wrap;font-size:11px;color:#786785;margin:23px 0 0}.article-meta a{color:#74368b;font-weight:600;text-decoration:none}.article-meta .author{font-weight:600;color:#594765}.article-top .page-heading-art{max-width:290px;border:1px solid #ecdaf5}.article-body{max-width:790px}.article-body>p:first-child{font-size:19px;line-height:1.9;color:#403048}.article-end{border-top:1px solid var(--line);padding-top:25px;margin-top:40px}.table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:16px;margin:25px 0;max-width:100%}.comparison-table{width:100%;border-collapse:collapse;text-align:left;min-width:680px;font-size:13px;line-height:1.85}.comparison-table caption{text-align:left;padding:16px 20px;font-size:11px;color:#826a90;background:#fcfaff}.comparison-table th{font-weight:700;color:#3d234b;background:#f1e6f8;padding:17px 20px}.comparison-table td{padding:17px 20px;border-top:1px solid #eee4f3;vertical-align:top}.comparison-table tr:nth-child(even) td{background:#fdfbff}.term-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-top:25px}.term-card{border:1px solid var(--line);border-radius:16px;padding:23px}.term-card h2{font-size:22px;font-weight:700;margin:0 0 13px}.term-card p{font-size:13px;color:#6d5d78;line-height:1.9;margin:0}.contact-panel{border:1px solid #dcc1ed;border-radius:22px;padding:37px;background:linear-gradient(110deg,#fff1e5,#f5e9ff,#efffe8);margin:24px 0}.contact-panel a{font-family:var(--font-heading);font-size:clamp(19px,3vw,31px);font-weight:700;letter-spacing:-.03em;overflow-wrap:anywhere}.empty-icon{font-size:65px;margin:18px 0}.not-found{padding:65px 0 100px;text-align:center}.not-found h1{font-size:65px;margin:18px 0}.not-found p{max-width:500px;margin:0 auto 25px;color:#76647f}.not-found .actions{display:flex;justify-content:center;gap:15px}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
@media(min-width:1500px){.hero h1{font-size:67px}.hero{padding-top:73px;padding-bottom:61px}}
@media(max-width:1130px){.desktop-nav{gap:15px}.nav-link{font-size:11px}.brand-name{font-size:20px}.desktop-nav .btn{padding:10px 13px;font-size:11px}.hero-grid{gap:28px}.hero h1{font-size:51px}.hero p.lead{font-size:15px}.hero .btn{font-size:12px;padding:12px 17px}.crypto-card{padding:23px}.crypto-card h3{font-size:22px}.security-card{padding:21px}.footer-grid{gap:25px}.content-grid{gap:42px}.strip-label{display:none}}
@media(max-width:950px){.desktop-nav{display:none}.mobile-nav{display:block}.nav-shell{min-height:77px}.hero-grid{grid-template-columns:1fr 1fr;gap:25px}.hero h1{font-size:44px}.hero{padding:43px 0}.hero .kicker{font-size:8px;letter-spacing:1.4px}.hero p.lead{font-size:14px}.hero .actions{gap:10px}.hero .btn{font-size:11px;padding:11px 14px;min-height:45px}.hero-foot{gap:23px}.hero-foot strong{font-size:23px}.hero-badges{gap:10px;font-size:9px}.coin-grid{gap:16px}.crypto-card{padding:21px}.crypto-card h3{font-size:21px}.crypto-card>p{font-size:13px;min-height:92px}.platform-grid,.security-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.platform-card p{min-height:0}.post-grid{gap:18px}.post-copy{padding:17px}.post-copy h3{font-size:18px}.footer-grid{grid-template-columns:repeat(4,1fr)}.footer-brand{grid-column:1/-1;display:grid;grid-template-columns:1.1fr 1fr;gap:10px 40px}.footer-note{max-width:none;margin:0;grid-column:2;grid-row:1/3}.footer-email{grid-column:1}.faq-layout{gap:35px}.faq-intro h2{font-size:33px}.feature-band{gap:30px;padding:31px}.content-grid{grid-template-columns:minmax(0,1fr) 225px;gap:30px}.page-heading-grid,.article-top .page-heading-grid{grid-template-columns:1fr 225px;gap:32px}.page-heading-grid .lead{font-size:15px}.article-top h1{font-size:38px}.aside-box{padding:21px}.prose{font-size:15px}.prose h2{font-size:26px}.cta-panel{padding:34px}.cta-panel h2{font-size:30px}.cta-panel .btn{flex-shrink:0}}
@media(max-width:700px){.wrap{padding-inline:22px}.hero-grid{grid-template-columns:1fr;gap:31px}.hero{padding-top:38px;padding-bottom:32px}.hero h1{font-size:clamp(43px,8vw,60px);max-width:580px;margin-bottom:20px}.hero p.lead{font-size:15px;max-width:none}.hero .kicker{font-size:9px;letter-spacing:1.5px}.hero .btn{font-size:12px;min-height:49px}.hero-foot{max-width:none;gap:35px}.hero-foot strong{font-size:25px}.hero-foot span{font-size:10px}.hero-badges{font-size:10px;gap:15px}.hero-visual{max-width:580px;width:100%;margin:auto}.strip-inner{justify-content:center;gap:12px}.strip-coins{gap:25px;font-size:12px}.strip-os{gap:22px;font-size:10px}.network-strip{padding:16px 0}.section-pad{padding-block:56px}.section-top{display:block;margin-bottom:28px}.section-top>.text-link{margin-top:8px}.section-top h2,.section-heading{font-size:31px}.section-top p{font-size:13px}.coin-grid{grid-template-columns:1fr}.crypto-card{padding:26px}.crypto-card>p{min-height:0;font-size:14px}.crypto-card h3{font-size:25px}.crypto-card .coin-label{margin-bottom:18px}.topic-checks{grid-template-columns:1fr 1fr;font-size:11px;gap:10px}.crypto-card .text-link{padding-top:16px}.feature-band{grid-template-columns:1fr;gap:19px;padding:28px}.feature-band h3{font-size:27px}.post-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:19px}.post-copy h3{font-size:19px}.post-copy{padding:20px}.post-copy p{font-size:12px}.post-meta{font-size:9px;gap:6px}.security-grid{gap:15px}.security-card{padding:22px}.security-card h3{font-size:18px}.security-card p{font-size:12px}.faq-layout{grid-template-columns:1fr;gap:26px}.faq-intro h2{font-size:32px}.faq-intro p{font-size:13px}.faq-item summary{font-size:13px;padding:17px 18px}.cta-section{padding-bottom:53px}.cta-panel{display:block;padding:31px}.cta-panel .btn{margin-top:23px}.cta-panel h2{font-size:30px}.cta-panel p{font-size:13px}.site-footer{padding-top:44px}.footer-grid{grid-template-columns:repeat(2,1fr);gap:28px}.footer-brand{display:block;grid-column:1/-1}.footer-note{margin-top:19px;max-width:420px}.footer-email{display:block;margin-top:13px}.footer-column a{font-size:12px;min-height:35px}.footer-bottom{display:block;margin-top:27px}.footer-bottom p{margin-bottom:14px}.page-heading-grid,.article-top .page-heading-grid{grid-template-columns:1fr;gap:25px;padding-top:13px}.page-heading-grid h1,.simple-heading h1{font-size:40px}.page-heading-grid .lead,.simple-heading .lead{font-size:15px}.page-heading-art{max-width:250px}.article-top .page-heading-art{max-width:260px}.article-top h1{font-size:36px}.big-symbol{height:135px;max-width:220px;font-size:76px}.page-top{padding-bottom:35px}.breadcrumbs{font-size:10px;padding-top:22px;padding-bottom:15px}.content-grid{grid-template-columns:1fr;gap:35px}.sticky-aside{position:static}.content-section{padding-block:39px}.content-grid>aside{display:grid;grid-template-columns:1fr 1fr;gap:18px}.content-grid>aside .aside-box{margin:0}.content-grid>aside .toc-box{grid-column:1/-1}.toc-box ol{columns:2;column-gap:35px}.toc-box li{break-inside:avoid}.prose{font-size:16px;line-height:1.95;max-width:none}.prose h2{font-size:27px}.prose h3{font-size:21px}.article-body>p:first-child{font-size:18px}.term-grid{gap:16px}.term-card{padding:20px}.term-card h2{font-size:20px}.subsection h2{font-size:28px}.article-meta{font-size:10px;gap:10px}.contact-panel{padding:27px}.archive-help{padding:23px}.not-found h1{font-size:46px}}
@media(max-width:460px){.wrap{padding-inline:18px}.brand-name{font-size:20px;letter-spacing:-.8px}.brand-small{font-size:7px;letter-spacing:1.7px}.brand img{width:34px;height:34px}.brand{gap:8px}.nav-shell{min-height:73px;gap:10px}.mobile-nav>summary{min-width:62px;font-size:11px}.hero h1{font-size:43px}.hero .kicker{font-size:8px;letter-spacing:1.05px;gap:7px}.hero .kicker:before{width:14px}.hero .actions{display:grid;grid-template-columns:1fr}.hero .btn{font-size:13px}.hero-foot{justify-content:space-between;gap:15px}.hero-foot strong{font-size:25px}.hero-foot span{font-size:9px}.hero-badges{gap:10px;font-size:9px}.hero-grid{gap:25px}.platform-grid{gap:13px}.platform-card{padding:20px 16px}.platform-card h3{font-size:21px}.platform-card p{font-size:11px;line-height:1.9}.platform-card .text-link{font-size:11px;gap:6px}.platform-emoji{font-size:33px}.platform-card .eyebrow{font-size:8px}.post-grid{grid-template-columns:1fr;gap:24px}.post-copy{padding:23px}.post-copy h3{font-size:23px}.post-meta{font-size:10px}.post-copy p{font-size:13px}.post-copy .text-link{font-size:12px}.section-top h2{font-size:30px}.security-grid{grid-template-columns:1fr}.security-card{padding:25px}.security-card h3{font-size:21px}.security-card p{font-size:13px}.security-card .emoji{margin-bottom:12px}.page-heading-grid h1,.simple-heading h1{font-size:36px}.article-top h1{font-size:33px}.page-heading-art,.article-top .page-heading-art{max-width:100%}.page-heading-art img{max-width:100%;width:100%}.article-top .page-heading-art{max-width:245px}.path-grid,.term-grid{grid-template-columns:1fr}.content-grid>aside{display:block}.content-grid>aside .aside-box{margin-bottom:18px}.toc-box ol{columns:1}.article-meta .author{width:100%}.prose h2{font-size:25px}.cta-panel{padding:26px}.cta-panel h2{font-size:28px}.not-found .actions{flex-direction:column}.footer-column h2{font-size:10px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*:before,*:after{transition:none!important;animation:none!important}.btn:hover,.post-card:hover,.crypto-card:hover{transform:none}}
@media print{.site-header,.site-footer,.cta-section,.sticky-aside,.hero-visual,.page-heading-art,.chips,.post-grid,.skip-link{display:none!important}.content-grid,.page-heading-grid{display:block!important}.wrap{padding:0;max-width:none}.page-top{background:white;border:0;padding:0}.prose{max-width:none;font-size:11pt}.prose a{color:inherit;text-decoration:underline}.content-section{padding:15px 0}.article-meta{margin-bottom:20px}}
