:root{
  --void:#0A0D12; --slate:#131822; --line:#242B38;
  --signal:#3D7FFF; --signal-dim: rgba(61,127,255,0.12);
  --ink:#E7EAF0; --mist:#8A93A6;
  --ok:#34D399; --bad:#F87171; --warn:#FBBF24;
}
*{box-sizing:border-box;}
body{margin:0; background:var(--void); color:var(--ink); font-family:'IBM Plex Sans',sans-serif; line-height:1.5; overflow-x:hidden;}
.wrap{max-width:1040px; margin:0 auto; padding:32px 20px 96px;}

/* Content-width utilities - replaces the scattered one-off inline
   max-width values (280/320/360/420/480/520/560/640/760px) that used
   to be sprinkled across templates with three consistent tiers. */
.measure-sm{max-width:420px;}   /* forms, compact cards */
.measure-md{max-width:560px;}   /* body paragraphs, lists */
.measure-lg{max-width:720px;}   /* longer prose (blog posts, disclaimers) */
a{color:var(--signal); text-decoration:none;}
h1,h2,h3{font-family:'Space Grotesk',sans-serif; font-weight:600;}
.site-header{
  display:flex; align-items:center; justify-content:space-between; padding:18px 24px;
  border-bottom:1px solid var(--line); flex-wrap:wrap; gap:12px;
  position:sticky; top:0; z-index:200; background:var(--void);
  transition:background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-header.is-scrolled{
  background:rgba(10,13,18,0.72); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  box-shadow:0 8px 24px rgba(0,0,0,0.25); padding:12px 24px;
}
.logo-block{display:flex; align-items:center; gap:8px;}
.site-logo-full{height:26px; width:auto; display:block;}
@media (max-width:480px){
  .site-logo-full{height:22px;}
}
.site-header nav{display:flex; align-items:center; flex-wrap:wrap;}
.site-header nav a{margin-left:18px; font-size:14px; color:var(--ink);}
.nav-primary{display:flex; flex-wrap:wrap; padding-right:14px; margin-right:4px; border-right:1px solid var(--line);}
.nav-primary a{color:var(--mist); transition:color 0.15s ease;}
.nav-primary a:hover{color:var(--ink);}
.site-header nav a{transition:color 0.15s ease;}
.site-header nav a:hover{color:var(--signal);}

.nav-hamburger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:34px; height:34px; background:none; border:1px solid var(--line); border-radius:8px; cursor:pointer;
}
.nav-hamburger span{width:16px; height:2px; background:var(--ink); margin:0 auto; transition:transform 0.2s ease, opacity 0.2s ease;}
.nav-hamburger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-hamburger.is-open span:nth-child(2){opacity:0;}
.nav-hamburger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width:900px){
  .nav-hamburger{display:flex;}
  #site-nav{
    display:none; width:100%; flex-direction:column; align-items:flex-start; gap:4px;
    border-top:1px solid var(--line); margin-top:12px; padding-top:12px;
    max-height:calc(100vh - 90px); overflow-y:auto; box-sizing:border-box;
    flex-wrap:nowrap;
  }
  #site-nav.is-open{display:flex; flex-wrap:nowrap;}
  #site-nav .nav-primary{flex-direction:column; flex-wrap:nowrap; align-items:flex-start; border-right:none; padding-right:0; margin-right:0; width:100%; gap:2px;}
  #site-nav .nav-primary a, #site-nav > a{padding:8px 4px; margin-left:0; width:100%; box-sizing:border-box;}

  /* Notification bell: hidden on mobile - it's already listed as a
     regular item inside the account menu below, so this was just a
     redundant second icon cluttering the hamburger panel. */
  #site-nav a.nav-bell{display:none;}

  /* Account "dropdown": now a real, collapsed-by-default toggle here
     too (same .open class/JS as desktop) instead of being forced
     permanently expanded - keeps the hamburger panel tidy until the
     person actually wants to see account links.
     IMPORTANT: .nav-dropdown is `display:inline-block` on desktop
     (so it sits to the right of the nav links) - that has to become a
     full-width block here, or the dropdown keeps sizing/positioning
     itself like a small desktop widget floated to the right instead
     of a full-width panel row. Same for the menu itself: its desktop
     rule is `position:absolute; right:0` (a floating popover) - every
     one of those has to be forced off here, not just `position`. */
  #site-nav .nav-dropdown{width:100%; margin-left:0; display:block;}
  #site-nav .nav-dropdown-toggle{
    width:100%; box-sizing:border-box; display:flex; justify-content:space-between; align-items:center;
    overflow:hidden; text-align:left; padding:8px 4px; margin-left:0;
  }
  #site-nav .nav-dropdown-toggle > .nav-dropdown-toggle-label{overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
  #site-nav .nav-dropdown-menu{
    display:none; position:static !important; right:auto !important; left:auto !important; top:auto !important;
    width:100% !important; max-width:100% !important; min-width:0 !important; box-sizing:border-box;
    border:none; box-shadow:none; background:none; padding:0 0 0 12px; margin-top:2px;
  }
  #site-nav .nav-dropdown-menu.open{display:block;}
  #site-nav .nav-dropdown-menu a{padding:7px 4px;}
}
@media (max-width:640px){
  .nav-primary{border-right:none; padding-right:0; margin-right:0; width:100%;}
  .nav-primary a:first-child{margin-left:0;}
}
.btn{font-family:'IBM Plex Sans'; font-weight:500; font-size:14px; padding:10px 18px; border-radius:8px; border:1px solid transparent; cursor:pointer; display:inline-block;}
.btn-primary{background:var(--signal); color:#fff !important;}
.btn-secondary{background:transparent; color:var(--ink) !important; border-color:var(--line);}
.btn-archive{color:var(--warn) !important; border-color:rgba(251,191,36,0.4) !important;}
.btn-archive:hover{background:rgba(251,191,36,0.08); border-color:var(--warn) !important;}
.btn:disabled{opacity:0.4; cursor:not-allowed;}

/* --- Nav account dropdown --- */
.nav-dropdown{position:relative; display:inline-block;}
.nav-dropdown-toggle{
  background:none; border:1px solid var(--line); border-radius:8px; color:var(--ink);
  font-family:'IBM Plex Sans'; font-size:13px; padding:7px 12px; margin-left:18px; cursor:pointer;
}
.nav-dropdown-toggle:hover{border-color:var(--signal);}
.nav-dropdown-menu{
  display:none; position:absolute; right:0; top:calc(100% + 6px); min-width:200px; z-index:50;
  background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:6px;
  box-shadow:0 8px 24px rgba(0,0,0,0.4);
}
.nav-dropdown-menu.open{display:block;}
.nav-dropdown-menu a{
  display:block; padding:8px 10px; border-radius:6px; font-size:13px; color:var(--ink); text-decoration:none;
}
.nav-dropdown-menu a:hover{background:var(--signal-dim); color:var(--signal);}
.nav-dropdown-menu hr{border:none; border-top:1px solid var(--line); margin:6px 0;}

/* --- Panel layout: sidebar + content, used by every user-dashboard page --- */
.panel-layout{display:grid; grid-template-columns:220px 1fr; gap:36px; align-items:start;}
.panel-sidebar{position:sticky; top:24px;}
.panel-nav{display:flex; flex-direction:column; gap:2px;}
.panel-nav-link{
  padding:10px 14px; border-radius:8px; font-size:14px; color:var(--mist); text-decoration:none;
  display:flex; align-items:center; gap:10px;
}
.panel-nav-icon{width:18px; height:18px; flex-shrink:0;}
.panel-nav-link .nav-badge{margin-left:auto;}
.panel-nav-link:hover{background:var(--slate); color:var(--ink);}
.panel-nav-link.active{background:var(--signal-dim); color:var(--signal); font-weight:500;}
.panel-nav-divider{border:none; border-top:1px solid var(--line); margin:10px 4px;}
.panel-nav-section-label{
  font-size:11px; text-transform:uppercase; letter-spacing:0.05em; color:var(--mist);
  padding:14px 14px 4px; font-weight:600;
}
.panel-nav-section-label:first-child{padding-top:0;}
.panel-nav-link-danger{color:var(--bad); opacity:0.75;}
.panel-nav-link-danger:hover{background:rgba(248,113,113,0.08); color:var(--bad); opacity:1;}
.nav-badge{
  display:inline-flex; align-items:center; justify-content:center; min-width:18px; height:18px;
  padding:0 5px; border-radius:999px; background:var(--signal); color:#fff;
  font-size:11px; font-family:'IBM Plex Mono'; margin-left:4px;
}
.nav-badge-zero{background:var(--line); color:var(--mist);}

/* --- Facebook-style notification bell in the top nav --- */
.nav-bell{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%; margin-left:14px; color:var(--ink);
  border:1px solid var(--line);
}
.nav-bell:hover{border-color:var(--signal); color:var(--signal);}
.nav-bell svg{width:18px; height:18px;}
.nav-bell-badge{
  position:absolute; top:-4px; right:-4px; min-width:16px; height:16px; padding:0 4px;
  display:flex; align-items:center; justify-content:center; border-radius:999px;
  background:var(--bad); color:#fff; font-size:10px; font-family:'IBM Plex Mono'; font-weight:600;
}
.panel-content{min-width:0;}
.settings-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px;}

/* --- My Applications: card-per-token with exchange chips --- */
.app-card-list{display:flex; flex-direction:column; gap:14px;}
.app-card{background:var(--slate); border:1px solid var(--line); border-radius:10px; padding:18px 20px;}
.app-card-header{display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;}
.app-card-title{font-family:'Space Grotesk'; font-weight:600; font-size:16px; color:var(--ink);}
.app-card-title-name{font-weight:400; color:var(--mist); font-size:14px;}
.app-card-sub{font-size:12px; color:var(--mist); margin-top:4px;}
.app-card-exchanges{display:grid; grid-template-columns:repeat(2, 1fr); gap:8px; margin-top:14px;}
@media (max-width:480px){
  .app-card-exchanges{grid-template-columns:1fr;}
}
.app-exchange-chip{
  display:flex; align-items:center; gap:8px; background:var(--void); border:1px solid var(--line);
  border-radius:999px; padding:6px 12px 6px 6px; min-width:0; box-sizing:border-box;
}
.app-exchange-chip-more{border-style:dashed; opacity:0.75;}
.app-exchange-chip-more .app-exchange-chip-fallback{background:none; color:var(--mist);}
.app-exchange-chip-more .app-exchange-chip-name{color:var(--mist); font-size:12px;}
.app-exchange-chip-logo{width:22px; height:22px; border-radius:50%; object-fit:cover; background:#fff;}
.app-exchange-chip-fallback{
  width:22px; height:22px; border-radius:50%; background:var(--signal-dim); color:var(--signal);
  font-size:9px; font-weight:600; font-family:'Space Grotesk'; display:flex; align-items:center; justify-content:center;
}
.app-exchange-chip-name{font-size:13px; font-weight:500; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; flex:1; min-width:0;}
.app-exchange-chip .badge{margin-left:auto; flex-shrink:0;}

.filter-pills{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:20px;}
.filter-pill{
  padding:6px 14px; border-radius:999px; font-size:13px; border:1px solid var(--line);
  color:var(--mist);
}
.filter-pill:hover{border-color:var(--signal); color:var(--ink);}
.filter-pill.active{background:var(--signal-dim); border-color:var(--signal); color:var(--signal); font-weight:500;}

/* --- Application detail: one card per exchange, with logo + history --- */
.exchange-status-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px; margin-top:20px;}
.exchange-status-group-label{
  font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; color:var(--mist);
  opacity:0.65; margin:28px 0 0; padding-top:16px; border-top:1px solid var(--line);
}
.exchange-status-card{background:var(--slate); border:1px solid var(--line); border-radius:10px; padding:18px;}
.exchange-status-head{display:flex; align-items:center; gap:12px; margin-bottom:12px;}

.exchange-card-menu{position:relative; flex-shrink:0;}
.exchange-card-menu-toggle{
  background:none; border:1px solid var(--line); border-radius:6px; color:var(--mist);
  width:28px; height:28px; display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.exchange-card-menu-toggle:hover{color:var(--ink); border-color:var(--mist);}
.exchange-card-menu-toggle svg{width:14px; height:14px;}
.exchange-card-menu-dropdown{
  display:none; position:absolute; right:0; top:calc(100% + 4px); z-index:20; min-width:140px;
  background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:4px;
  box-shadow:0 8px 24px rgba(0,0,0,0.35);
}
.exchange-card-menu-dropdown.open{display:block;}
.exchange-card-menu-item{
  display:block; width:100%; text-align:left; background:none; border:none; color:var(--bad);
  font-size:13px; padding:8px 10px; border-radius:6px; cursor:pointer;
}
.exchange-card-menu-item:hover{background:rgba(248,113,113,0.1);}

.cancel-all-section{
  margin-top:28px; padding:16px 18px; border:1px solid rgba(248,113,113,0.3); border-radius:8px;
  background:rgba(248,113,113,0.04);
}
.cancel-all-section p{color:var(--bad); font-size:13px; margin:0 0 10px;}

.network-icons-row{
  display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:24px;
  margin-top:16px; margin-bottom:32px;
}
.network-icon{
  width:32px; height:32px; filter:grayscale(100%); opacity:0.5;
  transition:filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.network-icon:hover{filter:grayscale(0%); opacity:1; transform:translateY(-2px);}
.exchange-status-logo{width:40px; height:40px; border-radius:10px; object-fit:cover; background:#fff; flex-shrink:0;}
.exchange-status-logo-fallback{
  width:40px; height:40px; border-radius:10px; background:var(--signal-dim); color:var(--signal);
  font-family:'Space Grotesk'; font-weight:600; font-size:13px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.exchange-status-name{font-weight:600; font-size:14px; margin-bottom:4px;}
.exchange-status-code{font-size:12px; color:var(--mist); margin-bottom:12px;}
.exchange-status-history{border-top:1px solid var(--line); padding-top:10px;}
.exchange-status-history-row{
  display:flex; justify-content:space-between; font-size:12px; color:var(--mist); padding:4px 0;
}
.exchange-status-note{
  font-size:12px; line-height:1.5; padding:10px 12px; border-radius:8px; margin-bottom:12px;
}
.exchange-status-note-approved{background:rgba(52,211,153,0.08); border:1px solid rgba(52,211,153,0.25); color:var(--ok);}
.exchange-status-note-warn{background:rgba(251,191,36,0.08); border:1px solid rgba(251,191,36,0.3); color:var(--warn);}
.exchange-status-note-warn a{color:var(--warn); text-decoration:underline;}
.exchange-status-note-withdrawn{background:rgba(248,113,113,0.08); border:1px solid rgba(248,113,113,0.3); color:var(--bad);}
.btn-withdraw{color:var(--bad) !important; border-color:rgba(248,113,113,0.4) !important;}
.btn-withdraw:hover{background:rgba(248,113,113,0.08); border-color:var(--bad) !important;}

.mytoken-add-card{
  display:flex; align-items:center; justify-content:center; gap:10px;
  border:1px dashed var(--line); color:var(--mist); font-size:14px; font-weight:500;
  min-height:64px; background:transparent;
}
.mytoken-add-card:hover{border-color:var(--signal); color:var(--signal);}
.mytoken-add-icon{
  width:26px; height:26px; border-radius:50%; border:1px solid currentColor;
  display:flex; align-items:center; justify-content:center; font-size:16px; line-height:1;
}

/* --- Application detail: submitted-info table + plan badge --- */
.plan-badge{
  display:inline-flex; padding:5px 12px; border-radius:999px; font-size:12px; font-weight:600;
  font-family:'Space Grotesk';
}
.plan-badge-standard{background:var(--line); color:var(--mist);}
.plan-badge-full_service{background:var(--signal-dim); color:var(--signal);}

.info-table{border:1px solid var(--line); border-radius:8px; overflow:hidden;}
.info-table-row{
  display:grid; grid-template-columns:160px 1fr; gap:16px; padding:12px 16px;
  border-top:1px solid var(--line); font-size:13px;
}
.info-table-row:first-child{border-top:none;}
.info-table-row:nth-child(odd){background:var(--slate);}
.info-table-label{color:var(--mist);}
@media (max-width:560px){
  .info-table-row{grid-template-columns:1fr; gap:4px;}
}

/* --- Exchange Team apply page: two columns, benefits + form --- */
.staff-apply-layout{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; margin-top:8px;}
.staff-apply-benefits{display:flex; flex-direction:column; gap:18px; margin-top:24px;}
.staff-apply-benefit{display:flex; gap:14px; align-items:flex-start;}
.staff-apply-benefit .step-icon{flex-shrink:0; margin-bottom:0;}
.staff-apply-benefit h3{font-size:14px; margin:0 0 4px;}
.staff-apply-benefit p{font-size:13px; color:var(--mist); margin:0; line-height:1.5;}
.staff-apply-form-card{background:var(--slate); border:1px solid var(--line); border-radius:10px; padding:24px;}
@media (max-width:820px){
  .staff-apply-layout{grid-template-columns:1fr;}
}

.target-type-toggle{display:flex; flex-direction:column; gap:8px; margin-bottom:18px;}
.target-type-option{
  position:relative; display:flex; align-items:center; gap:10px; padding:12px 14px 12px 40px;
  background:var(--void); border:1.5px solid var(--line); border-radius:8px; cursor:pointer; font-size:13px;
}
.target-type-option input[type="radio"]{
  position:absolute; left:14px; top:50%; margin:0; transform:translateY(-50%);
  appearance:none; -webkit-appearance:none; width:16px; height:16px; flex-shrink:0;
  border:1.5px solid var(--line); border-radius:50%; background:var(--slate); cursor:pointer;
}
.target-type-option input[type="radio"]:checked{
  border-color:var(--signal); background:var(--signal);
  box-shadow:inset 0 0 0 3px var(--slate);
}
.target-type-option:has(input:checked){border-color:var(--signal); background:var(--signal-dim);}
.field-hint{font-size:11px; color:var(--mist); margin-top:4px;}

/* --- Ticket/inbox message threads: team vs. you, visually distinct --- */
.thread{display:flex; flex-direction:column; gap:12px; margin-top:16px;}
.thread-msg{max-width:75%; border-radius:12px; padding:12px 16px;}
.thread-msg-team{
  align-self:flex-end; background:var(--signal-dim); border:1px solid rgba(61,127,255,0.25);
  border-bottom-right-radius:2px;
}
.thread-msg-user{
  align-self:flex-start; background:var(--slate); border:1px solid var(--line);
  border-bottom-left-radius:2px;
}
.thread-msg-meta{font-size:11px; color:var(--mist); margin-bottom:6px;}
.thread-msg-team .thread-msg-meta{color:var(--signal);}
.thread-msg-body{font-size:14px; line-height:1.5;}
@media (max-width:600px){
  .thread-msg{max-width:92%;}
}

.ticket-safety-warning{
  background:rgba(248,113,113,0.08); border:1px solid rgba(248,113,113,0.3); border-radius:8px;
  padding:12px 16px; font-size:13px; color:var(--bad); line-height:1.5; margin:16px 0;
}
.ticket-safety-warning a{color:var(--bad); text-decoration:underline;}
.ticket-info-note{
  background:var(--signal-dim); border:1px solid rgba(61,127,255,0.3); border-radius:8px;
  padding:12px 16px; font-size:13px; color:var(--ink); line-height:1.5; margin-bottom:4px;
}

.verify-result{
  margin-top:20px; padding:14px 18px; border-radius:8px; font-size:14px; line-height:1.5; max-width:420px;
}
.verify-result-ok{background:rgba(52,211,153,0.08); border:1px solid rgba(52,211,153,0.3); color:var(--ok);}
.verify-result-fail{background:rgba(248,113,113,0.08); border:1px solid rgba(248,113,113,0.3); color:var(--bad);}
.verify-result-fail a{color:var(--bad); text-decoration:underline;}

/* --- Notifications feed --- */
.notif-feed{display:flex; flex-direction:column; margin-top:20px; border-top:1px solid var(--line);}
.notif-item{
  display:flex; align-items:center; gap:12px; padding:14px 4px; border-bottom:1px solid var(--line);
  color:var(--mist); text-decoration:none;
}
.notif-item:hover{background:var(--slate);}
.notif-dot{width:8px; height:8px; border-radius:50%; background:transparent; flex-shrink:0;}
.notif-icon{
  width:28px; height:28px; border-radius:8px; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  background:var(--slate); color:var(--mist);
}
.notif-icon svg{width:15px; height:15px;}
.notif-icon-application{background:var(--signal-dim); color:var(--signal);}
.notif-icon-ticket{background:rgba(251,191,36,0.12); color:var(--warn);}
.notif-icon-message{background:rgba(52,211,153,0.12); color:var(--ok);}
.notif-item-unread{color:var(--ink); font-weight:500;}
.notif-item-unread .notif-dot{background:var(--signal);}
.notif-text{flex:1; font-size:13px;}
.notif-time{font-size:11px; color:var(--mist); font-family:'IBM Plex Mono'; flex-shrink:0;}
@media (max-width:760px){
  .panel-layout{grid-template-columns:1fr;}
  .panel-sidebar{position:static;}
  .panel-nav-mobile-toggle{
    display:flex; align-items:center; justify-content:space-between; width:100%; box-sizing:border-box;
    background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:10px 14px;
    color:var(--ink); font-size:14px; font-weight:500; margin-bottom:10px; cursor:pointer;
  }
  .panel-nav-mobile-toggle.is-open span:last-child{transform:rotate(180deg); display:inline-block;}
  .panel-nav{
    display:none; flex-direction:column; gap:2px; max-height:60vh; overflow-y:auto;
    border:1px solid var(--line); border-radius:8px; padding:8px; margin-bottom:16px; background:var(--slate);
  }
  .panel-nav.is-open{display:flex;}
  .panel-nav-link{padding:9px 12px; font-size:14px;}
}
@media (min-width:761px){
  .panel-nav-mobile-toggle{display:none;}
}
.btn-small{padding:7px 14px; font-size:13px;}
.card{background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:20px;}
.flash{padding:10px 14px; border-radius:8px; margin-bottom:12px; font-size:14px;}
.flash-success{background:rgba(52,211,153,0.12); color:var(--ok);}
.flash-error{background:rgba(248,113,113,0.12); color:var(--bad);}
form p{margin:14px 0;}
form p:has(> input[type="checkbox"]){display:flex; align-items:flex-start; gap:8px;}
form p:has(> input[type="checkbox"]) label{display:inline; margin:0; order:2;}
form p:has(> input[type="checkbox"]) input[type="checkbox"]{order:1; margin-top:3px;}
label{display:block; font-size:13px; color:var(--mist); margin-bottom:6px;}
input, textarea, select{width:100%; background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:10px 12px; color:var(--ink); font-family:'IBM Plex Sans'; font-size:14px; box-sizing:border-box;}
input[type="checkbox"], input[type="radio"]{
  width:16px; height:16px; flex-shrink:0; padding:0; vertical-align:middle; accent-color:var(--signal);
}
select{
  appearance:none; -webkit-appearance:none; -moz-appearance:none;
  line-height:1.4; padding-right:36px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%238A93A6'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 10px center; background-size:16px;
}
.badge{display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:500; padding:4px 10px; border-radius:999px;}
.badge::before{content:''; width:6px; height:6px; border-radius:50%; background:currentColor;}
.badge-pending{color:var(--mist); background:rgba(138,147,166,0.12);}
.badge-claimed, .badge-under_review{color:var(--signal); background:var(--signal-dim);}
.badge-approved{color:var(--ok); background:rgba(52,211,153,0.12);}
.badge-rejected{color:var(--bad); background:rgba(248,113,113,0.12);}
.badge-needs_info{color:var(--warn); background:rgba(251,191,36,0.12);}
.badge-withdrawn{color:var(--bad); background:rgba(248,113,113,0.12);}
.badge-open{color:var(--mist); background:rgba(138,147,166,0.12);}
.badge-answered{color:var(--signal); background:var(--signal-dim);}
.badge-closed{color:var(--ok); background:rgba(52,211,153,0.12);}
.lane{display:flex; align-items:center; gap:14px; padding:14px 0; border-top:1px solid var(--line);}
.lane .ex-name{width:120px; font-weight:500; font-size:14px;}
.lane .code{margin-left:auto; font-family:'IBM Plex Mono'; font-size:12px; color:var(--mist);}
.mono{font-family:'IBM Plex Mono'; color:var(--signal); word-break:break-all;}
.mono-subtle{font-family:'IBM Plex Mono'; color:var(--mist); word-break:break-all;}
.site-footer{padding:36px 24px 24px;}

.verified-banner{
  background:linear-gradient(180deg, rgb(52 211 153 / 8%), transparent);
  border-top:1px solid rgba(52,211,153,0.25);
  margin-top:24px;
}
.verified-banner-inner{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  max-width:1040px; margin:0 auto; padding:16px 0;
}
.verified-banner-content{display:flex; align-items:center; gap:12px;}
.verified-banner-badges{display:flex; align-items:center; gap:16px; flex-shrink:0; color:#fff;}
.trust-badge-icon{height:40px; width:auto; opacity:0.9;}

.newsletter-strip{border-bottom:1px solid var(--line);}
.newsletter-strip-inner{
  max-width:1040px; margin:0 auto; padding:14px 20px;
  display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap;
}
.newsletter-strip-label{font-size:12px; color:var(--mist);}
.newsletter-strip-form{display:flex; gap:8px;}
.newsletter-strip-input{
  background:var(--slate); border:1px solid var(--line); border-radius:6px; color:var(--ink);
  font-size:12px; padding:6px 10px; width:200px;
}
.newsletter-strip-btn{
  background:none; border:1px solid var(--line); border-radius:6px; color:var(--mist);
  font-size:12px; padding:6px 12px; cursor:pointer;
}
.newsletter-strip-btn:hover{border-color:var(--signal); color:var(--signal);}
@media (max-width:520px){
  .newsletter-strip-inner{flex-direction:column; gap:8px;}
  .newsletter-strip-input{width:100%;}
  .newsletter-strip-form{width:100%;}
}

/* --- Reusable site-wide modal (window.showSiteModal) --- */
.site-modal-overlay{
  display:none; position:fixed; inset:0; z-index:1000; align-items:center; justify-content:center;
  background:rgba(5,7,10,0.65); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  opacity:0; transition:opacity 0.2s ease; padding:20px; box-sizing:border-box;
}
.site-modal-overlay.is-open{opacity:1;}
.site-modal{
  background:var(--slate); border:1px solid var(--line); border-radius:16px; padding:32px 28px;
  max-width:360px; width:100%; text-align:center; position:relative;
  transform:scale(0.94) translateY(8px); transition:transform 0.2s ease;
  box-shadow:0 24px 64px rgba(0,0,0,0.5);
}
.site-modal-overlay.is-open .site-modal{transform:scale(1) translateY(0);}
.site-modal-close{
  position:absolute; top:10px; right:12px; background:none; border:none; color:var(--mist);
  font-size:22px; line-height:1; cursor:pointer; padding:6px;
}
.site-modal-close:hover{color:var(--ink);}
.site-modal-icon{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:24px; font-weight:700; margin:0 auto 16px;
}
.site-modal-success .site-modal-icon{background:rgba(52,211,153,0.14); color:var(--ok);}
.site-modal-error .site-modal-icon{background:rgba(248,113,113,0.14); color:var(--bad);}
.site-modal-warning .site-modal-icon{background:rgba(251,191,36,0.14); color:var(--warn);}
.site-modal-info .site-modal-icon{background:var(--signal-dim); color:var(--signal);}
.site-modal-title{font-family:'Space Grotesk'; font-weight:600; font-size:18px; margin-bottom:8px;}
.site-modal-body{font-size:14px; color:var(--mist); line-height:1.5; margin-bottom:22px;}
.site-modal-ok{width:100%;}
.verified-banner-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:32px; height:32px; border-radius:50%; background:rgba(52,211,153,0.18);
  color:var(--ok); font-family:'IBM Plex Mono'; font-size:16px; font-weight:600; flex-shrink:0;
}
.verified-banner p{margin:0; font-size:13px; color:var(--ok); max-width:560px; text-align:left; line-height:1.6;}
@media (max-width:640px){
  .verified-banner-inner{justify-content:center; text-align:center; padding:16px 20px;}
  .verified-banner-content{flex-direction:column; text-align:center;}
}

.cookie-banner{
  position:fixed; bottom:0; left:0; right:0; z-index:100;
  background:var(--slate); border-top:1px solid var(--line);
  padding:14px 20px; display:flex; align-items:center; justify-content:space-between; gap:16px;
  flex-wrap:wrap;
}
.cookie-banner p{margin:0; font-size:13px; color:var(--mist); max-width:560px;}
.cookie-banner a{color:var(--signal);}

.skip-link{
  position:absolute; left:-9999px; top:auto;
  background:var(--signal); color:#fff; padding:10px 16px; border-radius:8px;
  z-index:200;
}
.skip-link:focus{left:12px; top:12px;}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--signal); outline-offset:2px;
}

/* --- Auth pages: tabs, google button, dividers --- */
.auth-page-wrap{max-width:420px; margin:32px auto 0;}

.verify-page-wrap{max-width:900px; margin:32px auto 0;}
.verify-two-col{display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:32px; align-items:start;}
.verify-col .auth-form{margin-top:0;}
@media (max-width:760px){
  .verify-two-col{grid-template-columns:1fr;}
}
.auth-tabs{display:flex; gap:4px; margin-bottom:24px; border-bottom:1px solid var(--line); justify-content:center;}
.auth-tab{
  background:none; border:none; color:var(--mist); font-family:'IBM Plex Sans'; font-weight:500;
  font-size:14px; padding:10px 4px; margin-right:20px; cursor:pointer; border-bottom:2px solid transparent;
}
.auth-tab.active{color:var(--ink); border-bottom-color:var(--signal);}
.auth-form{max-width:420px;}
.auth-divider{display:flex; align-items:center; gap:12px; max-width:420px; margin:20px 0; color:var(--mist); font-size:12px;}
.auth-divider::before, .auth-divider::after{content:''; flex:1; height:1px; background:var(--line);}
.auth-google-btn{
  display:flex; align-items:center; justify-content:center; gap:10px; width:100%; max-width:420px;
  box-sizing:border-box;
}
.auth-google-btn-disabled{
  opacity:0.5; cursor:not-allowed; pointer-events:none;
}
.auth-links{font-size:13px; margin-top:16px;}

.breadcrumb{display:flex; align-items:center; gap:8px; font-size:13px; color:var(--mist); margin-bottom:16px;}
.breadcrumb a{color:var(--mist);}
.breadcrumb a:hover{color:var(--signal);}
.breadcrumb span:last-child{color:var(--ink);}

/* --- Rich text blog article content (from CKEditor) --- */
.article-body h2{font-family:'Space Grotesk'; font-size:22px; margin:32px 0 12px;}
.article-body h3{font-family:'Space Grotesk'; font-size:18px; margin:24px 0 10px;}
.article-body p{margin:0 0 16px;}
.article-body ul, .article-body ol{margin:0 0 16px; padding-left:22px;}
.article-body li{margin:6px 0;}
.article-body a{color:var(--signal);}
.article-body strong{color:var(--ink); font-weight:600;}
.article-body blockquote{
  margin:20px 0; padding:4px 20px; border-left:3px solid var(--signal);
  color:var(--mist); font-style:italic;
}
.article-body img{max-width:100%; height:auto; border-radius:8px; margin:16px 0;}
.article-body code{
  background:var(--slate); border:1px solid var(--line); border-radius:4px;
  padding:2px 6px; font-family:'IBM Plex Mono'; font-size:0.9em;
}

/* --- Homepage content sections: just breathing room, no boxed container --- */
.home-section{margin:48px 0;}
.home-section .section-title{margin-bottom:8px;}
@media (max-width:640px){
  .home-section{margin:32px 0;}
}

/* --- Full-bleed blue trust band, spans edge to edge like the footer's
   green verified-banner, but blue and wrapping two home sections --- */
.home-fullbleed{
  width:100vw; margin-left:calc(-50vw + 50%); margin-right:calc(-50vw + 50%);
  background:linear-gradient(180deg, rgba(61,127,255,0.10), rgba(61,127,255,0.02) 70%, transparent);
  border-top:1px solid rgba(61,127,255,0.22); border-bottom:1px solid rgba(61,127,255,0.22);
  margin-top:48px; margin-bottom:48px; padding:8px 0;
}
.home-fullbleed-inner{max-width:1040px; margin:0 auto; padding:0 20px;}
.home-fullbleed .home-section{margin:40px 0;}

/* --- Why Listincex: with/without comparison --- */
.compare-columns{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.compare-column{border-radius:10px; padding:22px; border:1px solid var(--line);}
.compare-column-without{background:var(--slate);}
.compare-column-with{background:var(--signal-dim); border-color:rgba(61,127,255,0.3);}
.compare-column-title{font-family:'Space Grotesk'; font-weight:600; font-size:16px; margin-bottom:14px;}
.compare-column-without .compare-column-title{color:var(--mist);}
.compare-column-with .compare-column-title{color:var(--signal);}
.compare-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;}
.compare-list li{font-size:13px; line-height:1.5; padding-left:22px; position:relative; color:var(--ink);}
.compare-column-without .compare-list li::before{content:'✕'; position:absolute; left:0; color:var(--bad); font-size:12px;}
.compare-column-with .compare-list li::before{content:'✓'; position:absolute; left:0; color:var(--ok); font-size:12px;}
@media (max-width:700px){
  .compare-columns{grid-template-columns:1fr;}
}

/* --- Phase 1.1: homepage content sections --- */
.hero{padding:56px 0 40px; text-align:left;}
.hero-grid{display:grid; grid-template-columns:1.2fr 1fr; gap:32px; align-items:center;}
.hero h1{font-size:40px; line-height:1.15; margin:0 0 14px; max-width:560px;}
.hero-sub{color:var(--mist); font-size:16px; max-width:480px; margin:0 0 24px;}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap;}
.hero-visual{display:flex; align-items:center; justify-content:center;}

/* --- Hero background video: subtle, professional, banner-style ---
   Contained strictly within the hero section (never bleeds into
   "Supported Exchanges" or anything below). Heavy dark gradient keeps
   it readable and low-key rather than a loud, distracting animation.
   Hidden entirely on smaller screens to save mobile data/battery -
   the hero still looks intentional there via the plain dark background. */
.hero-video-section{
  position:relative; padding:96px 0 72px;
  margin-bottom:8px; margin-top:-32px; border-radius:0;
  border-top:1px solid rgba(255,255,255,0.08);
}
.hero-bg-video-wrap{
  position:absolute; top:0; bottom:0; left:50%; right:50%; margin-left:-50vw; margin-right:-50vw;
  width:100vw; z-index:0; overflow:hidden;
}
.hero-bg-video{
  display:none; position:absolute; top:50%; left:50%; min-width:100%; min-height:100%;
  width:auto; height:auto; transform:translate(-50%,-50%); object-fit:cover; filter:saturate(0.85);
}
.hero-bg-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, var(--void) 0%, rgba(10,13,18,0.94) 32%, rgba(10,13,18,0.75) 62%, rgba(10,13,18,0.55) 100%),
    linear-gradient(180deg, rgba(10,13,18,0.2) 0%, var(--void) 100%);
}
.hero-video-section .hero-grid{position:relative; z-index:1;}
.hero-video-section #home-benefits{position:relative; z-index:1; padding-top:40px;}
@media (min-width:761px){
  .hero-bg-video{display:block;}
}
@media (max-width:760px){
  .hero-video-section{padding:56px 0 40px;}
}
.hero-logo-3d{width:100%; max-width:340px; height:auto; display:block;}
.hero-logo-icon{
  max-width:220px; margin:0 auto;
  filter:drop-shadow(0 16px 32px rgba(61,127,255,0.4));
  animation:heroLogoFloat 7s ease-in-out infinite;
}
@keyframes heroLogoFloat{
  0%, 100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-14px) rotate(1.5deg);}
}
@media (prefers-reduced-motion:reduce){
  .hero-logo-icon{animation:none;}
}
@media (max-width:760px){
  .hero-logo-3d{max-width:220px;}
}
.icon3d{display:block; width:auto;}

.review-badge{
  display:inline-flex; align-items:center; gap:12px; margin-top:24px; padding:12px 20px;
  background:rgba(255,255,255,0.04); border:1px solid var(--line); border-radius:12px;
  color:var(--ink);
}
.review-badge:hover{border-color:rgba(255,255,255,0.2);}
.review-badge-stars{display:flex; gap:2px;}
.review-star{width:18px; height:18px; color:#FBBF24;}
.review-star-full{fill:currentColor; stroke:none;}
.review-star-empty{fill:none; stroke:currentColor; stroke-width:1;}
.review-badge-score{font-family:'Space Grotesk'; font-weight:700; font-size:16px;}
.review-badge-divider{width:1px; height:20px; background:var(--line);}
.review-badge-platform{font-size:14px; font-weight:600;}
.review-badge-logo{height:20px; width:auto; display:block;}
.review-badge-count{font-weight:400; color:var(--mist); font-size:12px;}

.ticket-row-card{
  display:flex; align-items:center; gap:10px; margin-bottom:10px; color:var(--ink);
}
.ticket-id-badge{
  font-family:'IBM Plex Mono'; font-size:11px; color:var(--mist); background:var(--void);
  border:1px solid var(--line); border-radius:4px; padding:2px 6px; flex-shrink:0;
}
.app-id-badge{
  font-family:'IBM Plex Mono'; font-size:11px; color:var(--mist); background:var(--void);
  border:1px solid var(--line); border-radius:4px; padding:2px 7px; vertical-align:middle;
  display:inline-block; margin-right:4px;
}
.ticket-row-subject{font-size:13px; flex:1; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}

.page-tabs{display:flex; gap:4px; margin-bottom:20px; border-bottom:1px solid var(--line); flex-wrap:wrap;}
.page-tab{
  padding:10px 4px; margin-right:22px; font-size:14px; font-weight:500; color:var(--mist);
  border-bottom:2px solid transparent;
}
.page-tab:hover{color:var(--ink);}
.page-tab.active{color:var(--signal); border-bottom-color:var(--signal);}
@media (max-width:760px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{order:-1; max-width:280px; margin:0 auto;}
}

.benefits-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; margin-bottom:48px;}
.benefit{background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:20px;}

/* Homepage-only: "One form, every exchange" etc - subtle frosted-glass
   treatment, deliberately scoped to just this section (not the shared
   .benefit style used elsewhere) so other pages keep the plain solid
   card look. */
#home-benefits .benefit{
  background:rgba(255,255,255,0.04); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.09);
}
.benefit-icon{
  display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px;
  border-radius:8px; background:var(--signal-dim); color:var(--signal);
  font-family:'Space Grotesk'; font-weight:600; font-size:14px; margin-bottom:12px;
}
.benefit h3{font-size:15px; margin:0 0 6px;}
.benefit p{font-size:13px; color:var(--mist); margin:0; line-height:1.5;}

.section-title{font-size:20px; margin:0 0 20px;}
.section-title-spaced{margin-top:44px;}

.steps-row{display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:18px;}
.steps-row-vertical{grid-template-columns:1fr;}
.step{background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:20px;}
.step-num{display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:var(--signal-dim); color:var(--signal); font-family:'IBM Plex Mono'; font-size:13px; margin-bottom:10px;}
.step-icon{
  display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px;
  border-radius:10px; background:var(--signal-dim); color:var(--signal); margin-bottom:12px;
}
.step-icon svg{width:22px; height:22px;}
.step h3{font-size:16px; margin:0 0 6px;}
.step p{font-size:14px; color:var(--mist); margin:0;}

.cards{display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:14px; margin-bottom:48px;}
.exchange-cards-grid{grid-template-columns:repeat(4, 1fr);}
@media (max-width:760px){
  .exchange-cards-grid{grid-template-columns:repeat(2, 1fr);}
}
@media (max-width:480px){
  .exchange-cards-grid{grid-template-columns:1fr;}
}
.exchange-card{text-decoration:none; color:var(--ink); display:block;}
.card .ex-logo{width:32px; height:32px; border-radius:8px; background:var(--signal-dim); color:var(--signal); font-family:'Space Grotesk'; font-weight:600; font-size:13px; display:flex; align-items:center; justify-content:center; margin-bottom:10px;}
.exchange-card{padding:0; overflow:hidden;}
.exchange-card .ex-logo-img{
  width:100%; aspect-ratio:16/9; object-fit:cover; background:#fff;
  display:block; margin:0; padding:14px; box-sizing:border-box;
}
.exchange-card .ex-logo{width:100%; aspect-ratio:16/9; border-radius:0; font-size:28px; margin:0;}
.exchange-card .name, .exchange-card .desc{padding-left:16px; padding-right:16px;}
.exchange-card .name{margin-top:14px;}
.exchange-card .desc{margin-bottom:16px;}
.card .name{font-weight:600; font-size:14px;}
.card .desc{font-size:12px; color:var(--mist); margin-top:4px;}

.exchange-header{display:flex; align-items:center; gap:16px; margin-bottom:16px;}
.exchange-header-logo{width:96px; height:96px; border-radius:12px; object-fit:cover; background:#fff; padding:10px;}

.exchange-hero{
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  background:var(--slate); border:1px solid var(--line); border-radius:12px;
  padding:24px; margin-bottom:32px;
}
.exchange-hero-logo{width:80px; height:80px; border-radius:12px; object-fit:cover; background:#fff; padding:8px; flex-shrink:0;}
.exchange-hero-info{flex:1; min-width:180px;}
.exchange-hero-cta{margin-left:auto;}
@media (max-width:600px){
  .exchange-hero-cta{margin-left:0; width:100%; text-align:center; box-sizing:border-box;}
}

.exchange-layout{display:grid; grid-template-columns:1fr 320px; gap:40px; align-items:start;}
@media (max-width:760px){
  .exchange-layout{grid-template-columns:1fr;}
}

.related-articles-list{display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:14px;}
.related-article-card{
  display:block; background:var(--slate); border:1px solid var(--line); border-radius:8px;
  padding:16px; color:var(--ink);
}
.related-article-card:hover{border-color:var(--signal);}
.related-article-title{font-weight:600; font-size:14px; margin-bottom:6px;}
.related-article-excerpt{font-size:13px; color:var(--mist); line-height:1.5;}

.cta-banner{
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  background:var(--signal-dim); border:1px solid var(--line); border-radius:8px;
  padding:28px 28px; margin-top:40px; margin-bottom:48px;
}

.faq-accordion{border-top:1px solid var(--line); margin-bottom:8px;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-item summary.faq-q{
  font-weight:500; font-size:15px; padding:16px 28px 16px 0; margin:0;
  cursor:pointer; list-style:none; position:relative; color:var(--ink);
}
.faq-item summary.faq-q::-webkit-details-marker{display:none;}
.faq-item summary.faq-q::after{
  content:'+'; position:absolute; right:4px; top:14px;
  font-family:'IBM Plex Mono'; color:var(--signal); font-size:18px; line-height:1;
}
.faq-item[open] summary.faq-q::after{content:'−';}
.faq-item summary.faq-q:hover{color:var(--signal);}
.faq-a{font-size:14px; color:var(--mist); padding:0 28px 18px 0; line-height:1.6;}

.faq-contact-footer{
  margin-top:40px; padding:24px; text-align:center;
  background:var(--slate); border:1px solid var(--line); border-radius:8px;
}
.faq-contact-footer p{margin:0 0 8px; color:var(--mist); font-size:14px;}
.faq-contact-footer a{font-family:'IBM Plex Mono'; font-size:15px;}

.contact-layout{display:grid; grid-template-columns:1fr 340px; gap:40px; align-items:start; margin-top:24px;}
.contact-form{max-width:none;}
.contact-form textarea{resize:vertical;}
.contact-sidebar-title{font-family:'Space Grotesk'; font-weight:600; font-size:14px; margin-bottom:12px;}
.contact-sidebar .contact-shortcut-card{margin-bottom:10px;}
@media (max-width:760px){
  .contact-layout{grid-template-columns:1fr;}
}

.contact-shortcut-card{
  display:flex; align-items:flex-start; gap:10px; background:var(--slate); border:1px solid var(--line); border-radius:8px;
  padding:14px 16px; color:var(--ink); text-decoration:none; margin-bottom:10px;
}
.contact-shortcut-card:hover{border-color:var(--signal);}
.contact-shortcut-icon{flex-shrink:0; font-size:15px; line-height:1.4;}
.contact-shortcut-title{font-weight:600; font-size:14px; margin-bottom:4px;}
.contact-shortcut-desc{font-size:12px; color:var(--mist);}
.contact-shortcut-card-notice{
  cursor:default; background:linear-gradient(180deg, rgb(251 191 36 / 8%), transparent);
  border-color:rgba(251,191,36,0.35);
}
.contact-shortcut-card-notice .contact-shortcut-title{color:var(--warn);}
.contact-shortcut-card-notice .contact-shortcut-icon{color:var(--warn);}

.about-hero{padding:24px 0 32px; max-width:1040px;}
.about-hero-grid{display:grid; grid-template-columns:1.2fr 1fr; gap:36px; align-items:center;}
.about-hero h1{font-size:36px; line-height:1.2; margin:0 0 14px;}
.about-hero-visual{display:flex; justify-content:flex-end;}
.about-hero-visual img{max-height:220px; width:auto; height:auto; border-radius:16px; display:block;}
@media (max-width:760px){
  .about-hero-grid{grid-template-columns:1fr;}
  .about-hero-visual{order:-1; max-width:320px; margin:0 auto;}
}

.about-stat-strip{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:20px;
  padding:28px 0; margin-bottom:8px; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.about-stat-num{font-family:'Space Grotesk'; font-weight:700; font-size:34px; color:var(--signal);}
.about-stat-badge{
  display:inline-flex; font-family:'Space Grotesk'; font-weight:700; font-size:20px;
  color:var(--signal); background:var(--signal-dim); padding:6px 14px; border-radius:999px;
}
.about-stat-label{font-size:13px; color:var(--mist); margin-top:8px;}

.about-principles{display:flex; flex-direction:column; gap:20px;}
.about-principle{display:flex; gap:16px; align-items:flex-start;}
.about-principle .step-icon{flex-shrink:0; margin-bottom:0;}
.about-principle h3{font-size:15px; margin:0 0 6px;}
.about-principle p{font-size:14px; color:var(--mist); margin:0; line-height:1.6;}

.status-glossary{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px;}
.status-glossary-item{background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:16px;}
.status-glossary-item .badge{margin-bottom:10px;}
.status-glossary-item p{margin:0; font-size:13px; color:var(--mist); line-height:1.5;}

.donate-layout{display:grid; grid-template-columns:1fr 340px; gap:40px; align-items:start; margin-top:24px;}
.donate-wallets{display:flex; flex-direction:column; gap:12px;}
.donate-wallet-card{background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:18px;}
.donate-wallet-network{font-weight:600; font-size:14px; margin-bottom:8px;}
.donate-wallet-address{font-size:13px; color:var(--signal); word-break:break-all;}
@media (max-width:760px){
  .donate-layout{grid-template-columns:1fr;}
}

/* --- Submission form redesign --- */
.submission-form{max-width:none;}
.form-section{background:var(--slate); border:1px solid var(--line); border-radius:8px; padding:20px; margin-bottom:20px;}
.form-section-label{display:block; font-family:'Space Grotesk'; font-weight:600; font-size:14px; margin-bottom:14px;}
.import-my-token-inline{margin-bottom:18px;}
.import-my-token-inline label{font-size:13px; margin-bottom:6px;}

.form-divider{display:flex; align-items:center; gap:12px; margin:18px 0; color:var(--mist); font-size:12px;}
.form-divider::before, .form-divider::after{content:''; flex:1; height:1px; background:var(--line);}

.exchange-verify-links{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px;}
.exchange-verify-link-item{
  display:flex; align-items:center; gap:8px; background:var(--slate); border:1px solid var(--line);
  border-radius:999px; padding:8px 16px 8px 8px; color:var(--ink); text-decoration:none; font-size:13px;
}
.exchange-verify-link-item:hover{border-color:var(--signal);}
.exchange-verify-link-logo{width:24px; height:24px; border-radius:50%; object-fit:cover; background:#fff;}
.exchange-verify-link-fallback{
  width:24px; height:24px; border-radius:50%; background:var(--signal-dim); color:var(--signal);
  font-family:'Space Grotesk'; font-weight:600; font-size:10px; display:flex; align-items:center; justify-content:center;
}

.logo-asset-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; margin-bottom:32px;}
.logo-asset-card{border:1px solid var(--line); border-radius:10px; overflow:hidden; background:var(--slate);}
.logo-asset-preview{display:flex; align-items:center; justify-content:center; padding:36px 20px; min-height:100px;}
.logo-asset-preview-dark{background:var(--void);}
.logo-asset-preview-light{background:#fff;}
.logo-asset-footer{
  display:flex; align-items:center; justify-content:space-between; gap:10px; padding:12px 16px;
  border-top:1px solid var(--line); font-size:13px; color:var(--mist);
}

.news-page-wrap{}
.news-feed{display:flex; flex-direction:column;}
.news-feed-item{display:flex; gap:20px; padding:24px 0; border-bottom:1px solid var(--line);}
.news-feed-item:last-child{border-bottom:none;}
.news-feed-date{flex-shrink:0; width:64px; text-align:center;}
.news-feed-day{font-family:'Space Grotesk'; font-weight:700; font-size:24px; color:var(--ink); line-height:1;}
.news-feed-month{font-size:11px; color:var(--mist); text-transform:uppercase; letter-spacing:0.04em; margin-top:4px;}
.news-feed-tag{
  display:inline-block; font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.03em;
  padding:3px 9px; border-radius:999px; margin-bottom:8px;
}
.news-feed-tag-announcement{background:var(--signal-dim); color:var(--signal);}
.news-feed-tag-update{background:rgba(138,147,166,0.15); color:var(--mist);}
.news-feed-tag-milestone{background:rgba(52,211,153,0.14); color:var(--ok);}
.news-feed-title{font-size:17px; margin:0 0 8px;}
.news-feed-title a{color:var(--ink); text-decoration:none;}
.news-feed-title a:hover{color:var(--signal);}

.referral-stats-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:12px; margin:20px 0 28px;}
.referral-stat-card{background:var(--slate); border:1px solid var(--line); border-radius:10px; padding:16px 18px;}
.referral-stat-label{font-size:12px; color:var(--mist); margin-bottom:6px;}
.referral-stat-value{font-family:'Space Grotesk'; font-weight:700; font-size:22px;}
.referral-link-box{display:flex; gap:8px;}
.referral-link-box input{
  flex:1; background:var(--slate); border:1px solid var(--line); border-radius:8px; color:var(--ink);
  font-family:'IBM Plex Mono'; font-size:13px; padding:9px 12px;
}
.referral-table{display:flex; flex-direction:column; border-top:1px solid var(--line);}
.referral-table-row{
  display:flex; justify-content:space-between; align-items:center; gap:10px; padding:11px 2px;
  border-bottom:1px solid var(--line); font-size:13px;
}
.referral-withdraw-form{max-width:420px;}

.referral-calc{
  display:grid; grid-template-columns:1.3fr 1fr; gap:24px; align-items:stretch;
  background:var(--slate); border:1px solid var(--line); border-radius:12px; padding:24px;
}
.referral-calc-inputs{display:flex; flex-direction:column; gap:14px;}
.referral-calc-result{
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  background:var(--signal-dim); border-radius:10px; padding:20px;
}
.referral-calc-result-label{font-size:12px; color:var(--mist); margin-bottom:6px;}
.referral-calc-result-value{font-family:'Space Grotesk'; font-weight:700; font-size:36px; color:var(--signal);}
.referral-calc-result-breakdown{font-size:12px; color:var(--mist); margin-top:8px;}
@media (max-width:640px){
  .referral-calc{grid-template-columns:1fr;}
}
.news-feed-text{color:var(--mist); font-size:14px; line-height:1.7;}
.news-feed-text p{margin:0 0 10px;}
.news-feed-text a{color:var(--signal);}
.form-field{margin-bottom:16px;}
.form-field:last-child{margin-bottom:0;}
.form-field label{display:block; font-size:13px; color:var(--mist); margin-bottom:6px;}
.form-field input, .form-field textarea{width:100%; box-sizing:border-box;}
.form-grid-2{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:520px){.form-grid-2{grid-template-columns:1fr;}}
.optional-tag{color:var(--mist); font-size:11px; text-transform:uppercase; letter-spacing:0.03em;}
.field-error{color:var(--bad); font-size:12px; margin-top:6px;}
.form-error-summary{
  background:rgba(248,113,113,0.08); border:1px solid rgba(248,113,113,0.35); border-radius:8px;
  padding:14px 18px; margin-bottom:20px; font-size:13px; color:var(--bad);
}
.form-error-summary strong{display:block; margin-bottom:6px; color:var(--bad);}
.form-error-summary ul{margin:0; padding-left:18px;}
.form-error-summary li{margin:3px 0;}
.form-error-summary a{color:var(--bad); text-decoration:underline;}
.field-callout{
  display:flex; gap:8px; align-items:flex-start; margin-top:10px;
  background:rgba(251,191,36,0.08); border:1px solid rgba(251,191,36,0.3); border-radius:8px;
  padding:10px 12px; font-size:12px; color:var(--warn); line-height:1.5;
}

.exchange-picker{display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:10px;}
.exchange-pick-card{
  position:relative; display:flex; flex-direction:column; align-items:center; gap:8px;
  background:var(--void); border:1.5px solid var(--line); border-radius:8px; padding:14px 10px;
  cursor:pointer; text-align:center;
}
.exchange-pick-card:hover{border-color:var(--signal);}
.exchange-pick-card input{position:absolute; opacity:0; width:0; height:0;}
.exchange-pick-logo{width:36px; height:36px; border-radius:8px; object-fit:cover; background:#fff;}
.exchange-pick-name{font-size:13px; font-weight:500;}
.exchange-pick-check{
  display:none; position:absolute; top:8px; right:8px; width:18px; height:18px; border-radius:50%;
  background:var(--signal); color:#fff; font-size:11px; align-items:center; justify-content:center;
}
.exchange-pick-card:has(input:checked){border-color:var(--signal); background:var(--signal-dim);}
.exchange-pick-card:has(input:checked) .exchange-pick-check{display:flex;}
.exchange-pick-card.is-selected{border-color:var(--signal); background:var(--signal-dim);}
.exchange-pick-card.is-selected .exchange-pick-check{display:flex;}

.confirm-checkbox{
  display:flex; align-items:center; gap:10px; background:var(--slate); border:1px solid var(--line);
  border-radius:8px; padding:14px 16px; cursor:pointer; font-size:13px; color:var(--ink);
}
.confirm-checkbox input{width:16px; height:16px; flex-shrink:0; margin:0;}
.details-hidden{display:none;}

.disclaimer-line{margin-top:16px; color:var(--mist); font-size:13px;}

.pricing-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:20px; margin:24px 0;}
.pricing-card{padding:28px;}
.pricing-card-featured{border-color:var(--signal); background:linear-gradient(180deg, var(--signal-dim), var(--slate) 60%);}
.pricing-name{font-size:13px; color:var(--mist); text-transform:uppercase; letter-spacing:0.04em; margin-bottom:8px;}
.pricing-amount{font-family:'Space Grotesk'; font-weight:700; font-size:32px; color:var(--ink);}
.pricing-sub{color:var(--mist); font-size:13px; margin-bottom:18px;}
.pricing-features{list-style:none; margin:0 0 22px; padding:0;}
.pricing-features li{font-size:13px; color:var(--mist); padding:8px 0 8px 20px; position:relative; border-top:1px solid var(--line); line-height:1.5;}
.pricing-features li:first-child{border-top:none;}
.pricing-features li::before{content:'✓'; position:absolute; left:0; color:var(--signal); font-family:'IBM Plex Mono';}

.pricing-compare{border:1px solid var(--line); border-radius:8px; overflow:hidden; margin-bottom:32px;}
.pricing-compare-row{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:16px; padding:14px 18px; border-top:1px solid var(--line); align-items:center;}
.pricing-compare-row:first-child{border-top:none;}
.pricing-compare-header{background:var(--slate); font-family:'Space Grotesk'; font-weight:600; font-size:13px;}
.pricing-compare-row div{font-size:13px; color:var(--mist);}
.pricing-compare-row:not(.pricing-compare-header) div:first-child{color:var(--ink); font-weight:500;}
@media (max-width:640px){
  .pricing-compare-row{grid-template-columns:1fr; gap:4px; padding:14px 16px;}
  .pricing-compare-row div:not(:first-child)::before{content attr(data-label) ": ";}
}

.verified-callout{
  display:flex; align-items:flex-start; gap:14px;
  background:linear-gradient(180deg, rgb(52 211 153 / 6%), transparent);
  border:1px solid rgba(52,211,153,0.25); border-radius:8px; padding:20px;
}
.verified-callout-title{margin:0 0 6px; color:var(--ok); font-weight:600; font-size:14px;}
.verified-callout-body{margin:0; color:var(--mist); font-size:13px; line-height:1.6; max-width:720px;}
.verified-callout-blue{
  background:linear-gradient(180deg, rgb(61 127 255 / 6%), transparent);
  border-color:rgba(61,127,255,0.3);
}
.verified-callout-blue .verified-callout-title{color:var(--signal);}
.verified-callout-blue .verified-banner-icon{color:var(--signal);}
.verified-callout-red{
  background:linear-gradient(180deg, rgb(248 113 113 / 8%), transparent);
  border-color:rgba(248,113,113,0.3);
}
.verified-callout-red .verified-callout-title{color:var(--bad);}
.verified-callout-red .verified-banner-icon{color:var(--bad);}

.footer-links{display:flex; gap:16px; flex-wrap:wrap; justify-content:center; margin-bottom:10px;}
.footer-links a{color:var(--mist); font-size:12px;}
.footer-links a:hover{color:var(--signal);}
.footer-link-quiet{opacity:0.55; margin-left:4px;}
.footer-link-quiet:hover{opacity:1;}

.footer-grid{
  max-width:1040px; margin:0 auto;
  display:grid; grid-template-columns:1.4fr repeat(3, 1fr); gap:32px;
  padding-bottom:36px;
}
.footer-brand .logo-block{margin-bottom:10px;}
.footer-slogan{
  color:var(--signal); font-size:11px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
  margin:10px 0 4px;
}
.footer-tagline{color:var(--mist); font-size:13px; max-width:220px; margin:0;}
.footer-social{display:flex; gap:12px; margin-top:16px;}
.footer-social a{
  display:flex; align-items:center; justify-content:center; width:32px; height:32px;
  border-radius:50%; background:var(--slate); border:1px solid var(--line); color:var(--mist);
}
.footer-social a:hover{color:var(--signal); border-color:var(--signal);}
.footer-social svg{width:16px; height:16px;}
.footer-col{display:flex; flex-direction:column; gap:10px;}
.footer-col-title{font-family:'Space Grotesk'; font-weight:600; font-size:13px; color:var(--ink); margin-bottom:4px;}
.footer-col a{color:var(--mist); font-size:13px;}
.footer-col a:hover{color:var(--signal);}
.footer-bottom{
  max-width:1040px; margin:0 auto; padding-top:20px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
  color:var(--mist); font-size:12px;
}
.footer-bottom-links{display:flex; gap:16px;}
.footer-bottom-links a{color:var(--mist); font-size:12px;}
.footer-bottom-links a:hover{color:var(--signal);}
@media (max-width:760px){
  .footer-grid{grid-template-columns:1fr 1fr; row-gap:28px;}
  .footer-brand{grid-column:1 / -1;}
}

.blog-detail-grid{display:grid; grid-template-columns:1fr 280px; gap:40px; align-items:start;}
.blog-detail-main{min-width:0;}
.blog-sidebar-card{background:var(--slate); border:1px solid var(--line); border-radius:10px; padding:18px; position:sticky; top:20px;}
.blog-sidebar-title{font-family:'Space Grotesk'; font-weight:600; font-size:13px; margin-bottom:12px;}
.blog-sidebar-item{display:block; padding:10px 0; border-bottom:1px solid var(--line); text-decoration:none; color:var(--ink);}
.blog-sidebar-item:last-child{border-bottom:none;}
.blog-sidebar-item-title{display:block; font-size:13px; font-weight:500; line-height:1.4; margin-bottom:4px;}
.blog-sidebar-item:hover .blog-sidebar-item-title{color:var(--signal);}
.blog-sidebar-item-date{font-size:11px; color:var(--mist); font-family:'IBM Plex Mono';}
@media (max-width:820px){
  .blog-detail-grid{grid-template-columns:1fr;}
  .blog-sidebar-card{position:static;}
}

.exchange-stats-row{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:14px;
  margin:20px 0 32px; padding:20px; background:var(--slate); border:1px solid var(--line); border-radius:10px;
}
.exchange-stat{text-align:center;}
.exchange-stat-value{font-family:'Space Grotesk'; font-weight:700; font-size:18px; color:var(--ink); margin-bottom:4px; word-break:break-word;}
.exchange-stat-label{font-size:11px; color:var(--mist); text-transform:uppercase; letter-spacing:0.04em;}
@media (max-width:520px){
  .exchange-stats-row{grid-template-columns:repeat(2, 1fr);}
}

.share-buttons{display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin:28px 0; padding-top:20px; border-top:1px solid var(--line);}
.share-buttons-label{font-size:13px; color:var(--mist); margin-right:4px;}
.share-btn{
  display:inline-flex; align-items:center; gap:6px; background:var(--slate); border:1px solid var(--line);
  border-radius:999px; padding:7px 14px; font-size:13px; color:var(--ink); text-decoration:none;
  cursor:pointer; font-family:'IBM Plex Sans';
}
.share-btn:hover{border-color:var(--signal); color:var(--signal);}
.share-btn-facebook{background:rgba(24,119,242,0.12); border-color:rgba(24,119,242,0.4); color:#1877F2;}
.share-btn-facebook:hover{background:rgba(24,119,242,0.2); border-color:#1877F2; color:#1877F2;}
