html,
body{
  min-height:100%;
  margin:0;
  font-family:"Segoe UI",Inter,Roboto,Arial,sans-serif;
  background:#f5f8fa;
}
body[data-theme="dark"]{
  background:#071018;
}
body button,
body input,
body select,
body textarea,
body a,
body h1,
body h2,
body h3,
body p,
body span,
body strong,
body b{
  font-family:"Segoe UI",Inter,Roboto,Arial,sans-serif;
  letter-spacing:0;
}

.wm-site{
  min-height:100vh;
  margin:0;
  font-family:"Segoe UI",Inter,Roboto,Arial,sans-serif;
  color:#14202b;
  background:#f5f8fa;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}
.wm-site button,
.wm-site input,
.wm-site select,
.wm-site textarea,
.wm-site a,
.wm-site h1,
.wm-site h2,
.wm-site h3,
.wm-site p,
.wm-site span,
.wm-site strong,
.wm-site b{
  font-family:"Segoe UI",Inter,Roboto,Arial,sans-serif;
  letter-spacing:0;
}
.wm-site[data-theme="dark"]{
  color:#eef3f6;
  background:#071018;
}
.wm-site *{ box-sizing:border-box; }
.wm-bg{
  position:fixed;
  inset:0;
  z-index:-10;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 8%, rgba(25,140,164,.10), transparent 34%),
    linear-gradient(180deg,#f8fafb 0%,#edf3f6 100%);
}
.wm-site[data-theme="dark"] .wm-bg{
  background:
    radial-gradient(circle at 18% 8%, rgba(55,191,203,.12), transparent 34%),
    linear-gradient(180deg,#071018 0%,#0b141d 100%);
}
.wm-wrap{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.wm-topbar{
  position:relative;
  z-index:40;
  color:#dce7ec;
  background:#08131c;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:.78rem;
  font-weight:750;
}
.wm-topbar__inner{
  min-height:32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  opacity:.9;
}

.wm-nav{
  position:sticky;
  top:0;
  z-index:35;
  border-bottom:1px solid rgba(120,138,154,.24);
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  box-shadow:0 12px 34px rgba(15,23,42,.07);
}
.wm-site[data-theme="dark"] .wm-nav{
  background:rgba(8,16,24,.92);
  border-bottom-color:rgba(255,255,255,.09);
}
.wm-nav__inner{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.wm-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:inherit;
  text-decoration:none;
  font-weight:850;
  white-space:nowrap;
}
.wm-brand__mark{
  width:58px;
  height:42px;
  display:grid;
  place-items:center;
  color:#fff;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  font-weight:950;
  overflow:hidden;
}
.wm-brand__mark img{
  display:block;
  width:56px;
  height:auto;
}
.wm-nav__links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
}
.wm-link{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 .7rem;
  color:inherit;
  text-decoration:none;
  font-weight:780;
  opacity:.74;
}
.wm-link:hover{ opacity:1; }
.wm-btn,
.wm-select{
  min-height:42px;
  border-radius:8px;
  border:1px solid rgba(104,122,138,.32);
  padding:.72rem 1rem;
  color:inherit;
  background:rgba(255,255,255,.86);
  text-decoration:none;
  font-size:.95rem;
  font-weight:850;
  line-height:1;
  cursor:pointer;
}
.wm-site[data-theme="dark"] .wm-btn,
.wm-site[data-theme="dark"] .wm-select{
  background:rgba(17,29,40,.82);
  border-color:rgba(255,255,255,.13);
}
.wm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  transition:transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.wm-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(227,27,35,.46);
}
.wm-btn--primary{
  border-color:#c91a20;
  color:#fff;
  background:linear-gradient(135deg,#e31b23 0%,#c9151c 58%,#f2c500 140%);
  box-shadow:0 16px 32px rgba(227,27,35,.26);
}
.wm-site[data-theme="dark"] .wm-btn.wm-btn--primary,
body[data-theme="dark"] .wm-btn.wm-btn--primary{
  border-color:#c91a20;
  color:#fff;
  background:linear-gradient(135deg,#e31b23 0%,#c9151c 58%,#f2c500 140%);
  box-shadow:0 16px 32px rgba(227,27,35,.26);
}
.wm-btn--light{
  color:#08131c;
  background:#fff;
  border-color:rgba(255,255,255,.82);
  box-shadow:0 14px 28px rgba(0,0,0,.16);
}
.wm-site[data-theme="dark"] .wm-btn.wm-btn--light,
body[data-theme="dark"] .wm-btn.wm-btn--light{
  color:#08131c;
  background:#fff;
  border-color:rgba(255,255,255,.82);
}
.wm-select{
  appearance:none;
  min-width:76px;
  padding-right:1.1rem;
  text-align:center;
}
.wm-lang{
  position:relative;
  display:inline-flex;
}
.wm-lang__trigger{
  min-height:42px;
  min-width:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(104,122,138,.32);
  border-radius:8px;
  padding:.54rem .72rem;
  color:inherit;
  background:rgba(255,255,255,.86);
  font-size:.95rem;
  font-weight:900;
  line-height:1;
  cursor:pointer;
}
.wm-lang__trigger span{
  display:none;
}
.wm-site[data-theme="dark"] .wm-lang__trigger,
body[data-theme="dark"] .wm-lang__trigger{
  background:rgba(17,29,40,.82);
  border-color:rgba(255,255,255,.13);
}
.wm-lang__trigger::after{
  content:"";
  width:0;
  height:0;
  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-top:5px solid currentColor;
  opacity:.8;
}
.wm-flag{
  width:26px;
  height:18px;
  display:block;
  flex:0 0 auto;
  border-radius:4px;
  object-fit:cover;
  box-shadow:0 0 0 1px rgba(0,0,0,.24);
}
.wm-lang__panel{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  z-index:70;
  min-width:58px;
  padding:6px;
  border:1px solid rgba(104,122,138,.28);
  border-radius:8px;
  background:#fff;
  box-shadow:0 20px 48px rgba(4,10,16,.24);
  opacity:0;
  visibility:hidden;
  transform:translateY(-4px);
  pointer-events:none;
  transition:opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.wm-site[data-theme="dark"] .wm-lang__panel,
body[data-theme="dark"] .wm-lang__panel{
  background:#101b26;
  border-color:rgba(255,255,255,.13);
}
.wm-lang.is-open .wm-lang__panel{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}
.wm-lang__option{
  width:46px;
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  border:0;
  border-radius:7px;
  padding:.5rem .58rem;
  color:#14202b;
  background:transparent;
  font-size:.92rem;
  font-weight:850;
  text-align:left;
  cursor:pointer;
}
.wm-lang__option span{
  display:none;
}
.wm-site[data-theme="dark"] .wm-lang__option,
body[data-theme="dark"] .wm-lang__option{
  color:#eef3f6;
}
.wm-lang__option:hover,
.wm-lang__option.is-active{
  background:rgba(227,27,35,.10);
}
.wm-site[data-theme="dark"] .wm-lang__option:hover,
.wm-site[data-theme="dark"] .wm-lang__option.is-active,
body[data-theme="dark"] .wm-lang__option:hover,
body[data-theme="dark"] .wm-lang__option.is-active{
  background:rgba(255,240,0,.10);
}

.wm-hero{
  position:relative;
  min-height:640px;
  overflow:hidden;
  isolation:isolate;
  color:#fff;
  background:#07121d;
}
.wm-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-4;
  background:url('../img/porto-map.png') center 48% / cover no-repeat;
  transform:scale(1.02);
}
.wm-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  background:
    linear-gradient(90deg, rgba(6,14,22,.96) 0%, rgba(6,14,22,.88) 34%, rgba(6,14,22,.50) 64%, rgba(6,14,22,.82) 100%),
    linear-gradient(180deg, rgba(6,14,22,.20) 0%, rgba(6,14,22,.78) 100%);
}
.wm-hero__image,
.wm-hero__shade{
  display:none;
}
.wm-hero__content{
  min-height:640px;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(380px,.82fr);
  align-items:center;
  gap:58px;
  padding:64px 0;
}
.wm-hero__copy{
  max-width:690px;
}
.wm-kicker{
  display:block;
  color:#c91a20;
  font-size:.78rem;
  letter-spacing:.12em !important;
  text-transform:uppercase;
  font-weight:950;
}
.wm-hero .wm-kicker{
  color:#fff000;
}
.wm-title{
  margin:1rem 0 1rem;
  max-width:13ch;
  color:#fff !important;
  font-size:clamp(2.65rem,4.5vw,4.05rem);
  line-height:1.02;
  font-weight:920;
  letter-spacing:0 !important;
}
.wm-sub{
  max-width:62ch;
  margin:0;
  color:#d7e3ea;
  font-size:1.08rem;
  line-height:1.72;
  font-weight:520;
}
.wm-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin-top:28px;
}
.wm-proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.wm-proof span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:.44rem .7rem;
  color:#eaf6f8;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.15);
  border-radius:8px;
  font-size:.88rem;
  font-weight:830;
}

.wm-hero-preview{
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:rgba(7,17,26,.82);
  box-shadow:0 28px 80px rgba(0,0,0,.32);
  overflow:hidden;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
.wm-preview-top{
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 18px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.wm-preview-top span{
  font-size:.98rem;
  font-weight:900;
}
.wm-preview-top strong{
  padding:.36rem .64rem;
  border-radius:8px;
  color:#171000;
  background:#fff000;
  font-size:.78rem;
  font-weight:950;
}
.wm-dashboard-mock{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  min-height:246px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.wm-mock-sidebar{
  display:grid;
  align-content:start;
  gap:12px;
  padding:20px 16px;
  border-right:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.045);
}
.wm-mock-sidebar span{
  width:38px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.22);
}
.wm-mock-sidebar span:first-child{
  height:34px;
  border-radius:8px;
  background:linear-gradient(135deg,#ed1c24,#fff000);
}
.wm-mock-main{
  padding:20px;
}
.wm-mock-row{
  height:14px;
  width:64%;
  border-radius:999px;
  background:rgba(255,255,255,.28);
}
.wm-mock-row--strong{
  height:20px;
  width:46%;
  background:rgba(255,255,255,.46);
}
.wm-mock-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:20px 0;
}
.wm-mock-stats span{
  min-height:76px;
  padding:14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:8px;
  background:rgba(255,255,255,.07);
}
.wm-mock-stats b{
  display:block;
  color:#fff;
  font-size:1.55rem;
  line-height:1;
}
.wm-mock-stats em{
  display:block;
  margin-top:8px;
  color:#aebfcb;
  font-style:normal;
  font-size:.82rem;
  font-weight:800;
}
.wm-mock-table{
  display:grid;
  gap:10px;
}
.wm-mock-table span{
  height:13px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(255,255,255,.34),rgba(255,255,255,.12));
}
.wm-mock-table span:nth-child(2){ width:84%; }
.wm-mock-table span:nth-child(3){ width:68%; }
.wm-preview-list{
  padding:14px 20px 20px;
}
.wm-preview-list div{
  display:grid;
  grid-template-columns:10px minmax(0,1fr);
  gap:12px;
  align-items:center;
  padding:10px 0;
}
.wm-preview-list span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff000;
  box-shadow:0 0 0 4px rgba(255,240,0,.13);
}
.wm-preview-list p{
  margin:0;
  color:#d7e3ea;
  font-size:.95rem;
  font-weight:760;
  line-height:1.45;
}

.wm-section{
  position:relative;
  padding:64px 0;
}
.wm-section--intro{
  padding-top:54px;
  background:#f8fbfc;
}
.wm-site[data-theme="dark"] .wm-section--intro{
  background:#0a141d;
}
.wm-section-heading{
  max-width:790px;
}
.wm-section-heading--split{
  max-width:none;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}
.wm-section h2,
.wm-final h2{
  margin:.7rem 0 .85rem;
  max-width:17ch;
  color:#101820;
  font-size:clamp(2rem,3.2vw,3.1rem);
  line-height:1.06;
  font-weight:900;
}
.wm-site[data-theme="dark"] .wm-section h2,
.wm-site[data-theme="dark"] .wm-final h2{
  color:#f4f8fa;
}
.wm-section-heading p{
  margin:0;
  color:#536474;
  font-size:1.04rem;
  line-height:1.72;
}
.wm-site[data-theme="dark"] .wm-section-heading p{
  color:#b8c7d1;
}
.wm-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.wm-feature-card,
.wm-card,
.wm-panel{
  border:1px solid rgba(105,123,139,.22);
  border-radius:8px;
  background:rgba(255,255,255,.82);
  box-shadow:0 18px 46px rgba(21,38,52,.07);
}
.wm-site[data-theme="dark"] .wm-feature-card,
.wm-site[data-theme="dark"] .wm-card,
.wm-site[data-theme="dark"] .wm-panel{
  border-color:rgba(185,202,214,.15);
  background:rgba(17,27,36,.78);
  box-shadow:0 22px 60px rgba(0,0,0,.24);
}
.wm-feature-card{
  min-height:228px;
  padding:22px;
}
.wm-feature-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:30px;
  margin-bottom:22px;
  border-radius:8px;
  color:#171000;
  background:#fff000;
  font-size:.82rem;
  font-weight:950;
}
.wm-feature-card h3,
.wm-card h3{
  margin:0 0 .65rem;
  color:#111b24;
  font-size:1.14rem;
  font-weight:900;
}
.wm-site[data-theme="dark"] .wm-feature-card h3,
.wm-site[data-theme="dark"] .wm-card h3{
  color:#f4f8fa;
}
.wm-feature-card p,
.wm-card p{
  margin:0;
  color:#5e6f7e;
  line-height:1.62;
}
.wm-site[data-theme="dark"] .wm-feature-card p,
.wm-site[data-theme="dark"] .wm-card p{
  color:#b5c2cd;
}
.wm-section--workflow{
  background:#edf4f7;
  border-top:1px solid rgba(107,124,139,.16);
  border-bottom:1px solid rgba(107,124,139,.16);
}
.wm-site[data-theme="dark"] .wm-section--workflow{
  background:#0c1822;
  border-color:rgba(185,202,214,.12);
}
.wm-workflow{
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);
  gap:38px;
  align-items:start;
}
.wm-steps{
  display:grid;
  gap:12px;
}
.wm-steps div{
  display:grid;
  grid-template-columns:48px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:18px;
  border:1px solid rgba(107,124,139,.22);
  border-radius:8px;
  background:rgba(255,255,255,.82);
}
.wm-site[data-theme="dark"] .wm-steps div{
  border-color:rgba(185,202,214,.15);
  background:rgba(17,27,36,.78);
}
.wm-steps b{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:8px;
  color:#fff;
  background:#e31b23;
  font-weight:950;
}
.wm-steps h3{
  margin:0 0 6px;
  color:#111b24;
  font-size:1.06rem;
  font-weight:900;
}
.wm-site[data-theme="dark"] .wm-steps h3{
  color:#f4f8fa;
}
.wm-steps p{
  grid-column:2;
  margin:0;
  color:#5f6f7e;
  line-height:1.6;
}
.wm-site[data-theme="dark"] .wm-steps p{
  color:#b5c2cd;
}
.wm-final{
  position:relative;
  padding:64px 0 78px;
}
.wm-final__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:30px 0 0;
  border-top:1px solid rgba(107,124,139,.2);
}
.wm-site[data-theme="dark"] .wm-final__inner{
  border-top-color:rgba(185,202,214,.14);
}

.wm-panel{ padding:20px; }
.wm-panel__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.wm-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.wm-stat{
  padding:14px;
  border-radius:8px;
  background:rgba(11,127,159,.08);
}
.wm-stat strong{
  display:block;
  font-size:1.5rem;
}
.wm-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.wm-card{ padding:20px; }
.wm-table{
  width:100%;
  border-collapse:collapse;
}
.wm-table th,
.wm-table td{
  padding:12px;
  border-bottom:1px solid rgba(148,163,184,.2);
  text-align:left;
}
.wm-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-radius:8px;
  padding:.32rem .62rem;
  font-size:.82rem;
  font-weight:900;
  background:rgba(11,127,159,.12);
  color:#0b6f88;
}
.wm-site[data-theme="dark"] .wm-pill{ color:#8ee9dc; }
.wm-color{
  width:22px;
  height:22px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,.12);
  display:inline-block;
  vertical-align:middle;
  margin-right:8px;
}
.wm-form{
  display:grid;
  gap:14px;
}
.wm-field label{
  display:block;
  font-weight:850;
  margin-bottom:6px;
}
.wm-input,
.wm-radio-row{
  width:100%;
  border:1px solid rgba(108,126,142,.32);
  border-radius:8px;
  padding:.72rem .85rem;
  color:inherit;
  background:rgba(255,255,255,.75);
}
.wm-site[data-theme="dark"] .wm-input,
.wm-site[data-theme="dark"] .wm-radio-row{
  background:rgba(9,15,22,.7);
}
.wm-radio-row{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.wm-domain-choice{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  margin:0;
  padding:.4rem .55rem;
  border-radius:8px;
  cursor:pointer;
}
.wm-domain-choice span{
  font-weight:850;
}
.wm-domain-input{
  display:flex;
  align-items:stretch;
  width:100%;
}
.wm-domain-input .wm-input{
  flex:1 1 auto;
  min-width:0;
  border-top-right-radius:0;
  border-bottom-right-radius:0;
}
.wm-domain-input span{
  flex:0 1 auto;
  display:inline-flex;
  align-items:center;
  max-width:50%;
  border:1px solid rgba(108,126,142,.32);
  border-left:0;
  border-radius:0 8px 8px 0;
  padding:0 .85rem;
  color:#526273;
  background:rgba(232,238,242,.92);
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.wm-site[data-theme="dark"] .wm-domain-input span{
  color:#c7d2da;
  background:rgba(9,15,22,.9);
}
.wm-field small{
  display:block;
  margin-top:7px;
  color:#667789;
  line-height:1.45;
}
.wm-site[data-theme="dark"] .wm-field small{
  color:#a8b6c2;
}
[data-domain-panel][hidden]{
  display:none;
}
@media (max-width:640px){
  .wm-domain-input{
    display:grid;
    grid-template-columns:minmax(0,1fr);
  }
  .wm-domain-input .wm-input{
    border-radius:8px 8px 0 0;
  }
  .wm-domain-input span{
    max-width:none;
    min-height:38px;
    border-left:1px solid rgba(108,126,142,.32);
    border-top:0;
    border-radius:0 0 8px 8px;
  }
}
.wm-alert{
  padding:12px 14px;
  border-radius:8px;
  margin-bottom:14px;
  border:1px solid rgba(148,163,184,.26);
  background:rgba(11,127,159,.08);
}
.wm-alert--bad{
  background:rgba(220,38,38,.1);
  border-color:rgba(220,38,38,.25);
}
.wm-admin-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.wm-demo-page{
  padding-top:34px;
}
.wm-demo-shell{
  display:grid;
  grid-template-columns:250px minmax(0,1fr);
  gap:18px;
  align-items:start;
}
.wm-demo-sidebar,
.wm-demo-main{
  border:1px solid rgba(105,123,139,.22);
  border-radius:8px;
  background:rgba(255,255,255,.82);
  box-shadow:0 18px 46px rgba(21,38,52,.07);
}
.wm-site[data-theme="dark"] .wm-demo-sidebar,
.wm-site[data-theme="dark"] .wm-demo-main{
  border-color:rgba(185,202,214,.15);
  background:rgba(17,27,36,.78);
  box-shadow:0 22px 60px rgba(0,0,0,.24);
}
.wm-demo-sidebar{
  position:sticky;
  top:96px;
  overflow:hidden;
}
.wm-demo-sidebar__head{
  padding:18px;
  border-bottom:1px solid rgba(148,163,184,.18);
}
.wm-demo-sidebar__head strong{
  display:block;
  font-size:1.05rem;
  font-weight:950;
}
.wm-demo-sidebar__head span{
  display:block;
  margin-top:4px;
  color:#647484;
  font-size:.88rem;
  font-weight:750;
}
.wm-site[data-theme="dark"] .wm-demo-sidebar__head span{
  color:#aebbc6;
}
.wm-demo-nav{
  display:grid;
  gap:4px;
  padding:10px;
}
.wm-demo-nav a{
  display:flex;
  align-items:center;
  min-height:40px;
  padding:.62rem .72rem;
  border-radius:7px;
  color:inherit;
  text-decoration:none;
  font-weight:850;
  opacity:.82;
}
.wm-demo-nav a:hover,
.wm-demo-nav a.is-active{
  opacity:1;
  background:rgba(227,27,35,.11);
}
.wm-site[data-theme="dark"] .wm-demo-nav a:hover,
.wm-site[data-theme="dark"] .wm-demo-nav a.is-active{
  background:rgba(255,240,0,.10);
}
.wm-demo-main{
  min-width:0;
  padding:20px;
}
.wm-demo-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.wm-demo-top h1{
  margin:.45rem 0 .35rem;
  color:#101820;
  font-size:clamp(1.75rem,3vw,2.7rem);
  line-height:1.05;
  font-weight:950;
}
.wm-site[data-theme="dark"] .wm-demo-top h1{
  color:#f4f8fa;
}
.wm-demo-top p{
  max-width:62ch;
  margin:0;
  color:#5c6d7c;
  line-height:1.6;
}
.wm-site[data-theme="dark"] .wm-demo-top p{
  color:#b8c7d1;
}
.wm-demo-search{
  width:min(330px,100%);
  flex:0 0 auto;
}
.wm-demo-stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-bottom:18px;
}
.wm-demo-stats div{
  padding:16px;
  border:1px solid rgba(148,163,184,.20);
  border-radius:8px;
  background:rgba(255,255,255,.64);
}
.wm-site[data-theme="dark"] .wm-demo-stats div{
  background:rgba(8,16,24,.46);
}
.wm-demo-stats strong{
  display:block;
  font-size:1.9rem;
  line-height:1;
  font-weight:950;
}
.wm-demo-stats span{
  display:block;
  margin-top:7px;
  color:#647484;
  font-size:.88rem;
  font-weight:850;
}
.wm-site[data-theme="dark"] .wm-demo-stats span{
  color:#aebbc6;
}
.wm-demo-module-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.wm-demo-module-card{
  min-height:160px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  padding:18px;
  border:1px solid rgba(148,163,184,.22);
  border-radius:8px;
  color:inherit;
  text-decoration:none;
  background:rgba(255,255,255,.58);
}
.wm-site[data-theme="dark"] .wm-demo-module-card{
  background:rgba(8,16,24,.48);
}
.wm-demo-module-card:hover{
  border-color:rgba(227,27,35,.45);
  transform:translateY(-1px);
}
.wm-demo-module-card span{
  width:42px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#171000;
  background:#fff000;
  font-size:.8rem;
  font-weight:950;
}
.wm-demo-module-card strong{
  display:block;
  font-size:1.12rem;
  font-weight:950;
}
.wm-demo-module-card em{
  color:#647484;
  font-style:normal;
  line-height:1.5;
}
.wm-site[data-theme="dark"] .wm-demo-module-card em{
  color:#aebbc6;
}
.wm-table-wrap{
  overflow:auto;
}
.wm-demo-radio-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.wm-demo-channel{
  min-height:210px;
  padding:18px;
  border:1px solid rgba(148,163,184,.22);
  border-radius:8px;
  background:rgba(255,255,255,.62);
}
.wm-site[data-theme="dark"] .wm-demo-channel{
  background:rgba(8,16,24,.48);
}
.wm-demo-channel header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}
.wm-demo-channel header strong{
  font-weight:950;
}
.wm-demo-channel header span,
.wm-demo-ticket footer b{
  border-radius:999px;
  padding:.24rem .5rem;
  color:#171000;
  background:#fff000;
  font-size:.78rem;
  font-weight:950;
  white-space:nowrap;
}
.wm-demo-channel small{
  color:#647484;
  font-weight:850;
}
.wm-site[data-theme="dark"] .wm-demo-channel small{
  color:#aebbc6;
}
.wm-demo-member{
  margin:10px 0 0;
  padding:10px 12px;
  border-radius:8px;
  background:rgba(15,23,42,.08);
  font-weight:850;
}
.wm-site[data-theme="dark"] .wm-demo-member{
  background:rgba(255,255,255,.07);
}
.wm-demo-kanban{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.wm-demo-ticket{
  min-height:210px;
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:18px;
  border:1px solid rgba(148,163,184,.22);
  border-radius:8px;
  background:rgba(255,255,255,.62);
}
.wm-site[data-theme="dark"] .wm-demo-ticket{
  background:rgba(8,16,24,.48);
}
.wm-demo-ticket > span{
  color:#e31b23;
  font-size:.8rem;
  font-weight:950;
}
.wm-demo-ticket strong{
  font-size:1.05rem;
  line-height:1.35;
}
.wm-demo-ticket p{
  margin:0;
  color:#647484;
  line-height:1.5;
}
.wm-site[data-theme="dark"] .wm-demo-ticket p{
  color:#aebbc6;
}
.wm-demo-ticket footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
}
.wm-demo-ticket footer em{
  color:#e31b23;
  font-style:normal;
  font-weight:950;
}
code{
  border-radius:8px;
  padding:.16rem .3rem;
  background:rgba(15,23,42,.08);
}
.wm-site[data-theme="dark"] code{
  background:rgba(255,255,255,.08);
}

@media(max-width:1020px){
  .wm-hero__content,
  .wm-workflow{
    grid-template-columns:1fr;
  }
  .wm-hero__content{
    gap:34px;
  }
  .wm-title{
    max-width:14ch;
  }
  .wm-hero-preview{
    max-width:680px;
  }
  .wm-demo-shell{
    grid-template-columns:1fr;
  }
  .wm-demo-sidebar{
    position:static;
  }
  .wm-demo-nav{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .wm-feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .wm-section-heading--split{
    align-items:flex-start;
    flex-direction:column;
  }
}
@media(max-width:720px){
  .wm-wrap{
    width:min(100% - 24px, 1200px);
  }
  .wm-topbar__inner{
    min-height:34px;
    justify-content:center;
    text-align:center;
  }
  .wm-topbar__inner span:last-child{
    display:none;
  }
  .wm-nav__inner{
    min-height:auto;
    align-items:flex-start;
    flex-direction:column;
    padding:12px 0;
  }
  .wm-nav__links{
    width:100%;
    justify-content:flex-start;
  }
  .wm-link{
    display:none;
  }
  .wm-btn,
  .wm-select,
  .wm-lang__trigger{
    min-height:40px;
    padding:.64rem .82rem;
    font-size:.9rem;
  }
  .wm-lang__trigger{
    min-width:54px;
  }
  .wm-hero,
  .wm-hero__content{
    min-height:auto;
  }
  .wm-hero::after{
    background:
      linear-gradient(180deg, rgba(6,14,22,.96) 0%, rgba(6,14,22,.88) 58%, rgba(6,14,22,.94) 100%);
  }
  .wm-hero__content{
    padding:48px 0;
  }
  .wm-title{
    max-width:12ch;
    font-size:clamp(2.25rem,11vw,3.2rem);
  }
  .wm-sub{
    font-size:1rem;
  }
  .wm-dashboard-mock{
    grid-template-columns:1fr;
  }
  .wm-mock-sidebar{
    display:none;
  }
  .wm-mock-stats,
  .wm-feature-grid,
  .wm-demo-module-grid,
  .wm-demo-radio-grid,
  .wm-demo-kanban,
  .wm-grid,
  .wm-stat-grid{
    grid-template-columns:1fr;
  }
  .wm-demo-main{
    padding:14px;
  }
  .wm-demo-top{
    flex-direction:column;
  }
  .wm-demo-stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .wm-demo-nav{
    grid-template-columns:1fr;
  }
  .wm-steps div{
    grid-template-columns:42px minmax(0,1fr);
    padding:16px;
  }
  .wm-steps p{
    grid-column:1 / -1;
  }
  .wm-final__inner{
    align-items:flex-start;
    flex-direction:column;
  }
}
